/**
 * قالب اختصاصی فروشگاهی بیزتو ماهور — استایل اصلی (سبک و لوکال)
 */

:root {
	--bizto-bg: #f7f4ef;
	--bizto-bg-elevated: #ffffff;
	--bizto-ink: #1a1a1a;
	--bizto-ink-muted: #5c5c5c;
	--bizto-accent: #0f6b5c;
	--bizto-accent-hover: #0b5448;
	--bizto-border: #e4ddd3;
	--bizto-header-bg: #ffffff;
	--bizto-header-border: #f0f0f0;
	--bizto-header-height: 88px;
	--bizto-header-gap: 16px;
	--bizto-header-container: 1280px;
	--bizto-logo-width: 72px;
	--bizto-search-bg: #ffffff;
	--bizto-search-border: #e5e7eb;
	--bizto-search-text: #9ca3af;
	--bizto-search-icon: #6b7280;
	--bizto-search-radius: 12px;
	--bizto-account-bg: #f3f4f6;
	--bizto-account-text: #374151;
	--bizto-account-icon: #374151;
	--bizto-cart-bg: #1e3a5f;
	--bizto-cart-text: #ffffff;
	--bizto-cart-icon: #ffffff;
	--bizto-cart-badge-bg: #1e3a5f;
	--bizto-cart-badge-text: #ffffff;
	--bizto-btn-radius: 12px;
	--bizto-nav-bg: #ffffff;
	--bizto-nav-border: #eef0f3;
	--bizto-nav-text: #374151;
	--bizto-nav-hover: #1e3a5f;
	--bizto-nav-active: #1e3a5f;
	--bizto-nav-font-size: 15px;
	--bizto-nav-gap: 28px;
	--bizto-nav-height: 48px;
	--bizto-radius: 6px;
	--bizto-container: 1180px;
	--bizto-font: "Vazirmatn", Tahoma, sans-serif;
	--bizto-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
	--bizto-transition: 0.2s ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--bizto-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--bizto-ink);
	background: var(--bizto-bg);
	direction: rtl;
	text-align: right;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--bizto-accent);
	text-decoration: none;
	transition: color var(--bizto-transition);
}

a:hover {
	color: var(--bizto-accent-hover);
}

.container {
	width: min(100% - 2rem, var(--bizto-container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--bizto-ink);
	color: #fff;
}

/* ========== Header ========== */
.site-header {
	background: var(--bizto-header-bg);
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.bizto-header {
	background: var(--bizto-header-bg);
	border-bottom: 1px solid var(--bizto-header-border);
}

.bizto-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.bizto-header__inner {
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: var(--bizto-header-gap);
	min-height: var(--bizto-header-height);
	padding-block: 0.75rem;
}

.bizto-header__logo {
	flex: 0 0 auto;
}

.bizto-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--bizto-logo-width);
	height: var(--bizto-logo-width);
	border-radius: 50%;
	overflow: hidden;
	line-height: 0;
	background: #f8d7e4;
	flex-shrink: 0;
}

.bizto-logo__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bizto-header__search {
	flex: 1 1 auto;
	min-width: 0;
}

.bizto-search-form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.bizto-search-form__input {
	width: 100%;
	height: 48px;
	padding: 0 1.1rem 0 3rem;
	border: 1px solid var(--bizto-search-border);
	border-radius: var(--bizto-search-radius);
	background: var(--bizto-search-bg);
	color: var(--bizto-ink);
	font-family: inherit;
	font-size: 0.95rem;
	outline: none;
	transition: border-color var(--bizto-transition), box-shadow var(--bizto-transition);
}

.bizto-search-form__input::placeholder {
	color: var(--bizto-search-text);
}

.bizto-search-form__input:focus {
	border-color: #c5cbd3;
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.bizto-search-form__submit {
	position: absolute;
	left: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: calc(var(--bizto-search-radius) - 2px);
	background: transparent;
	color: var(--bizto-search-icon);
	cursor: pointer;
}

.bizto-search-form__submit:hover {
	color: var(--bizto-ink);
}

/* Live product search suggestions */
.bizto-live-search {
	position: absolute;
	top: calc(100% + 6px);
	inset-inline: 0;
	z-index: 1200;
	background: #fff;
	border: 1px solid #e8e2d8;
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
	overflow: hidden;
	max-height: min(70vh, 420px);
	display: flex;
	flex-direction: column;
}

.bizto-live-search[hidden] {
	display: none !important;
}

.bizto-live-search__list {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.bizto-live-search__item {
	margin: 0;
}

.bizto-live-search__link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 0.85rem;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

.bizto-live-search__link:hover,
.bizto-live-search__link:focus-visible,
.bizto-live-search__item.is-active .bizto-live-search__link {
	background: #f7f4ef;
	outline: none;
}

.bizto-live-search__thumb {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	overflow: hidden;
	background: #f3f4f6;
}

.bizto-live-search__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bizto-live-search__meta {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.bizto-live-search__title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1e3a5f;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bizto-live-search__price {
	font-size: 0.8rem;
	font-weight: 600;
	color: #0f6b5c;
	line-height: 1.3;
}

.bizto-live-search__price del {
	color: #9ca3af;
	font-weight: 500;
	margin-inline-start: 0.35rem;
}

.bizto-live-search__foot {
	border-top: 1px solid #f0ebe3;
	padding: 0.45rem 0.65rem 0.55rem;
}

.bizto-live-search__foot[hidden],
.bizto-live-search__empty[hidden] {
	display: none !important;
}

.bizto-live-search__all {
	display: block;
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 0;
	border-radius: 10px;
	background: #f3f4f6;
	color: #1e3a5f;
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
}

.bizto-live-search__all:hover {
	background: #e8e2d8;
}

.bizto-live-search__empty {
	margin: 0;
	padding: 1rem 1.1rem;
	font-size: 0.88rem;
	color: #6b7280;
	text-align: center;
}

.bizto-live-search__loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 1.1rem 1rem;
	color: #1e3a5f;
	font-size: 0.9rem;
	font-weight: 600;
}

.bizto-live-search__loading[hidden] {
	display: none !important;
}

.bizto-live-search__spinner {
	width: 18px;
	height: 18px;
	border: 2px solid #e8e2d8;
	border-top-color: #0f6b5c;
	border-radius: 50%;
	animation: biztoLiveSpin 0.7s linear infinite;
	flex-shrink: 0;
}

@keyframes biztoLiveSpin {
	to {
		transform: rotate(360deg);
	}
}

.bizto-live-search__status {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bizto-search-form.is-live-open .bizto-search-form__input {
	border-color: #c5cbd3;
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.bizto-search-form.is-live-loading .bizto-search-form__submit {
	opacity: 0.55;
}

.bizto-header__actions {
	display: flex;
	align-items: center;
	gap: var(--bizto-header-gap);
	flex: 0 0 auto;
}

.bizto-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 48px;
	padding: 0 1.15rem;
	border: none;
	border-radius: var(--bizto-btn-radius);
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--bizto-transition), color var(--bizto-transition), opacity var(--bizto-transition);
}

.bizto-btn__icon {
	display: inline-flex;
	line-height: 0;
}

.bizto-btn--account {
	background: var(--bizto-account-bg);
	color: var(--bizto-account-text);
}

.bizto-btn--account .bizto-icon {
	color: var(--bizto-account-icon);
}

.bizto-btn--account:hover {
	opacity: 0.9;
	color: var(--bizto-account-text);
}

.bizto-btn--cart {
	background: var(--bizto-cart-bg);
	color: var(--bizto-cart-text);
	overflow: visible;
}

.bizto-btn--cart .bizto-icon {
	color: var(--bizto-cart-icon);
}

.bizto-btn--cart:hover {
	opacity: 0.92;
	color: var(--bizto-cart-text);
}

.bizto-cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--bizto-cart-badge-bg);
	color: var(--bizto-cart-badge-text);
	border: 2px solid #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	pointer-events: none;
}

.bizto-icon {
	display: block;
}

/* ========== Desktop nav (below header) ========== */
.bizto-nav {
	display: none;
	background: var(--bizto-nav-bg, #fff);
	border-bottom: 1px solid var(--bizto-nav-border, #eef0f3);
}

.bizto-nav__inner {
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
}

.bizto-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 var(--bizto-nav-gap, 28px);
	list-style: none;
	margin: 0;
	padding: 0;
	min-height: var(--bizto-nav-height, 48px);
}

.bizto-nav__list > li {
	position: relative;
}

.bizto-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	min-height: var(--bizto-nav-height, 48px);
	padding: 0.25rem 0;
	color: var(--bizto-nav-text, #374151);
	font-size: var(--bizto-nav-font-size, 15px);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--bizto-transition);
}

.bizto-nav__list > li > a:hover,
.bizto-nav__list > li:hover > a {
	color: var(--bizto-nav-hover, #1e3a5f);
}

.bizto-nav__list > li.current-menu-item > a,
.bizto-nav__list > li.current-menu-ancestor > a,
.bizto-nav__list > li.current_page_item > a {
	color: var(--bizto-nav-active, #1e3a5f);
}

.bizto-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 50;
	min-width: 200px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--bizto-nav-border, #eef0f3);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.bizto-nav__list > li:hover > .sub-menu,
.bizto-nav__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.bizto-nav__list .sub-menu a {
	display: block;
	padding: 0.65rem 1rem;
	color: var(--bizto-nav-text, #374151);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.bizto-nav__list .sub-menu a:hover {
	background: #f8fafc;
	color: var(--bizto-nav-hover, #1e3a5f);
}

@media (min-width: 901px) {
	.bizto-nav {
		display: block;
	}
}

/* ========== Mini-cart drawer ========== */
.bizto-minicart {
	position: fixed;
	inset: 0;
	z-index: 100000;
	visibility: hidden;
	pointer-events: none;
}

.bizto-minicart.is-open {
	visibility: visible;
	pointer-events: auto;
}

.bizto-minicart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.42);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.bizto-minicart.is-open .bizto-minicart__overlay {
	opacity: 1;
}

.bizto-minicart__wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(400px, 100vw);
	display: flex;
	flex-direction: column;
	transform: translateX(105%);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.bizto-minicart.is-open .bizto-minicart__wrap {
	transform: translateX(0);
}

.bizto-minicart__panel {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	background: #fff;
	box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
}

.bizto-minicart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	border-bottom: 1px solid #f0f0f0;
	flex-shrink: 0;
}

.bizto-minicart__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #f3f4f6;
	color: #9ca3af;
	cursor: pointer;
	flex-shrink: 0;
}

.bizto-minicart__close:hover {
	background: #e5e7eb;
	color: #374151;
}

.bizto-minicart__title {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: #111827;
	font-size: 1.05rem;
	font-weight: 700;
}

.bizto-minicart__title-icon {
	display: inline-flex;
	color: #111827;
}

.bizto-minicart__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 1.25rem;
	-webkit-overflow-scrolling: touch;
}

.bizto-minicart__empty {
	min-height: 220px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1.25rem;
	padding: 2rem 0.5rem;
}

.bizto-minicart__empty-text {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.6;
}

.bizto-minicart__shop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.75rem;
	border-radius: 12px;
	background: #1e3a5f;
	color: #fff !important;
	font-weight: 700;
	font-size: 0.95rem;
}

.bizto-minicart__shop-btn:hover {
	opacity: 0.92;
	color: #fff !important;
}

.bizto-minicart__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bizto-minicart__item {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 0.75rem;
	align-items: start;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f3f4f6;
}

.bizto-minicart__thumb img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 10px;
	background: #f3f4f6;
}

.bizto-minicart__name {
	display: block;
	margin-bottom: 0.4rem;
	color: #111827;
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1.45;
}

.bizto-minicart__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem 0.75rem;
	font-size: 0.85rem;
	color: #6b7280;
}

.bizto-minicart__price {
	color: #1e3a5f;
	font-weight: 700;
}

/* تومان سمت چپ مبلغ (LTR اجباری) */
.bizto-price {
	display: inline-flex;
	flex-direction: row;
	align-items: baseline;
	gap: 0.35rem;
	direction: ltr;
	unicode-bidi: isolate;
}

.bizto-price__currency {
	font-size: 0.92em;
	font-weight: 600;
	color: inherit;
	flex-shrink: 0;
}

.bizto-price__amount {
	font-weight: 700;
}

.bizto-minicart__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #f3f4f6;
	color: #9ca3af;
	cursor: pointer;
}

.bizto-minicart__remove:hover {
	background: #fee2e2;
	color: #b91c1c;
}

.bizto-minicart__remove:disabled {
	opacity: 0.5;
	cursor: wait;
}

/* لودینگ تمام‌صفحه داخل پنل سبد */
.bizto-minicart__busy {
	position: absolute;
	inset: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.bizto-minicart__busy[hidden] {
	display: none !important;
}

.bizto-minicart__busy-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	min-width: 160px;
	padding: 1.35rem 1.5rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
	border: 1px solid rgba(226, 232, 240, 0.9);
}

.bizto-minicart__busy-spinner {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 3px solid #e5e7eb;
	border-top-color: #1e3a5f;
	border-right-color: #3b82f6;
	animation: bizto-spin 0.85s linear infinite;
}

.bizto-minicart__busy-text {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1f2937;
}

.bizto-minicart.is-busy .bizto-minicart__panel {
	pointer-events: none;
	user-select: none;
}

@keyframes bizto-spin {
	to {
		transform: rotate(360deg);
	}
}

.bizto-minicart__foot {
	flex-shrink: 0;
	padding: 1rem 1.25rem 1.35rem;
	border-top: 1px solid #f0f0f0;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bizto-minicart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: #f3f4f6;
	font-weight: 700;
	color: #111827;
}

.bizto-minicart__checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	background: #f3f4f6;
	color: #1f2937 !important;
	font-weight: 700;
	font-size: 0.98rem;
}

.bizto-minicart__checkout:hover {
	background: #e5e7eb;
	color: #111827 !important;
}

.bizto-minicart__checkout.is-disabled {
	pointer-events: none;
	opacity: 0.7;
}

/* قفل اسکرول بدون پرش صفحه */
html.bizto-minicart-open {
	overflow: hidden;
	padding-inline-end: var(--bizto-sbw, 0px);
	overscroll-behavior: none;
}

html.bizto-minicart-open body {
	overflow: hidden;
	overscroll-behavior: none;
}

.bizto-minicart,
.bizto-minicart__body {
	touch-action: pan-y;
}

/* Buttons (general) */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	border-radius: var(--bizto-radius);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background var(--bizto-transition), color var(--bizto-transition), border-color var(--bizto-transition);
}

.btn--primary {
	background: var(--bizto-accent);
	color: #fff;
}

.btn--primary:hover {
	background: var(--bizto-accent-hover);
	color: #fff;
}

.btn--outline {
	background: transparent;
	border-color: var(--bizto-accent);
	color: var(--bizto-accent);
}

.btn--outline:hover {
	background: var(--bizto-accent);
	color: #fff;
}

/* ========== Homepage slider ========== */
.bizto-slider {
	position: relative;
	width: 100%;
	background: #f5f5f7;
	overflow: hidden;
}

.bizto-slider__viewport {
	position: relative;
	width: 100%;
	height: var(--bizto-slider-height, 420px);
}

.bizto-slider__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.bizto-slider__slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	overflow: hidden;
	background: #eef0f3;
	text-decoration: none;
	color: inherit;
}

.bizto-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.bizto-slider__slide.is-link {
	cursor: pointer;
}

.bizto-slider.is-dragging,
.bizto-slider.is-dragging .bizto-slider__slide {
	cursor: grabbing;
	user-select: none;
}

.bizto-slider__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	user-drag: none;
}

.bizto-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 1.1rem;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
}

.bizto-slider__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.bizto-slider__dot.is-active {
	width: 22px;
	background: #1f2937;
}

.bizto-slider__dot:focus-visible {
	outline: 2px solid #1e3a5f;
	outline-offset: 2px;
}

@media (max-width: 900px) {
	.bizto-slider__viewport {
		height: var(--bizto-slider-height-mobile, 320px);
	}

	.bizto-slider__dots {
		bottom: 0.85rem;
	}
}

/* ========== Homepage category cards ========== */
.bizto-cats {
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.bizto-cats__inner {
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
}

.bizto-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1.15rem);
}

.bizto-cats__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bizto-cats__card.is-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.bizto-cats__card.is-link:focus-visible {
	outline: 2px solid #1e3a5f;
	outline-offset: 2px;
}

.bizto-cats__media {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f4f6;
}

.bizto-cats__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
}

.bizto-cats__label {
	display: block;
	padding: 0.7rem 0.5rem;
	background: #fff;
	color: #1e3a5f;
	font-size: 0.92rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}

@media (max-width: 900px) {
	.bizto-cats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.bizto-cats__inner {
		width: min(100% - 1.25rem, var(--bizto-header-container));
	}
}

@media (max-width: 480px) {
	.bizto-cats__label {
		font-size: 0.82rem;
		padding: 0.55rem 0.35rem;
	}
}

/* ========== Homepage product rows ========== */
.bizto-prow {
	padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
}

.bizto-prow__inner {
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
}

.bizto-prow__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.35rem;
}

.bizto-prow__title {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
}

.bizto-prow__title-spacer {
	display: block;
	min-height: 1.2em;
}

.bizto-prow__viewall {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	flex-shrink: 0;
	color: #334155;
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.bizto-prow__viewall:hover {
	color: #1e3a5f;
}

.bizto-prow__viewall:hover .bizto-prow__viewall-icon {
	transform: translateX(-3px);
	background: #e8eef5;
}

.bizto-prow__viewall-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #f1f5f9;
	color: #334155;
	transition: transform 0.25s ease, background 0.2s ease;
}

.bizto-prow__carousel {
	position: relative;
}

/* سایه لبه — نشانه ادامه ردیف محصولات */
.bizto-prow__carousel::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0.35rem;
	inset-inline-end: 0;
	width: 2.25rem;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		to right,
		var(--bizto-bg, #f7f4ef) 0%,
		rgba(247, 244, 239, 0) 100%
	);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.bizto-prow__carousel.is-scrollable::after {
	opacity: 1;
}

.bizto-prow__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 0.35rem;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	/* Allow native horizontal swipe + vertical page scroll; JS drag is mouse-only. */
	touch-action: pan-x pan-y;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

.bizto-prow__viewport::-webkit-scrollbar {
	display: none;
}

.bizto-prow__viewport.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

.bizto-prow__viewport.is-dragging .bizto-pcard__link {
	pointer-events: none;
}

.bizto-prow.is-dragging {
	cursor: grabbing;
}

.bizto-prow__track {
	display: flex;
	gap: clamp(0.85rem, 1.6vw, 1.35rem);
}

.bizto-prow__nav {
	position: absolute;
	top: 36%;
	z-index: 3;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #334155;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
	cursor: pointer;
	transition: opacity 0.15s ease, box-shadow 0.15s ease, transform 0.2s ease;
}

.bizto-prow__nav:hover:not(:disabled) {
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
	transform: translateY(-50%) scale(1.06);
}

.bizto-prow__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.bizto-prow__carousel:not(.is-scrollable) .bizto-prow__nav {
	display: none;
}

.bizto-prow__nav--prev {
	right: -0.35rem;
}

.bizto-prow__nav--next {
	left: -0.35rem;
}

/* فلش سمت راست → ، فلش سمت چپ ← */
.bizto-prow__nav--prev .bizto-icon {
	transform: scaleX(-1);
}

.bizto-prow__nav--next .bizto-icon {
	transform: none;
}

/* ---- Product card ---- */
.bizto-pcard {
	--pcard-gap: clamp(0.85rem, 1.6vw, 1.35rem);
	--pcard-radius: clamp(1rem, 2vw, 1.35rem);
	flex: 0 0 calc((100% - 3 * var(--pcard-gap)) / 4);
	min-width: 0;
	scroll-snap-align: start;
}

.bizto-pcard__link {
	display: block;
	color: inherit;
	text-decoration: none;
	outline: none;
}

.bizto-pcard__frame {
	position: relative;
}

.bizto-pcard__shot {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	border-radius: var(--pcard-radius);
	background: #ebe6de;
	transform: translateZ(0);
}

.bizto-pcard__img,
.bizto-pcard__shot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.bizto-pcard__img--primary {
	position: relative;
	z-index: 1;
}

.bizto-pcard__img--secondary {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0;
	transform: scale(1.04);
	pointer-events: none;
}

.bizto-pcard__img--placeholder,
.bizto-pcard__img--placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bizto-pcard__shine {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(
		125deg,
		transparent 35%,
		rgba(255, 255, 255, 0.2) 48%,
		transparent 62%
	);
	transform: translateX(120%);
	opacity: 0;
}

/* عنوان روی تصویر — هاله سفید یکدست؛ متن بلند کوچک می‌شود */
.bizto-pcard__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 5.15rem;
	padding: 1.35rem 0.85rem 1.15rem;
	box-sizing: border-box;
	pointer-events: none;
	background:
		linear-gradient(
			to top,
			rgba(255, 255, 255, 0.94) 0%,
			rgba(255, 255, 255, 0.55) 48%,
			rgba(255, 255, 255, 0.12) 78%,
			rgba(255, 255, 255, 0) 100%
		),
		linear-gradient(
			to right,
			rgba(255, 255, 255, 0.04) 0%,
			rgba(255, 255, 255, 0.32) 46%,
			rgba(255, 255, 255, 0.82) 100%
		);
}

.bizto-pcard__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	width: 100%;
	max-width: 94%;
	max-height: 2.9em;
	color: #152a45;
	font-size: clamp(0.98rem, 1.7vw, 1.18rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.4;
	text-align: center;
	background: transparent;
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85),
		0 8px 22px rgba(255, 255, 255, 0.55);
	transition: color 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bizto-pcard__price-row {
	margin-top: 0.65rem;
	min-height: 1.55rem;
	padding-inline: 0.85rem;
	transition: transform 0.3s ease;
}

.bizto-pcard__prices {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
	width: 100%;
}

.bizto-pcard__prices--single {
	justify-content: center;
}

.bizto-pcard__prices--sale {
	justify-content: space-between;
	padding-inline: 0.15rem;
}

.bizto-pcard__prices del,
.bizto-pcard__prices ins {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	text-decoration: none;
}

.bizto-pcard__price {
	display: inline-block;
	font-size: clamp(0.78rem, 1.25vw, 0.9rem);
	font-weight: 700;
	color: #0f172a;
	text-decoration: none;
	white-space: nowrap;
}

.bizto-pcard__price--regular {
	font-size: clamp(0.7rem, 1.1vw, 0.8rem);
	font-weight: 500;
	color: #94a3b8;
}

.bizto-pcard__price--regular .bizto-price,
.bizto-pcard__price--regular .bizto-price__amount,
.bizto-pcard__price--regular .bizto-price__currency {
	color: inherit;
	font-weight: inherit;
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
	text-decoration-color: #94a3b8;
	text-decoration-skip-ink: none;
}

.bizto-pcard__price--sale {
	color: #e11d48;
	text-decoration: none;
}

.bizto-pcard__price--sale .bizto-price,
.bizto-pcard__price--sale .bizto-price__amount,
.bizto-pcard__price--sale .bizto-price__currency {
	color: #e11d48;
	text-decoration: none;
}

/* Hover */
.bizto-pcard__link:hover .bizto-pcard__shot,
.bizto-pcard__link:focus-visible .bizto-pcard__shot {
	box-shadow: 0 16px 36px rgba(30, 58, 95, 0.12);
}

.bizto-pcard__link:hover .bizto-pcard__img--primary,
.bizto-pcard__link:focus-visible .bizto-pcard__img--primary {
	transform: scale(1.045);
}

.bizto-pcard.has-second .bizto-pcard__link:hover .bizto-pcard__img--primary,
.bizto-pcard.has-second .bizto-pcard__link:focus-visible .bizto-pcard__img--primary {
	opacity: 0;
	transform: scale(1.02);
}

.bizto-pcard.has-second .bizto-pcard__link:hover .bizto-pcard__img--secondary,
.bizto-pcard.has-second .bizto-pcard__link:focus-visible .bizto-pcard__img--secondary {
	opacity: 1;
	transform: scale(1);
}

.bizto-pcard__link:hover .bizto-pcard__shine,
.bizto-pcard__link:focus-visible .bizto-pcard__shine {
	opacity: 1;
	animation: bizto-pcard-shine 0.85s ease;
}

.bizto-pcard__link:hover .bizto-pcard__name,
.bizto-pcard__link:focus-visible .bizto-pcard__name {
	color: #0b1f38;
	transform: translateY(-2px);
}

.bizto-pcard__link:hover .bizto-pcard__price-row,
.bizto-pcard__link:focus-visible .bizto-pcard__price-row {
	transform: translateY(-1px);
}

.bizto-pcard__link:focus-visible .bizto-pcard__shot {
	outline: 2px solid #1e3a5f;
	outline-offset: 3px;
}

@keyframes bizto-pcard-shine {
	0% {
		transform: translateX(120%);
	}
	100% {
		transform: translateX(-120%);
	}
}

@media (max-width: 1100px) {
	.bizto-pcard {
		flex-basis: calc((100% - 2 * var(--pcard-gap)) / 3);
	}
}

@media (max-width: 900px) {
	.bizto-prow__inner {
		width: min(100% - 1.25rem, var(--bizto-header-container));
	}

	.bizto-pcard {
		flex-basis: calc((100% - 1 * var(--pcard-gap)) / 2);
	}

	.bizto-pcard__caption {
		height: 4.85rem;
		padding: 1.2rem 0.7rem 1.05rem;
	}

	.bizto-pcard__name {
		font-size: clamp(0.92rem, 3.6vw, 1.05rem);
	}

	.bizto-pcard__price-row {
		padding-inline: 0.55rem;
	}

	.bizto-prow__nav--prev {
		right: 0.15rem;
	}

	.bizto-prow__nav--next {
		left: 0.15rem;
	}

	.bizto-prow__viewall-text {
		font-size: 0.82rem;
	}
}

@media (hover: none) {
	.bizto-pcard__shine {
		display: none;
	}
}

/* ---- Discount badge on product card ---- */
.bizto-pcard__badge {
	position: absolute;
	z-index: 5;
	top: 0.6rem;
	inset-inline-start: 0.6rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.1rem;
	height: 2.1rem;
	padding: 0 0.4rem;
	border-radius: 999px;
	background: #e11d48;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
	direction: ltr;
}

/* ========== Deals row (panel + carousel) ========== */
.bizto-deals__layout {
	display: flex;
	align-items: stretch;
	gap: clamp(1rem, 2vw, 1.6rem);
}

.bizto-deals__panel {
	position: relative;
	overflow: hidden;
	flex: 0 0 clamp(13rem, 20%, 16.5rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	padding: clamp(1.15rem, 1.8vw, 1.5rem) 1.05rem;
	border-radius: clamp(1rem, 2vw, 1.4rem);
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, 0.18), transparent 60%),
		linear-gradient(160deg, var(--deals-bg, #e11d48), color-mix(in srgb, var(--deals-bg, #e11d48) 78%, #000));
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	align-self: flex-start;
}

.bizto-deals__panel-glow {
	position: absolute;
	inset: auto -30% -40% -30%;
	height: 70%;
	background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.22), transparent 70%);
	pointer-events: none;
}

.bizto-deals__title {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	margin: 0;
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	font-weight: 800;
	line-height: 1.4;
	color: #fff;
}

.bizto-deals__art {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	width: 100%;
	max-width: 8rem;
	min-height: 0;
	margin: 0 auto;
}

.bizto-deals__art-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.bizto-deals__art-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	font-size: 2.2rem;
	font-weight: 800;
	color: #fff;
}

.bizto-deals__timer {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex: 0 0 auto;
	gap: 0.3rem;
	direction: ltr;
	margin-top: 0;
}

.bizto-deals__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	min-width: 2.7rem;
}

.bizto-deals__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.4rem 0.15rem;
	border-radius: 0.6rem;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(2px);
	font-size: 1.15rem;
	font-weight: 800;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.bizto-deals__unit small {
	font-size: 0.68rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.bizto-deals__sep {
	align-self: flex-start;
	margin-top: 0.4rem;
	font-size: 1.1rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.8);
}

.bizto-deals__timer.is-ended {
	opacity: 0.6;
}

.bizto-deals__viewall {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	gap: 0.5rem;
	margin-top: 0;
	padding: 0.6rem 1.3rem;
	border-radius: 999px;
	background: #fff;
	color: var(--deals-bg, #e11d48);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bizto-deals__viewall:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.bizto-deals__viewall-icon {
	display: inline-flex;
	align-items: center;
}

.bizto-deals__carousel {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

@media (max-width: 900px) {
	.bizto-prow__carousel::after {
		width: 1.75rem;
	}

	.bizto-deals__layout {
		flex-direction: row;
		align-items: stretch;
		gap: 0.65rem;
	}

	.bizto-deals__panel {
		flex: 0 0 clamp(6.75rem, 28vw, 8.75rem);
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 0.55rem;
		padding: 0.85rem 0.55rem;
		border-radius: 1rem;
		align-self: flex-start;
	}

	.bizto-deals__title {
		flex: 0 0 auto;
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.bizto-deals__art {
		max-width: 3.6rem;
		margin: 0 auto;
	}

	.bizto-deals__art-fallback {
		width: 3.2rem;
		height: 3.2rem;
		font-size: 1.35rem;
	}

	.bizto-deals__timer {
		margin-top: 0;
		gap: 0.15rem;
		flex-wrap: wrap;
		max-width: 100%;
	}

	.bizto-deals__unit {
		min-width: 1.7rem;
		gap: 0.12rem;
	}

	.bizto-deals__num {
		padding: 0.28rem 0.1rem;
		font-size: 0.78rem;
		border-radius: 0.4rem;
	}

	.bizto-deals__unit small {
		font-size: 0.55rem;
	}

	.bizto-deals__sep {
		margin-top: 0.22rem;
		font-size: 0.75rem;
	}

	.bizto-deals__viewall {
		flex: 0 0 auto;
		width: 100%;
		margin-top: 0;
		padding: 0.4rem 0.35rem;
		font-size: 0.68rem;
		gap: 0.25rem;
	}

	.bizto-deals__viewall-icon {
		display: none;
	}

	.bizto-deals .bizto-prow__nav {
		display: none;
	}

	.bizto-deals .bizto-pcard {
		flex: 0 0 calc((100% - 1 * var(--pcard-gap, 0.75rem)) / 1.35);
	}
}

@media (max-width: 480px) {
	.bizto-deals__panel {
		flex-basis: 6.35rem;
		padding: 0.7rem 0.4rem;
		gap: 0.4rem;
	}

	.bizto-deals__title {
		font-size: 0.74rem;
	}

	.bizto-deals__art {
		max-width: 2.9rem;
	}

	.bizto-deals .bizto-pcard {
		flex-basis: 68%;
	}
}

/* Home sections */
.home-products,
.home-page-content {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-header {
	margin-bottom: 2rem;
	text-align: center;
}

.section-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.section-desc {
	margin: 0;
	color: var(--bizto-ink-muted);
}

.section-cta {
	margin-top: 2rem;
	text-align: center;
}

.entry-header {
	margin-bottom: 1.5rem;
}

.entry-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.3;
}

.entry-content {
	max-width: 72ch;
}

.site-main--elementor .entry-content,
.elementor-page-content {
	max-width: none;
}

.content-card {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--bizto-border);
}

.error-404,
.no-results {
	padding: 4rem 0;
	text-align: center;
}

/* ========== Blog archive ========== */
.bizto-blog {
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bizto-blog__hero {
	position: relative;
	margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
	padding: clamp(2.5rem, 5vw, 3.75rem) 0;
	overflow: hidden;
	background:
		radial-gradient(90% 120% at 100% 0%, rgba(15, 107, 92, 0.12) 0%, transparent 55%),
		radial-gradient(70% 100% at 0% 100%, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
		linear-gradient(165deg, #f3eee6 0%, #f7f4ef 48%, #efe8dc 100%);
	border-bottom: 1px solid var(--bizto-border);
}

.bizto-blog__hero-inner {
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
	text-align: center;
}

.bizto-blog__eyebrow {
	display: inline-block;
	margin: 0 0 0.75rem;
	padding: 0.35rem 0.8rem;
	border-radius: 8px;
	background: rgba(15, 107, 92, 0.1);
	color: #0f6b5c;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.bizto-blog__title {
	margin: 0 0 0.65rem;
	color: #152a45;
	font-size: clamp(1.75rem, 4vw, 2.55rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.25;
}

.bizto-blog__intro {
	margin: 0 auto;
	max-width: 42ch;
	color: var(--bizto-ink-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.bizto-blog__body {
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
}

.bizto-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: stretch;
}

.bizto-blog__grid .bizto-bcard {
	flex: none;
	width: 100%;
	min-width: 0;
	scroll-snap-align: unset;
}

.bizto-blog__grid .bizto-bcard__shot {
	box-shadow: 0 12px 30px rgba(30, 58, 95, 0.08);
}

/* Pagination */
.bizto-pagination {
	margin-top: clamp(2rem, 4vw, 3rem);
}

.bizto-pagination .nav-links,
.bizto-pagination .pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
}

.bizto-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--bizto-border);
	color: #334155;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bizto-pagination .page-numbers:hover {
	border-color: rgba(15, 107, 92, 0.35);
	color: #0f6b5c;
	transform: translateY(-1px);
}

.bizto-pagination .page-numbers.current {
	background: linear-gradient(145deg, #1e3a5f, #152a45);
	border-color: transparent;
	color: #fff;
}

.bizto-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	min-width: 1.5rem;
}

.bizto-pagination .prev,
.bizto-pagination .next {
	padding-inline: 1rem;
}

/* ========== Single post ========== */
.bizto-single {
	padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.bizto-single__shell {
	width: min(100% - 1.5rem, 980px);
	margin-inline: auto;
}

.bizto-breadcrumb {
	margin-bottom: 1rem;
}

.bizto-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.82rem;
	line-height: 1.5;
}

.bizto-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #8a8490;
}

.bizto-breadcrumb__link {
	color: #5c6570;
	text-decoration: none;
}

.bizto-breadcrumb__link:hover {
	color: #0f6b5c;
}

.bizto-breadcrumb__current {
	color: #334155;
	font-weight: 600;
}

.bizto-breadcrumb__sep {
	color: #c4bdb2;
	font-weight: 400;
}

.bizto-single__card {
	background: #fff;
	border: 1px solid rgba(228, 221, 211, 0.95);
	border-radius: clamp(1rem, 2vw, 1.35rem);
	box-shadow: 0 14px 40px rgba(30, 58, 95, 0.06);
	overflow: hidden;
}

.bizto-single__top {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
	padding: clamp(1.25rem, 3vw, 1.85rem);
	border-bottom: 1px solid #f0ebe3;
	background:
		linear-gradient(145deg, #ffffff 0%, #fbfaf7 100%);
}

.bizto-single__top--solo {
	grid-template-columns: 1fr;
}

.bizto-single__title-col {
	min-width: 0;
}

.bizto-single__title {
	margin: 0 0 0.75rem;
	color: #152a45;
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.4;
}

.bizto-single__meta {
	margin: 0;
	color: #8a92a0;
	font-size: 0.9rem;
	font-weight: 500;
}

.bizto-single__media {
	margin: 0;
	overflow: hidden;
	border-radius: 1rem;
	background: #ebe6de;
	aspect-ratio: 4 / 3;
}

.bizto-single__img,
.bizto-single__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bizto-single__content {
	max-width: none;
	padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.1rem);
	color: #2a3340;
	font-size: clamp(0.98rem, 1.35vw, 1.06rem);
	line-height: 1.95;
}

.bizto-single__content > *:first-child {
	margin-top: 0;
}

.bizto-single__content h2,
.bizto-single__content h3,
.bizto-single__content h4 {
	margin: 1.6em 0 0.55em;
	color: #152a45;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.bizto-single__content p {
	margin: 0 0 1.1em;
}

.bizto-single__content a {
	color: #0f6b5c;
	text-underline-offset: 3px;
}

.bizto-single__content img,
.bizto-single__content figure {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.bizto-single__content ul,
.bizto-single__content ol {
	margin: 0 0 1.2em;
	padding-inline-start: 1.3rem;
}

.bizto-single__content blockquote {
	margin: 1.4em 0;
	padding: 0.95rem 1.15rem;
	border-inline-start: 3px solid #0f6b5c;
	background: rgba(15, 107, 92, 0.05);
	border-radius: 0 10px 10px 0;
	color: #1e293b;
}

/* Like + share */
.bizto-engage {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 clamp(1.25rem, 3vw, 2.1rem);
	padding: 1.1rem 0 1.35rem;
	border-top: 1px solid #f0ebe3;
}

.bizto-engage__like {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.95rem;
	border: 1px solid #e4ddd3;
	border-radius: 10px;
	background: #faf8f4;
	color: #334155;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 650;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bizto-engage__like:hover:not(:disabled) {
	border-color: rgba(225, 29, 72, 0.35);
	color: #e11d48;
}

.bizto-engage__like.is-liked,
.bizto-engage__like.is-liked:disabled {
	background: rgba(225, 29, 72, 0.08);
	border-color: rgba(225, 29, 72, 0.28);
	color: #e11d48;
	cursor: default;
}

.bizto-engage__like-icon {
	display: inline-flex;
}

.bizto-engage__like.is-liked .bizto-icon--heart path {
	fill: currentColor;
}

.bizto-engage__like-count {
	min-width: 1.2em;
	color: inherit;
	opacity: 0.85;
}

.bizto-engage__share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	position: relative;
}

.bizto-engage__share-label {
	color: #8a92a0;
	font-size: 0.82rem;
	font-weight: 600;
}

.bizto-engage__share-list {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.bizto-engage__share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	padding: 0;
	border: 1px solid #e4ddd3;
	border-radius: 10px;
	background: #fff;
	color: #334155;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bizto-engage__share-btn img {
	width: 1.1rem;
	height: 1.1rem;
	object-fit: contain;
}

.bizto-engage__share-btn:hover {
	transform: translateY(-2px);
	border-color: rgba(15, 107, 92, 0.35);
	background: #f7f4ef;
}

.bizto-engage__copied {
	position: absolute;
	inset-inline-end: 0;
	top: calc(100% + 0.35rem);
	padding: 0.3rem 0.55rem;
	border-radius: 8px;
	background: #152a45;
	color: #fff;
	font-size: 0.75rem;
	white-space: nowrap;
}

/* Comments */
.bizto-comments {
	margin: 0 clamp(1.25rem, 3vw, 2.1rem) clamp(1.5rem, 3vw, 2rem);
	padding-top: 1.35rem;
	border-top: 1px solid #f0ebe3;
}

.bizto-comments__title,
.bizto-comments__reply-title {
	margin: 0 0 1rem;
	color: #152a45;
	font-size: 1.1rem;
	font-weight: 750;
}

.bizto-comments__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.bizto-comment {
	margin: 0 0 1rem;
	padding: 0;
}

.bizto-comment__body {
	padding: 1rem;
	border: 1px solid #f0ebe3;
	border-radius: 12px;
	background: #fbfaf7;
}

.bizto-comment__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.65rem;
}

.bizto-comment__avatar {
	border-radius: 50%;
}

.bizto-comment__author {
	display: block;
	color: #152a45;
	font-size: 0.92rem;
}

.bizto-comment__author a {
	color: inherit;
	text-decoration: none;
}

.bizto-comment__date {
	color: #8a92a0;
	font-size: 0.78rem;
	text-decoration: none;
}

.bizto-comment__text {
	color: #334155;
	font-size: 0.92rem;
	line-height: 1.8;
}

.bizto-comment__text p:last-child {
	margin-bottom: 0;
}

.bizto-comment__awaiting {
	margin: 0 0 0.5rem;
	color: #b45309;
	font-size: 0.85rem;
}

.bizto-comment__reply {
	margin-top: 0.55rem;
}

.bizto-comment__reply a {
	color: #0f6b5c;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.bizto-comments__note {
	margin: 0 0 1rem;
	color: #8a92a0;
	font-size: 0.82rem;
}

.bizto-comments__field {
	margin: 0 0 0.9rem;
}

.bizto-comments__field label {
	display: block;
	margin-bottom: 0.35rem;
	color: #334155;
	font-size: 0.88rem;
	font-weight: 600;
}

.bizto-comments__field .required {
	color: #e11d48;
}

.bizto-comments__field input,
.bizto-comments__field textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.7rem 0.85rem;
	border: 1px solid #e4ddd3;
	border-radius: 10px;
	background: #fff;
	color: #152a45;
	font-family: inherit;
	font-size: 0.92rem;
}

.bizto-comments__field input:focus,
.bizto-comments__field textarea:focus {
	outline: none;
	border-color: rgba(15, 107, 92, 0.45);
	box-shadow: 0 0 0 3px rgba(15, 107, 92, 0.1);
}

.bizto-comments__captcha input {
	max-width: 10rem;
}

.bizto-comments__submit,
.bizto-comments__form .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.35rem;
	border: 0;
	border-radius: 10px;
	background: #1e3a5f;
	color: #fff;
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 650;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bizto-comments__submit:hover,
.bizto-comments__form .form-submit .submit:hover {
	background: #152a45;
	transform: translateY(-1px);
}

.bizto-comments__closed {
	color: #8a92a0;
	font-size: 0.9rem;
}

.children {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	padding-inline-start: 1rem;
}

@media (max-width: 900px) {
	.bizto-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bizto-single__top {
		grid-template-columns: 1fr;
	}

	.bizto-single__media {
		order: -1;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 640px) {
	.bizto-blog__hero-inner,
	.bizto-blog__body {
		width: min(100% - 1.25rem, var(--bizto-header-container));
	}

	.bizto-single__shell {
		width: min(100% - 1rem, 980px);
	}

	.bizto-blog__grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.bizto-blog__grid .bizto-bcard__caption {
		left: 0.45rem;
		right: 0.45rem;
		bottom: 0.45rem;
		height: 5.25rem;
		min-height: 5.25rem;
		max-height: 5.25rem;
		padding: 0.6rem 0.65rem 0.55rem;
	}

	.bizto-blog__grid .bizto-bcard__more-text {
		display: none;
	}

	.bizto-single__top {
		padding: 1rem;
		gap: 1rem;
	}

	.bizto-single__title {
		font-size: clamp(1.2rem, 5.5vw, 1.55rem);
		text-align: center;
	}

	.bizto-single__meta {
		text-align: center;
	}

	.bizto-single__content {
		padding: 1.15rem 1rem 1.35rem;
		font-size: 0.96rem;
	}

	.bizto-engage {
		flex-direction: column;
		align-items: stretch;
		margin-inline: 1rem;
		gap: 0.85rem;
	}

	.bizto-engage__likes,
	.bizto-engage__share {
		justify-content: center;
		width: 100%;
	}

	.bizto-engage__share {
		flex-direction: column;
		align-items: center;
	}

	.bizto-comments {
		margin-inline: 1rem;
		margin-bottom: 1.25rem;
	}

	.bizto-breadcrumb__list {
		justify-content: flex-start;
		font-size: 0.78rem;
	}

	.children {
		padding-inline-start: 0.5rem;
	}
}

@media (max-width: 420px) {
	.bizto-blog__grid {
		grid-template-columns: 1fr;
		max-width: 22rem;
		margin-inline: auto;
	}
}

/* Footer */
.bizto-footer {
	--footer-ink: #f4efe6;
	--footer-muted: rgba(244, 239, 230, 0.72);
	--footer-line: rgba(244, 239, 230, 0.14);
	--footer-accent: #c4a574;
	--footer-accent-2: #7eb8a8;
	position: relative;
	margin-top: 3.5rem;
	padding: clamp(2.75rem, 5vw, 4.25rem) 0 0;
	overflow: hidden;
	color: var(--footer-ink);
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(196, 165, 116, 0.18) 0%, transparent 42%),
		radial-gradient(90% 70% at 0% 100%, rgba(15, 107, 92, 0.28) 0%, transparent 45%),
		linear-gradient(165deg, #10201d 0%, #152a3a 48%, #1a2433 100%);
}

.bizto-footer__glow {
	position: absolute;
	inset: auto -10% -30% auto;
	width: min(52vw, 34rem);
	height: min(52vw, 34rem);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(196, 165, 116, 0.16) 0%, transparent 70%);
	pointer-events: none;
}

.bizto-footer__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 2rem, var(--bizto-header-container));
	margin-inline: auto;
}

.bizto-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 1fr;
	gap: clamp(1.75rem, 3vw, 2.75rem);
	padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
	border-bottom: 1px solid var(--footer-line);
}

.bizto-footer__heading {
	margin: 0 0 1rem;
	color: #fff;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.bizto-footer__heading::after {
	content: "";
	display: block;
	width: 2.25rem;
	height: 2px;
	margin-top: 0.65rem;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--footer-accent), transparent);
}

.bizto-footer__subheading {
	margin: 1.35rem 0 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 650;
}

.bizto-footer__logo {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.55rem 0.7rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.25s ease, transform 0.25s ease;
}

.bizto-footer__logo:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.bizto-footer__logo img {
	display: block;
	width: auto;
	height: 52px;
	max-width: 140px;
	object-fit: contain;
}

.bizto-footer__about {
	margin: 0;
	max-width: 34ch;
	color: var(--footer-muted);
	font-size: 0.92rem;
	line-height: 1.85;
}

.bizto-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.bizto-footer__menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--footer-muted);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 500;
	transition: color 0.2s ease, transform 0.25s ease;
}

.bizto-footer__menu a::before {
	content: "";
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--footer-accent);
	opacity: 0.55;
	transition: opacity 0.2s ease, transform 0.25s ease;
}

.bizto-footer__menu a:hover {
	color: #fff;
	transform: translateX(-3px);
}

.bizto-footer__menu a:hover::before {
	opacity: 1;
	transform: scale(1.2);
}

.bizto-footer__trusts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: stretch;
}

/* Fixed elongated seal boxes — same size for every trust badge */
.bizto-footer__trust {
	--trust-w: 5.85rem;
	--trust-h: 8.6rem;
	box-sizing: border-box;
	flex: 0 0 var(--trust-w);
	width: var(--trust-w);
	height: var(--trust-h);
	min-width: var(--trust-w);
	min-height: var(--trust-h);
	max-width: var(--trust-w);
	max-height: var(--trust-h);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem;
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bizto-footer__trust:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.bizto-footer__trust-link,
.bizto-footer__trust-html {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
	text-decoration: none;
	overflow: hidden;
}

.bizto-footer__trust-img,
.bizto-footer__trust img,
.bizto-footer__trust-html img,
.bizto-footer__trust-html iframe,
.bizto-footer__trust a > img {
	display: block !important;
	box-sizing: border-box !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	object-fit: contain !important;
	object-position: center !important;
}

.bizto-footer__trust-html iframe {
	background: #fff;
}

@media (max-width: 640px) {
	.bizto-footer__trust {
		--trust-w: 5.35rem;
		--trust-h: 7.85rem;
	}
}

.bizto-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bizto-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.bizto-footer__social img {
	width: 1.35rem;
	height: 1.35rem;
	object-fit: contain;
}

.bizto-footer__social:hover {
	transform: translateY(-3px) scale(1.04);
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(196, 165, 116, 0.45);
}

.bizto-footer__contact {
	padding: clamp(1.35rem, 2.5vw, 1.85rem) 0;
	border-bottom: 1px solid var(--footer-line);
}

.bizto-footer__heading--contact {
	margin-bottom: 1rem;
}

.bizto-footer__contact-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bizto-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.85rem 1rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.bizto-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 10px;
	color: #1a2433;
	background: linear-gradient(145deg, #e8d5b5, var(--footer-accent));
}

.bizto-footer__contact-text {
	color: var(--footer-muted);
	font-size: 0.9rem;
	line-height: 1.65;
	text-decoration: none;
}

a.bizto-footer__contact-text:hover {
	color: #fff;
}

.bizto-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1.25rem 0 1.5rem;
}

.bizto-footer__copy {
	margin: 0;
	color: rgba(244, 239, 230, 0.62);
	font-size: 0.86rem;
}

.bizto-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.75rem 0.45rem 0.45rem;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(196, 165, 116, 0.18), rgba(126, 184, 168, 0.12));
	border: 1px solid rgba(196, 165, 116, 0.35);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.bizto-footer__credit-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.7rem;
	font-weight: 600;
}

.bizto-footer__credit-name {
	color: #fff;
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.01em;
}

a.bizto-footer__credit-name:hover {
	color: var(--footer-accent);
}

@media (max-width: 980px) {
	.bizto-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.bizto-footer__col--about {
		grid-column: 1 / -1;
		text-align: center;
	}

	.bizto-footer__col--about .bizto-footer__heading::after,
	.bizto-footer__col--about .bizto-footer__logo {
		margin-inline: auto;
	}

	.bizto-footer__about {
		margin-inline: auto;
	}

	.bizto-footer__contact-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bizto-footer__inner {
		width: min(100% - 1.25rem, var(--bizto-header-container));
		text-align: center;
	}

	.bizto-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.85rem;
		justify-items: center;
	}

	.bizto-footer__col {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.bizto-footer__heading {
		text-align: center;
	}

	.bizto-footer__heading::after {
		margin-inline: auto;
	}

	.bizto-footer__subheading {
		text-align: center;
	}

	.bizto-footer__logo {
		margin-inline: auto;
	}

	.bizto-footer__about {
		max-width: 34ch;
		margin-inline: auto;
		text-align: center;
	}

	/* Mobile menu — chip grid */
	.bizto-footer__nav {
		width: 100%;
	}

	.bizto-footer__menu {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 0.55rem;
		width: 100%;
	}

	.bizto-footer__menu li {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.bizto-footer__menu a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0;
		min-height: 2.35rem;
		padding: 0.45rem 0.95rem;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.07);
		border: 1px solid rgba(255, 255, 255, 0.12);
		color: rgba(255, 255, 255, 0.88);
		font-size: 0.86rem;
		font-weight: 600;
		line-height: 1.3;
		transform: none;
	}

	.bizto-footer__menu a::before {
		display: none;
	}

	.bizto-footer__menu a:hover {
		color: #fff;
		background: rgba(196, 165, 116, 0.22);
		border-color: rgba(196, 165, 116, 0.45);
		transform: translateY(-2px);
	}

	.bizto-footer__trusts {
		justify-content: center;
	}

	.bizto-footer__socials {
		justify-content: center;
	}

	.bizto-footer__contact {
		text-align: center;
	}

	.bizto-footer__contact-list {
		width: 100%;
		justify-items: center;
	}

	.bizto-footer__contact-item {
		width: 100%;
		max-width: 22rem;
		justify-content: center;
		text-align: center;
	}

	.bizto-footer__contact-text {
		text-align: center;
	}

	.bizto-footer__bottom {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding-bottom: 1.75rem;
		gap: 0.85rem;
	}

	.bizto-footer__copy {
		text-align: center;
	}

	.bizto-footer__credit {
		margin-inline: auto;
	}
}

/* legacy footer leftovers */
.site-footer a {
	color: inherit;
}

.footer-columns,
.footer-menu,
.site-info {
	display: none;
}

/* Responsive header — موبایل: لوگو / جستجو / دکمه‌ها */
@media (max-width: 900px) {
	.bizto-header__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 0.85rem;
		min-height: 0;
		padding-block: 1rem;
	}

	.bizto-header__logo {
		display: flex;
		justify-content: center;
		order: 1;
	}

	.bizto-header__search {
		order: 2;
		flex: 0 0 auto;
		width: 100%;
	}

	.bizto-header__actions {
		order: 3;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
		width: 100%;
		margin: 0;
	}

	.bizto-btn {
		width: 100%;
		min-width: 0;
		height: 48px;
		padding: 0 0.75rem;
	}

	.bizto-btn__label {
		display: inline;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.bizto-cart-badge {
		top: -8px;
		right: -6px;
	}

	.bizto-minicart__wrap {
		width: min(100vw, 100%);
	}
}

@media (max-width: 480px) {
	.bizto-header__inner {
		width: min(100% - 1.25rem, var(--bizto-header-container));
		gap: 0.75rem;
	}

	.bizto-search-form__input {
		height: 46px;
		font-size: 0.9rem;
	}

	.bizto-btn {
		height: 46px;
		font-size: 0.88rem;
		gap: 0.4rem;
	}

	.bizto-minicart__head,
	.bizto-minicart__body,
	.bizto-minicart__foot {
		padding-inline: 1rem;
	}
}

/* ========== Homepage blog posts row ========== */
.bizto-prow--posts {
	--bcard-gap: clamp(0.85rem, 1.6vw, 1.35rem);
	--bcard-radius: clamp(1rem, 2vw, 1.35rem);
}

.bizto-bcard {
	flex: 0 0 calc((100% - 4 * var(--bcard-gap)) / 5);
	min-width: 0;
	scroll-snap-align: start;
}

.bizto-prow--posts .bizto-prow__track {
	gap: var(--bcard-gap);
	align-items: stretch;
}

.bizto-bcard__link {
	display: block;
	color: inherit;
	text-decoration: none;
	outline: none;
}

.bizto-bcard__shot {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	border-radius: var(--bcard-radius);
	background: #ebe6de;
	transform: translateZ(0);
	box-shadow: 0 10px 28px rgba(30, 58, 95, 0.07);
	transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bizto-bcard__img,
.bizto-bcard__shot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.bizto-bcard__img--placeholder {
	background:
		linear-gradient(145deg, #ece6dc 0%, #d8d0c4 45%, #ebe5db 100%);
}

.bizto-bcard__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(120% 70% at 50% 0%, transparent 35%, rgba(15, 23, 42, 0.08) 100%),
		linear-gradient(
			to top,
			rgba(21, 32, 48, 0.55) 0%,
			rgba(21, 32, 48, 0.18) 38%,
			transparent 62%
		);
	transition: opacity 0.35s ease;
}

.bizto-bcard__shine {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		125deg,
		transparent 34%,
		rgba(255, 255, 255, 0.22) 48%,
		transparent 62%
	);
	transform: translateX(120%);
	opacity: 0;
}

.bizto-bcard__date {
	position: absolute;
	z-index: 3;
	top: 0.75rem;
	inset-inline-end: 0.75rem;
	max-width: calc(100% - 1.5rem);
	padding: 0.38rem 0.7rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	color: #1e3a5f;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
	backdrop-filter: blur(8px);
}

.bizto-bcard__caption {
	position: absolute;
	z-index: 3;
	left: 0.7rem;
	right: 0.7rem;
	bottom: 0.7rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.35rem;
	box-sizing: border-box;
	height: 5.85rem;
	min-height: 5.85rem;
	max-height: 5.85rem;
	padding: 0.8rem 0.85rem 0.75rem;
	overflow: hidden;
	border-radius: calc(var(--bcard-radius) - 0.35rem);
	background:
		linear-gradient(
			160deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(251, 248, 242, 0.92) 100%
		);
	box-shadow:
		0 14px 32px rgba(15, 23, 42, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.bizto-bcard__caption::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0.8rem;
	bottom: 0.8rem;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(180deg, #0f6b5c 0%, #1e3a5f 100%);
	opacity: 0.85;
}

.bizto-bcard__title {
	display: block;
	flex: 0 0 auto;
	box-sizing: border-box;
	width: 100%;
	height: 2.8em;
	min-height: 2.8em;
	max-height: 2.8em;
	margin: 0;
	padding-inline-start: 0.55rem;
	overflow: hidden;
	color: #152a45;
	font-size: clamp(0.9rem, 1.45vw, 1.05rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.4;
	text-align: start;
	transition: color 0.25s ease;
}

.bizto-bcard__more {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.3rem;
	margin-top: auto;
	padding-inline-start: 0.55rem;
	height: 1.15rem;
	min-height: 1.15rem;
	color: #1e3a5f;
	font-size: 0.75rem;
	font-weight: 600;
	opacity: 0.75;
	transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bizto-bcard__more-icon {
	display: inline-flex;
	transition: transform 0.3s ease;
}

.bizto-bcard__link:hover .bizto-bcard__shot,
.bizto-bcard__link:focus-visible .bizto-bcard__shot {
	box-shadow: 0 18px 40px rgba(30, 58, 95, 0.14);
	transform: translateY(-3px);
}

.bizto-bcard__link:hover .bizto-bcard__img,
.bizto-bcard__link:focus-visible .bizto-bcard__img,
.bizto-bcard__link:hover .bizto-bcard__shot img,
.bizto-bcard__link:focus-visible .bizto-bcard__shot img {
	transform: scale(1.06);
}

.bizto-bcard__link:hover .bizto-bcard__shine,
.bizto-bcard__link:focus-visible .bizto-bcard__shine {
	opacity: 1;
	animation: bizto-pcard-shine 0.85s ease;
}

.bizto-bcard__link:hover .bizto-bcard__caption,
.bizto-bcard__link:focus-visible .bizto-bcard__caption {
	transform: translateY(-3px);
	box-shadow:
		0 18px 36px rgba(15, 23, 42, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bizto-bcard__link:hover .bizto-bcard__title,
.bizto-bcard__link:focus-visible .bizto-bcard__title {
	color: #0b1f38;
}

.bizto-bcard__link:hover .bizto-bcard__more,
.bizto-bcard__link:focus-visible .bizto-bcard__more {
	opacity: 1;
	transform: translateX(-2px);
}

.bizto-bcard__link:hover .bizto-bcard__more-icon,
.bizto-bcard__link:focus-visible .bizto-bcard__more-icon {
	transform: translateX(-3px);
}

.bizto-bcard__link:focus-visible .bizto-bcard__shot {
	outline: 2px solid #1e3a5f;
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.bizto-bcard {
		flex-basis: calc((100% - 2 * var(--bcard-gap)) / 3);
	}
}

@media (max-width: 900px) {
	.bizto-bcard {
		flex-basis: calc((100% - 1 * var(--bcard-gap)) / 2);
	}

	.bizto-bcard__title {
		font-size: clamp(0.88rem, 3.2vw, 1rem);
	}

	.bizto-bcard__caption {
		left: 0.55rem;
		right: 0.55rem;
		bottom: 0.55rem;
		height: 5.55rem;
		min-height: 5.55rem;
		max-height: 5.55rem;
		padding: 0.7rem 0.75rem 0.65rem;
	}
}

@media (max-width: 640px) {
	.bizto-bcard {
		flex-basis: calc((100% - 1 * var(--bcard-gap)) / 2);
	}

	.bizto-bcard__date {
		font-size: 0.66rem;
		padding: 0.3rem 0.55rem;
	}

	.bizto-bcard__more-text {
		display: none;
	}
}
