/* =====================================================================
   زیوان خانه — استایل صفحه اصلی
   تمام کلاس‌ها با پیشوند zkh- برای جلوگیری از تداخل با تم/سایر افزونه‌ها.
   ===================================================================== */

.zkh-home,
.zkh-home * {
	box-sizing: border-box;
}

:root {
	--zkh-bg: #ffffff;
	--zkh-bg-soft: #f6f6f7;
	--zkh-text: #111111;
	--zkh-text-dark: #202020;
	--zkh-red: #e31e24;
	--zkh-red-soft: #fdecec;
	--zkh-border: #e7e7e7;
	--zkh-muted: #747474;
	--zkh-radius-sm: 10px;
	--zkh-radius-md: 14px;
	--zkh-radius-lg: 20px;
	--zkh-container: 1400px;
	--zkh-header-h: 0px;
	--zkh-shadow-soft: 0 6px 24px rgba(17, 17, 17, 0.06);
	--zkh-font: 'Vazirmatn', 'IRANSansX', Tahoma, Arial, sans-serif;
	--zkh-transition: 200ms ease;
}

.zkh-home {
	font-family: var(--zkh-font);
	color: var(--zkh-text);
	background: var(--zkh-bg);
	direction: rtl;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.zkh-home img {
	max-width: 100%;
	display: block;
}

.zkh-home a {
	text-decoration: none;
	color: inherit;
}

.zkh-home ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zkh-home button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: none;
	color: inherit;
}

.zkh-home h1,
.zkh-home h2,
.zkh-home h3 {
	margin: 0;
	font-weight: 700;
}

.zkh-container {
	max-width: var(--zkh-container);
	margin-inline: auto;
	padding-inline: clamp(16px, 3vw, 40px);
}

.zkh-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.zkh-skip-link {
	position: absolute;
	top: -60px;
	right: 12px;
	background: var(--zkh-text);
	color: #fff;
	padding: 10px 18px;
	border-radius: var(--zkh-radius-sm);
	z-index: 999;
	transition: top var(--zkh-transition);
}

.zkh-skip-link:focus {
	top: 12px;
}

.zkh-home :focus-visible {
	outline: 2px solid var(--zkh-red);
	outline-offset: 2px;
}

/* دکمه‌ها */
.zkh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	transition: background var(--zkh-transition), color var(--zkh-transition), border-color var(--zkh-transition), transform var(--zkh-transition);
	white-space: nowrap;
}

.zkh-btn--primary {
	background: var(--zkh-red);
	color: #fff;
}

.zkh-btn--primary:hover {
	background: #c8181d;
}

.zkh-btn--ghost {
	background: transparent;
	color: var(--zkh-text);
	border: 1px solid var(--zkh-border);
}

.zkh-btn--ghost:hover {
	border-color: var(--zkh-text);
}

.zkh-btn--dark {
	background: var(--zkh-text-dark);
	color: #fff;
}

.zkh-btn--card {
	width: 100%;
	background: var(--zkh-bg-soft);
	color: var(--zkh-text);
	border-radius: var(--zkh-radius-sm);
	padding: 11px 16px;
	font-size: 14px;
	margin-top: 12px;
}

.zkh-btn--card:hover {
	background: var(--zkh-red);
	color: #fff;
}

.zkh-btn--disabled {
	opacity: 0.5;
	pointer-events: none;
}

/* عنوان بخش‌ها */
.zkh-section {
	padding-block: clamp(40px, 6vw, 96px);
}

.zkh-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(20px, 3vw, 36px);
}

.zkh-section-title {
	font-size: clamp(20px, 2.4vw, 28px);
	position: relative;
	padding-inline-start: 14px;
}

.zkh-section-title::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 6px;
	bottom: 6px;
	width: 4px;
	border-radius: 4px;
	background: var(--zkh-text-dark);
}

.zkh-section-title--accent::before {
	background: var(--zkh-red);
}

.zkh-section-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--zkh-muted);
	white-space: nowrap;
	transition: color var(--zkh-transition);
}

.zkh-section-link:hover {
	color: var(--zkh-red);
}

.zkh-section-link .zkh-icon {
	width: 16px;
	height: 16px;
	transform: rotate(180deg);
}

/* =====================================================================
   نوار اعلان + هدر
   ===================================================================== */

.zkh-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--zkh-bg);
}

.zkh-announcement-bar {
	background: var(--zkh-text-dark);
	color: #f2f2f2;
	font-size: 12.5px;
	overflow: hidden;
}

.zkh-announcement-inner {
	padding-block: 8px;
}

.zkh-announcement-list {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	scrollbar-width: none;
	white-space: nowrap;
}

.zkh-announcement-list::-webkit-scrollbar {
	display: none;
}

.zkh-announcement-list li {
	position: relative;
	padding-inline-start: 18px;
}

.zkh-announcement-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--zkh-red);
}

.zkh-header-main {
	border-bottom: 1px solid transparent;
	transition: box-shadow var(--zkh-transition), border-color var(--zkh-transition), padding var(--zkh-transition);
}

.zkh-header.is-scrolled .zkh-header-main {
	box-shadow: 0 2px 14px rgba(17, 17, 17, 0.06);
	border-color: var(--zkh-border);
}

.zkh-header-main-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-block: 22px;
	transition: padding var(--zkh-transition);
}

.zkh-header.is-scrolled .zkh-header-main-inner {
	padding-block: 13px;
}

.zkh-logo-text {
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
	color: var(--zkh-text);
	white-space: nowrap;
}

.zkh-logo-text em {
	font-style: normal;
	color: var(--zkh-red);
}

.zkh-header-brand {
	flex-shrink: 0;
}

.zkh-header-search {
	position: relative;
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	background: var(--zkh-bg-soft);
	border: 1px solid var(--zkh-border);
	border-radius: 999px;
	padding-inline: 18px;
	max-width: 560px;
	margin-inline: auto;
	transition: border-color var(--zkh-transition);
}

.zkh-header-search:focus-within {
	border-color: var(--zkh-text);
}

.zkh-header-search .zkh-search-icon {
	width: 18px;
	height: 18px;
	color: var(--zkh-muted);
	flex-shrink: 0;
}

.zkh-header-search input[type='search'] {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 10px;
	font-family: inherit;
	font-size: 14px;
	color: var(--zkh-text);
	outline: none;
}

.zkh-header-search input[type='search']::placeholder {
	color: var(--zkh-muted);
}

.zkh-search-submit {
	display: none;
}

.zkh-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.zkh-header-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-size: 11.5px;
	color: var(--zkh-text);
	padding: 8px 12px;
	border-radius: var(--zkh-radius-sm);
	position: relative;
	transition: background var(--zkh-transition);
}

.zkh-header-action:hover {
	background: var(--zkh-bg-soft);
}

.zkh-cart-action {
	position: relative;
}

.zkh-cart-count {
	position: absolute;
	top: 2px;
	inset-inline-end: 4px;
	background: var(--zkh-red);
	color: #fff;
	font-size: 10px;
	min-width: 16px;
	height: 16px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-inline: 3px;
	line-height: 1;
}

.zkh-mobile-toggle,
.zkh-mobile-toggle-inline {
	display: none;
}

/* ردیف ناوبری */
.zkh-nav-row {
	border-top: 1px solid var(--zkh-border);
	background: var(--zkh-bg);
}

.zkh-nav-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-block: 12px;
}

.zkh-categories-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--zkh-text-dark);
	color: #fff;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	flex-shrink: 0;
	transition: background var(--zkh-transition);
}

.zkh-categories-btn:hover {
	background: var(--zkh-red);
}

.zkh-main-menu {
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto;
	scrollbar-width: none;
}

.zkh-main-menu::-webkit-scrollbar {
	display: none;
}

.zkh-main-menu li a {
	font-size: 14px;
	font-weight: 500;
	color: var(--zkh-text);
	white-space: nowrap;
	position: relative;
	padding-block: 2px;
	transition: color var(--zkh-transition);
}

.zkh-main-menu li a:hover {
	color: var(--zkh-red);
}

.zkh-main-menu .zkh-nav-sale {
	color: var(--zkh-red);
	font-weight: 700;
}

/* هدر موبایل مجزا */
.zkh-mobile-header {
	display: none;
}

/* =====================================================================
   منوی آف‌کانواس موبایل (باز شدن از راست)
   ===================================================================== */

.zkh-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 200;
}

.zkh-mobile-menu[hidden] {
	display: none;
}

.zkh-mobile-menu-overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.5);
	opacity: 0;
	transition: opacity var(--zkh-transition);
}

.zkh-mobile-menu.is-open .zkh-mobile-menu-overlay {
	opacity: 1;
}

.zkh-mobile-menu-panel {
	position: absolute;
	top: 0;
	inset-inline-end: 0;
	height: 100%;
	width: min(340px, 86vw);
	background: #fff;
	transform: translateX(100%);
	transition: transform 260ms ease;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 20px;
	overflow-y: auto;
}

[dir='rtl'] .zkh-mobile-menu-panel {
	transform: translateX(-100%);
}

.zkh-mobile-menu.is-open .zkh-mobile-menu-panel {
	transform: translateX(0);
}

.zkh-mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zkh-mobile-menu-close {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--zkh-bg-soft);
}

.zkh-mobile-main-menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 4px;
	border-bottom: 1px solid var(--zkh-border);
	font-size: 15px;
	font-weight: 500;
}

.zkh-mobile-main-menu li a .zkh-icon {
	color: var(--zkh-muted);
}

.zkh-mobile-main-menu .zkh-nav-sale {
	color: var(--zkh-red);
	font-weight: 700;
}

.zkh-mobile-menu-contact a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--zkh-muted);
	font-size: 14px;
}

body.zkh-menu-open {
	overflow: hidden;
}

/* =====================================================================
   هیرو
   ===================================================================== */

.zkh-hero {
	background: var(--zkh-bg-soft);
	overflow: hidden;
}

.zkh-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(24px, 4vw, 60px);
	padding-block: clamp(36px, 6vw, 80px);
}

.zkh-hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}

.zkh-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zkh-red);
	background: var(--zkh-red-soft);
	padding: 7px 16px;
	border-radius: 999px;
}

.zkh-hero-title {
	font-size: clamp(30px, 4.4vw, 54px);
	line-height: 1.25;
	color: var(--zkh-text);
	max-width: 14ch;
}

.zkh-hero-subtitle {
	font-size: clamp(15px, 1.4vw, 17px);
	color: var(--zkh-muted);
	max-width: 46ch;
	margin: 0;
}

.zkh-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.zkh-hero-media {
	position: relative;
	aspect-ratio: 4 / 3.1;
	border-radius: var(--zkh-radius-lg);
	overflow: hidden;
	background: #ffffff;
}

.zkh-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--zkh-radius-lg);
}

.zkh-hero-placeholder-shape {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zkh-hero-shape-circle {
	position: absolute;
	width: 78%;
	height: 78%;
	border-radius: 50%;
	background: linear-gradient(145deg, #f6f6f7, #ececec);
	border: 1px solid var(--zkh-border);
}

.zkh-hero-shape-card {
	position: relative;
	width: 55%;
	aspect-ratio: 1/1;
	background: #fff;
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-lg);
	box-shadow: var(--zkh-shadow-soft);
}

.zkh-hero-shape-card::before,
.zkh-hero-shape-card::after {
	content: '';
	position: absolute;
	border-radius: 999px;
	background: var(--zkh-bg-soft);
}

.zkh-hero-shape-card::before {
	top: 22%;
	inset-inline: 18%;
	height: 10px;
}

.zkh-hero-shape-card::after {
	top: 40%;
	inset-inline-start: 18%;
	width: 30%;
	height: 10px;
	background: var(--zkh-red-soft);
}

/* =====================================================================
   دسته‌بندی محصولات
   ===================================================================== */

.zkh-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.zkh-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-md);
	padding: 20px 14px;
	transition: transform var(--zkh-transition), border-color var(--zkh-transition), box-shadow var(--zkh-transition);
}

.zkh-category-card:hover {
	transform: translateY(-3px);
	border-color: var(--zkh-text);
	box-shadow: var(--zkh-shadow-soft);
}

.zkh-category-image {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: var(--zkh-radius-sm);
	overflow: hidden;
	background: var(--zkh-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}

.zkh-category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.zkh-category-card:hover .zkh-category-image img {
	transform: scale(1.06);
}

.zkh-category-image-fallback .zkh-icon {
	width: 34px;
	height: 34px;
	color: var(--zkh-muted);
}

.zkh-category-name {
	font-size: 14.5px;
	font-weight: 600;
}

.zkh-category-count {
	font-size: 12px;
	color: var(--zkh-muted);
}

/* =====================================================================
   کارت محصول (کامپوننت مشترک)
   ===================================================================== */

.zkh-product-card {
	background: #fff;
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color var(--zkh-transition), box-shadow var(--zkh-transition), transform var(--zkh-transition);
	height: 100%;
}

.zkh-product-card:hover {
	border-color: var(--zkh-text);
	box-shadow: var(--zkh-shadow-soft);
	transform: translateY(-2px);
}

.zkh-product-image-wrap {
	position: relative;
	display: block;
	background: var(--zkh-bg-soft);
	aspect-ratio: 1/1;
}

.zkh-product-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
}

.zkh-product-badges {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.zkh-badge {
	font-size: 11.5px;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 999px;
	color: #fff;
}

.zkh-badge--sale {
	background: var(--zkh-red);
}

.zkh-badge--new {
	background: var(--zkh-text-dark);
}

.zkh-badge--out {
	background: var(--zkh-muted);
}

.zkh-product-wishlist {
	position: absolute;
	top: 10px;
	inset-inline-end: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--zkh-shadow-soft);
	color: var(--zkh-muted);
	transition: color var(--zkh-transition);
}

.zkh-product-wishlist:hover {
	color: var(--zkh-red);
}

.zkh-product-wishlist .zkh-icon {
	width: 16px;
	height: 16px;
}

.zkh-product-content {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.zkh-product-brand {
	font-size: 11.5px;
	color: var(--zkh-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 4px;
}

.zkh-product-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.9em;
}

.zkh-product-price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.zkh-price-old {
	font-size: 12.5px;
	color: var(--zkh-muted);
	text-decoration: line-through;
}

.zkh-price-current {
	font-size: 16px;
	font-weight: 700;
	color: var(--zkh-text);
}

.zkh-price-current .woocommerce-Price-amount {
	color: var(--zkh-text);
}

.zkh-btn--card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.zkh-btn--card .zkh-icon {
	width: 16px;
	height: 16px;
}

/* =====================================================================
   کاروسل محصولات — پیاده‌سازی کاملاً داخلی و بدون وابستگی به کتابخانه بیرونی
   (۴ کارت هم‌ردیف در دسکتاپ + دکمه‌های ناوبری کناری + پیجینیشن نقطه‌ای)
   با پشتیبانی کامل RTL از طریق خواص منطقی CSS.
   ===================================================================== */

.zkh-carousel {
	position: relative;
	padding-inline: 6px;
}

.zkh-carousel-track {
	display: flex;
	align-items: stretch;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-block: 2px 6px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.zkh-carousel-track::-webkit-scrollbar {
	display: none;
}

.zkh-carousel-slide {
	flex: 0 0 auto;
	width: 262px;
	scroll-snap-align: start;
}

.zkh-carousel-prev,
.zkh-carousel-next {
	position: absolute;
	top: 36%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--zkh-border);
	box-shadow: var(--zkh-shadow-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	transition: background var(--zkh-transition), border-color var(--zkh-transition), color var(--zkh-transition), opacity var(--zkh-transition);
}

.zkh-carousel-prev {
	inset-inline-start: -6px;
}

.zkh-carousel-next {
	inset-inline-end: -6px;
}

.zkh-carousel-next .zkh-icon {
	transform: rotate(180deg);
}

.zkh-carousel-prev:hover,
.zkh-carousel-next:hover {
	background: var(--zkh-text-dark);
	border-color: var(--zkh-text-dark);
	color: #fff;
}

.zkh-carousel-prev:disabled,
.zkh-carousel-next:disabled {
	opacity: 0.35;
	pointer-events: none;
}

.zkh-carousel-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 20px;
}

.zkh-carousel-dots[hidden] {
	display: none;
}

.zkh-carousel-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--zkh-border);
	transition: background var(--zkh-transition), width var(--zkh-transition);
	padding: 0;
}

.zkh-carousel-dot.is-active {
	background: var(--zkh-red);
	width: 22px;
}

/* =====================================================================
   تخفیف‌های ویژه — هویت بصری قوی‌تر
   ===================================================================== */

.zkh-special-offers {
	background: var(--zkh-red-soft);
}

/* =====================================================================
   بنر تبلیغاتی
   ===================================================================== */

.zkh-promo-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: stretch;
	background: var(--zkh-text-dark);
	border-radius: var(--zkh-radius-lg);
	overflow: hidden;
	min-height: 260px;
}

.zkh-promo-banner:not(.zkh-promo-banner--has-image) .zkh-promo-inner {
	grid-template-columns: 1fr;
}

.zkh-promo-media {
	overflow: hidden;
}

.zkh-promo-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zkh-promo-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
	padding: clamp(24px, 4vw, 52px);
	color: #fff;
}

.zkh-promo-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--zkh-red);
}

.zkh-promo-title {
	font-size: clamp(20px, 2.4vw, 30px);
	font-weight: 700;
	max-width: 18ch;
}

.zkh-promo-description {
	color: #cfcfcf;
	font-size: 14.5px;
	max-width: 42ch;
}

/* =====================================================================
   برندها
   ===================================================================== */

.zkh-brands-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.zkh-brand-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-md);
	padding: 22px 14px;
	min-height: 84px;
	transition: border-color var(--zkh-transition), transform var(--zkh-transition);
}

.zkh-brand-card:hover {
	border-color: var(--zkh-text);
	transform: translateY(-2px);
}

.zkh-brand-card img {
	max-height: 34px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.75;
	transition: filter var(--zkh-transition), opacity var(--zkh-transition);
}

.zkh-brand-card:hover img {
	filter: grayscale(0);
	opacity: 1;
}

.zkh-brand-name-fallback {
	font-weight: 700;
	color: var(--zkh-muted);
	font-size: 14px;
}

/* =====================================================================
   بر اساس نیازت انتخاب کن
   ===================================================================== */

.zkh-need-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.zkh-need-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--zkh-bg-soft);
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-md);
	padding: 24px 22px;
	font-weight: 600;
	font-size: 15.5px;
	transition: background var(--zkh-transition), border-color var(--zkh-transition);
}

.zkh-need-card:hover {
	background: #fff;
	border-color: var(--zkh-text);
}

.zkh-need-arrow .zkh-icon {
	transform: rotate(180deg);
	color: var(--zkh-muted);
}

/* =====================================================================
   اعتماد و خدمات
   ===================================================================== */

.zkh-trust {
	background: var(--zkh-bg-soft);
}

.zkh-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.zkh-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-md);
	padding: 20px;
}

.zkh-trust-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--zkh-red-soft);
	color: var(--zkh-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.zkh-trust-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 13px;
	color: var(--zkh-muted);
}

.zkh-trust-text strong {
	font-size: 14.5px;
	color: var(--zkh-text);
}

/* =====================================================================
   راهنمای خرید
   ===================================================================== */

.zkh-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zkh-article-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--zkh-border);
	border-radius: var(--zkh-radius-md);
	overflow: hidden;
	transition: box-shadow var(--zkh-transition), transform var(--zkh-transition);
}

.zkh-article-card:hover {
	box-shadow: var(--zkh-shadow-soft);
	transform: translateY(-2px);
}

.zkh-article-image {
	aspect-ratio: 16/10;
	background: var(--zkh-bg-soft);
	display: block;
}

.zkh-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zkh-article-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.zkh-article-cat {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--zkh-red);
}

.zkh-article-title {
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.5;
}

.zkh-article-excerpt {
	font-size: 13px;
	color: var(--zkh-muted);
	line-height: 1.7;
}

/* =====================================================================
   خبرنامه
   ===================================================================== */

.zkh-newsletter-inner {
	background: var(--zkh-text-dark);
	border-radius: var(--zkh-radius-lg);
	padding: clamp(28px, 4vw, 52px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	color: #fff;
}

.zkh-newsletter-title {
	font-size: clamp(19px, 2vw, 24px);
}

.zkh-newsletter-message {
	color: #d8f3dc;
	font-size: 14px;
	margin: 0;
}

.zkh-newsletter-form {
	display: flex;
	gap: 10px;
	width: 100%;
	max-width: 460px;
	flex-wrap: wrap;
}

.zkh-newsletter-form input {
	flex: 1;
	min-width: 200px;
	border: 1px solid #3a3a3a;
	background: #2b2b2b;
	color: #fff;
	border-radius: 999px;
	padding: 12px 18px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.zkh-newsletter-form input::placeholder {
	color: #9c9c9c;
}

.zkh-newsletter-form .zkh-btn {
	flex-shrink: 0;
}

/* =====================================================================
   فوتر
   ===================================================================== */

.zkh-footer {
	background: #111111;
	color: #cfcfcf;
	padding-block: clamp(40px, 5vw, 72px) 24px;
	margin-top: 0;
}

.zkh-footer a {
	color: #cfcfcf;
	transition: color var(--zkh-transition);
}

.zkh-footer a:hover {
	color: #fff;
}

.zkh-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #262626;
}

.zkh-logo-text--light {
	color: #fff;
}

.zkh-footer-about p {
	font-size: 13.5px;
	line-height: 1.8;
	margin: 12px 0 16px;
	max-width: 32ch;
}

.zkh-footer-social {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.zkh-footer-social a {
	font-size: 13px;
	border: 1px solid #333;
	padding: 7px 14px;
	border-radius: 999px;
}

.zkh-footer-col summary {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	list-style: none;
	margin-bottom: 14px;
}

.zkh-footer-col summary::-webkit-details-marker {
	display: none;
}

.zkh-footer-col ul li {
	margin-bottom: 10px;
	font-size: 13.5px;
}

.zkh-footer-contact li a,
.zkh-footer-contact li span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.zkh-footer-contact .zkh-icon {
	width: 16px;
	height: 16px;
	color: #8f8f8f;
	flex-shrink: 0;
}

.zkh-footer-bottom {
	padding-top: 20px;
	text-align: center;
	font-size: 12.5px;
	color: #8f8f8f;
}

/* =====================================================================
   نوار ناوبری پایین موبایل
   ===================================================================== */

.zkh-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	inset-inline: 0;
	z-index: 90;
	background: #fff;
	border-top: 1px solid var(--zkh-border);
	box-shadow: 0 -2px 14px rgba(17, 17, 17, 0.05);
	border-radius: 18px 18px 0 0;
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.zkh-bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	font-size: 10.5px;
	color: var(--zkh-muted);
	padding-block: 9px 7px;
	flex: 1;
	position: relative;
}

.zkh-bottom-nav-item.is-active {
	color: var(--zkh-red);
}

.zkh-bottom-nav-item .zkh-icon {
	width: 21px;
	height: 21px;
}

.zkh-bottom-nav-icon-wrap {
	position: relative;
	display: inline-flex;
}

.zkh-cart-count--badge {
	top: -6px;
	inset-inline-end: -8px;
}

/* =====================================================================
   ریسپانسیو — تبلت (768px تا 1023px)
   ===================================================================== */

@media (max-width: 1279px) {
	.zkh-categories-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.zkh-brands-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* جلوگیری از شلوغی و سرریز هدر در عرض‌های میانی: مخفی‌سازی برچسب متنی آیکون‌ها */
	.zkh-action-label {
		display: none;
	}

	.zkh-header-action {
		padding: 8px 10px;
	}

	.zkh-header-search {
		max-width: 380px;
	}

	.zkh-nav-inner {
		gap: 18px;
	}

	.zkh-main-menu {
		gap: 18px;
	}
}

@media (max-width: 1023px) {
	.zkh-hero-inner {
		grid-template-columns: 1fr;
	}

	.zkh-hero-media {
		order: -1;
		aspect-ratio: 16/10;
	}

	.zkh-hero-content {
		align-items: flex-start;
	}

	.zkh-categories-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.zkh-need-grid,
	.zkh-articles-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.zkh-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.zkh-brands-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.zkh-footer-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 26px;
	}

	.zkh-carousel-slide {
		width: 46%;
	}
}

/* =====================================================================
   ریسپانسیو — موبایل (زیر 768px)
   ===================================================================== */

@media (max-width: 767px) {
	body.zkh-home-body {
		padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
	}

	/* مخفی‌سازی هدر دسکتاپ و نمایش هدر اختصاصی موبایل */
	.zkh-announcement-bar {
		display: none;
	}

	.zkh-header-main-inner {
		display: none;
	}

	.zkh-nav-row {
		display: none;
	}

	.zkh-mobile-header {
		display: block;
		padding-block: 12px 14px;
		border-bottom: 1px solid var(--zkh-border);
	}

	.zkh-mobile-header-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-inline: 16px;
		margin-bottom: 12px;
	}

	.zkh-mobile-toggle-inline {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: var(--zkh-bg-soft);
	}

	.zkh-mobile-cart {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: var(--zkh-bg-soft);
	}

	.zkh-mobile-search {
		display: flex;
		align-items: center;
		gap: 8px;
		background: var(--zkh-bg-soft);
		border: 1px solid var(--zkh-border);
		border-radius: 999px;
		padding-inline: 16px;
		margin-inline: 16px;
	}

	.zkh-mobile-search .zkh-search-icon {
		width: 18px;
		height: 18px;
		color: var(--zkh-muted);
		flex-shrink: 0;
	}

	.zkh-mobile-search input {
		flex: 1;
		border: none;
		background: transparent;
		padding: 11px 6px;
		font-family: inherit;
		font-size: 14px;
		outline: none;
	}

	.zkh-bottom-nav {
		display: flex;
	}

	/* هیرو */
	.zkh-hero-inner {
		padding-block: 24px 32px;
		gap: 20px;
	}

	.zkh-hero-title {
		max-width: none;
		font-size: clamp(26px, 7vw, 34px);
	}

	.zkh-hero-actions {
		width: 100%;
	}

	.zkh-hero-actions .zkh-btn {
		flex: 1;
	}

	/* دسته‌بندی‌ها: کشویی افقی */
	.zkh-categories-grid {
		display: flex;
		grid-template-columns: unset;
		overflow-x: auto;
		gap: 12px;
		padding-bottom: 4px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.zkh-categories-grid::-webkit-scrollbar {
		display: none;
	}

	.zkh-category-card {
		flex: 0 0 118px;
		scroll-snap-align: start;
	}

	.zkh-need-grid {
		grid-template-columns: 1fr;
	}

	.zkh-articles-grid {
		grid-template-columns: 1fr;
	}

	.zkh-trust-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zkh-trust-item {
		flex-direction: column;
		text-align: center;
		gap: 8px;
		padding: 16px 10px;
	}

	.zkh-brands-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.zkh-promo-inner {
		grid-template-columns: 1fr;
	}

	.zkh-promo-media {
		aspect-ratio: 16/10;
	}

	.zkh-footer-grid {
		grid-template-columns: 1fr;
		row-gap: 4px;
	}

	.zkh-footer-col.zkh-footer-accordion {
		border-bottom: 1px solid #262626;
		padding-bottom: 12px;
		margin-bottom: 12px;
	}

	.zkh-newsletter-form {
		flex-direction: column;
	}

	.zkh-newsletter-form .zkh-btn {
		width: 100%;
	}

	.zkh-carousel-slide {
		width: 72%;
	}

	.zkh-carousel {
		padding-inline: 0;
	}

	.zkh-carousel-prev,
	.zkh-carousel-next {
		display: none;
	}

	.zkh-section {
		padding-block: clamp(32px, 8vw, 56px);
	}
}

@media (max-width: 400px) {
	.zkh-category-card {
		flex-basis: 104px;
	}

	.zkh-trust-grid {
		grid-template-columns: 1fr;
	}
}

/* v1.1 مدیریت تصویری کارت‌های «بر اساس نیاز» */
.zkh-need-card--image{position:relative;overflow:hidden;min-height:210px;align-items:flex-end}.zkh-need-card--image .zkh-need-media{position:absolute;inset:0;display:block}.zkh-need-card--image .zkh-need-media:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 35%,rgba(0,0,0,.65) 100%)}.zkh-need-card--image .zkh-need-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.zkh-need-card--image:hover .zkh-need-media img{transform:scale(1.035)}.zkh-need-card--image .zkh-need-title,.zkh-need-card--image .zkh-need-arrow{position:relative;z-index:2;color:#fff}.zkh-need-card--image .zkh-need-title{font-weight:800}.zkh-need-card--image .zkh-need-arrow{border-color:rgba(255,255,255,.45)}

/* ===== ZKH 2.0 ULTRA MODERN RED SIGNATURE ===== */
:root{--zkh-red:#ed1c24;--zkh-red2:#ff3b42;--zkh-ink:#111214;--zkh-glass:rgba(255,255,255,.72);--zkh-line:rgba(17,18,20,.08)}
html{scroll-behavior:smooth}.zkh-home{background:#fff}.zkh-section{padding-block:clamp(48px,7vw,92px)}
.zkh-section-title:after{content:"";display:inline-block;width:5px;height:28px;border-radius:9px;background:linear-gradient(var(--zkh-red2),var(--zkh-red));margin-inline-start:12px;vertical-align:-5px}
/* hero image-only 4-slide */
.zkh-hero-v2{position:relative;max-width:1440px;margin:24px auto 0;padding:0 clamp(16px,3vw,36px);background:none!important;overflow:visible}.zkh-hero-slider{position:relative;aspect-ratio:16/6.2;border-radius:32px;overflow:hidden;background:#f4f4f5;box-shadow:0 24px 70px rgba(0,0,0,.08)}.zkh-hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transform:scale(1.035);transition:opacity .75s ease,transform 1.2s cubic-bezier(.2,.7,.2,1),visibility .75s}.zkh-hero-slide.is-active{opacity:1;visibility:visible;transform:scale(1);z-index:2}.zkh-hero-slide picture,.zkh-hero-slide img{display:block;width:100%;height:100%;object-fit:cover}.zkh-hero-empty{display:grid;place-items:center;color:#999}.zkh-hero-controls{display:flex;justify-content:center;gap:8px;margin-top:16px;direction:ltr}.zkh-hero-dot{width:42px;height:4px;padding:0;border:0;border-radius:99px;background:#ececee;overflow:hidden;cursor:pointer}.zkh-hero-dot i{display:block;width:0;height:100%;background:var(--zkh-red);border-radius:inherit}.zkh-hero-dot.is-active i{animation:zkhHeroProgress 4s linear forwards}@keyframes zkhHeroProgress{to{width:100%}}
/* categories circular premium */
.zkh-categories .zkh-category-card,.zkh-category-card{border:0!important;background:transparent!important;box-shadow:none!important;text-align:center}.zkh-category-card img,.zkh-category-card-media{border-radius:50%!important;aspect-ratio:1!important;object-fit:cover;background:linear-gradient(145deg,#fafafa,#f1f1f2);border:1px solid rgba(0,0,0,.06);transition:.4s cubic-bezier(.2,.8,.2,1)}.zkh-category-card:hover img,.zkh-category-card:hover .zkh-category-card-media{transform:translateY(-6px) scale(1.035);box-shadow:0 18px 45px rgba(0,0,0,.10);border-color:rgba(237,28,36,.32)}
/* product cards */
.zkh-product-card{border:1px solid rgba(15,15,18,.07)!important;border-radius:26px!important;background:rgba(255,255,255,.88)!important;box-shadow:0 10px 35px rgba(0,0,0,.035)!important;overflow:hidden;transition:transform .4s cubic-bezier(.2,.8,.2,1),box-shadow .4s,border-color .4s;position:relative}.zkh-product-card:after{content:"";position:absolute;right:20%;left:20%;bottom:0;height:2px;background:var(--zkh-red);transform:scaleX(0);transition:.4s;border-radius:3px}.zkh-product-card:hover{transform:translateY(-8px);box-shadow:0 24px 65px rgba(0,0,0,.10)!important;border-color:rgba(237,28,36,.16)!important}.zkh-product-card:hover:after{transform:scaleX(1)}.zkh-product-image{transition:transform .55s cubic-bezier(.2,.8,.2,1)!important}.zkh-product-card:hover .zkh-product-image{transform:scale(1.045)}.zkh-badge--sale{background:var(--zkh-red)!important;border-radius:99px!important}.zkh-btn--card{border-radius:14px!important;transition:.25s!important}.zkh-btn--card:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(237,28,36,.2)}
/* hide ugly WC view-cart link */
a.added_to_cart.wc-forward{display:none!important}
.zkh-cart-success{position:absolute;inset:auto 12px 12px;z-index:20;padding:12px;border:1px solid rgba(255,255,255,.55);border-radius:18px;background:rgba(18,18,20,.88);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);box-shadow:0 16px 45px rgba(0,0,0,.22);color:#fff;animation:zkhPop .3s ease}.zkh-cart-success strong{display:block;margin-bottom:9px}.zkh-cart-success-actions{display:grid;grid-template-columns:1fr 1fr;gap:7px}.zkh-cart-success a{padding:9px 7px;border-radius:10px;text-align:center;background:rgba(255,255,255,.1);color:#fff;font-size:12px}.zkh-cart-success a:last-child{background:var(--zkh-red)}@keyframes zkhPop{from{opacity:0;transform:translateY(8px) scale(.98)}}
/* promo cinematic */
.zkh-promo-inner{position:relative;min-height:clamp(340px,38vw,520px);border-radius:34px!important;overflow:hidden;background:radial-gradient(circle at 20% 30%,#333 0,#171719 48%,#0c0c0d 100%)!important;box-shadow:0 28px 80px rgba(0,0,0,.18);isolation:isolate}.zkh-promo-media{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;overflow:hidden}.zkh-promo-media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 25%,rgba(8,8,9,.12) 48%,rgba(8,8,9,.92) 100%)}.zkh-promo-media img{width:100%;height:100%;object-fit:cover;transition:transform .9s cubic-bezier(.2,.8,.2,1);will-change:transform}.zkh-promo-inner:hover .zkh-promo-media img{transform:scale(1.035)}.zkh-promo-content{position:relative;z-index:2;margin-inline-start:auto;width:min(46%,520px);padding:clamp(28px,5vw,70px);color:#fff;align-self:center}.zkh-promo-label{color:var(--zkh-red2)!important;letter-spacing:.12em}.zkh-promo-title{font-size:clamp(28px,3vw,48px)!important}.zkh-promo-content .zkh-btn{border:1px solid rgba(255,255,255,.22)!important;background:rgba(255,255,255,.09)!important;backdrop-filter:blur(14px);border-radius:14px!important}
/* newsletter */
.zkh-newsletter-inner{position:relative;overflow:hidden;border-radius:30px!important;background:linear-gradient(135deg,#171719,#0c0c0d)!important;border:1px solid rgba(255,255,255,.08);box-shadow:0 25px 70px rgba(0,0,0,.14);padding:clamp(30px,5vw,58px)!important}.zkh-newsletter-inner:before{content:"";position:absolute;width:240px;height:240px;border-radius:50%;background:rgba(237,28,36,.22);filter:blur(70px);right:-90px;top:-120px}.zkh-newsletter-title{position:relative;color:#fff!important}.zkh-newsletter-title:after{content:"";display:inline-block;width:28px;height:4px;border-radius:4px;background:var(--zkh-red);margin-inline-start:12px}.zkh-newsletter-form{position:relative;display:flex!important;gap:10px;max-width:720px;margin-inline:auto}.zkh-newsletter-form input{background:rgba(255,255,255,.07)!important;border:1px solid rgba(255,255,255,.15)!important;color:#fff!important;border-radius:16px!important;backdrop-filter:blur(12px);transition:.25s}.zkh-newsletter-form input:focus{border-color:rgba(237,28,36,.75)!important;box-shadow:0 0 0 4px rgba(237,28,36,.10)!important}.zkh-newsletter-form button{background:var(--zkh-red)!important;border-radius:16px!important}
/* footer */
.zkh-footer{position:relative;background:radial-gradient(circle at 85% 0,rgba(237,28,36,.12),transparent 28%),#0b0b0c!important;border-top:1px solid rgba(255,255,255,.08);overflow:hidden}.zkh-footer-grid{gap:18px!important}.zkh-footer-col{padding:24px;border:1px solid rgba(255,255,255,.07);border-radius:22px;background:rgba(255,255,255,.025);backdrop-filter:blur(12px)}.zkh-footer a{transition:.25s}.zkh-footer a:hover{color:#fff!important;transform:translateX(-3px)}.zkh-footer summary:after{color:var(--zkh-red)}.zkh-footer-bottom{border-top:1px solid rgba(255,255,255,.08)!important}
/* floating mobile dock */
@media(max-width:767px){body.zkh-home-body{padding-bottom:92px!important}.zkh-bottom-nav{position:fixed!important;right:4%!important;left:4%!important;bottom:max(12px,env(safe-area-inset-bottom))!important;width:92%!important;height:68px!important;border:1px solid rgba(255,255,255,.72)!important;border-radius:24px!important;background:rgba(255,255,255,.76)!important;backdrop-filter:blur(24px) saturate(160%)!important;-webkit-backdrop-filter:blur(24px) saturate(160%)!important;box-shadow:0 18px 50px rgba(0,0,0,.15)!important;overflow:hidden;z-index:9999}.zkh-bottom-nav:before{content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(255,255,255,.38),transparent 45%);pointer-events:none}.zkh-bottom-nav-item{font-size:10px!important;gap:2px!important;position:relative;z-index:1}.zkh-bottom-nav-item svg{width:22px!important;height:22px!important}.zkh-bottom-nav-item.is-active{color:var(--zkh-red)!important}.zkh-bottom-nav-item.is-active:after{content:"";position:absolute;top:5px;width:18px;height:3px;border-radius:5px;background:var(--zkh-red)}.zkh-cart-count--badge{background:var(--zkh-red)!important}.zkh-hero-v2{margin-top:14px;padding:0 14px}.zkh-hero-slider{aspect-ratio:4/5;border-radius:26px}.zkh-hero-dot{width:30px}.zkh-section{padding-block:42px}.zkh-product-card{border-radius:20px!important}.zkh-promo-inner{min-height:520px;border-radius:28px!important}.zkh-promo-media:after{background:linear-gradient(0deg,rgba(8,8,9,.96) 0,rgba(8,8,9,.65) 42%,transparent 72%)}.zkh-promo-content{width:100%;margin-top:auto;padding:28px!important;align-self:flex-end}.zkh-newsletter-form{flex-direction:column}.zkh-footer-col{padding:18px;border-radius:18px}.zkh-footer-grid{gap:10px!important}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.zkh-product-card,.zkh-product-image,.zkh-promo-media img{transition:none!important}.zkh-hero-dot.is-active i{animation:none;width:100%}}

/* =====================================================================
   V2.1 — Sticky Header + Premium Cart UX + Footer polish
   ===================================================================== */
.zkh-home{
	overflow:visible!important;
	overflow-x:clip!important;
	padding-top:var(--zkh-fixed-header-height,0px);
}
.zkh-header{
	position:fixed!important;
	top:0!important;
	inset-inline:0!important;
	width:100%!important;
	z-index:10000!important;
	background:rgba(255,255,255,.92)!important;
	-webkit-backdrop-filter:blur(20px) saturate(150%);
	backdrop-filter:blur(20px) saturate(150%);
	border-bottom:1px solid rgba(17,17,17,.055);
	box-shadow:0 1px 0 rgba(255,255,255,.7);
	transition:box-shadow .28s ease,background .28s ease,transform .28s ease;
}
.zkh-header.is-scrolled{
	background:rgba(255,255,255,.84)!important;
	box-shadow:0 14px 42px rgba(17,17,17,.09);
}
body.admin-bar .zkh-header{top:32px!important}
@media(max-width:782px){body.admin-bar .zkh-header{top:46px!important}}
@media(max-width:600px){body.admin-bar .zkh-header{top:0!important}}
.zkh-header.is-scrolled .zkh-header-main{box-shadow:none!important}
.zkh-header.is-scrolled .zkh-header-main-inner{padding-block:12px!important}

/* CTA کارت محصول — قرمز برند، نه خاکستری پیش‌فرض */
.zkh-product-card .zkh-btn--card{
	position:relative;
	overflow:hidden;
	background:linear-gradient(135deg,#ef2229 0%,#d9141b 100%)!important;
	color:#fff!important;
	border:1px solid rgba(227,30,36,.28)!important;
	box-shadow:0 9px 22px rgba(227,30,36,.16);
	font-weight:800;
	letter-spacing:-.01em;
}
.zkh-product-card .zkh-btn--card:before{
	content:"";position:absolute;inset:-2px auto -2px -40%;width:32%;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);
	transform:skewX(-18deg);transition:left .55s ease;
}
.zkh-product-card .zkh-btn--card:hover{
	background:linear-gradient(135deg,#f32930,#c90f16)!important;
	box-shadow:0 14px 30px rgba(227,30,36,.25)!important;
	transform:translateY(-2px);
}
.zkh-product-card .zkh-btn--card:hover:before{left:125%}
.zkh-product-card .added_to_cart.wc-forward{display:none!important}

/* پاپ‌آپ سبد خرید سراسری */
.zkh-global-cart-toast{
	position:fixed;z-index:10050;inset-inline-end:clamp(14px,2.5vw,34px);top:calc(var(--zkh-fixed-header-height,84px) + 18px);
	width:min(430px,calc(100vw - 28px));padding:16px;
	border:1px solid rgba(255,255,255,.68);border-radius:24px;
	background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(247,247,248,.82));
	-webkit-backdrop-filter:blur(28px) saturate(175%);backdrop-filter:blur(28px) saturate(175%);
	box-shadow:0 24px 70px rgba(15,15,18,.20),inset 0 1px 0 rgba(255,255,255,.9);
	opacity:0;transform:translateY(-10px) scale(.975);pointer-events:none;
	transition:opacity .25s ease,transform .32s cubic-bezier(.2,.8,.2,1);direction:rtl;font-family:var(--zkh-font);
}
.zkh-global-cart-toast.is-visible{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.zkh-global-cart-toast:before{content:"";position:absolute;top:0;right:24px;left:24px;height:2px;border-radius:0 0 4px 4px;background:linear-gradient(90deg,transparent,var(--zkh-red),transparent)}
.zkh-toast-close{position:absolute!important;top:9px;left:10px!important;width:32px;height:32px;border-radius:50%!important;display:grid!important;place-items:center;background:rgba(17,17,17,.045)!important;color:#666!important;font-size:22px!important;line-height:1!important}
.zkh-toast-top{display:flex;align-items:center;gap:12px;padding-inline-start:32px}
.zkh-toast-top img{width:62px!important;height:62px!important;object-fit:contain!important;background:#fff;border:1px solid rgba(17,17,17,.06);border-radius:16px;padding:5px;flex:none}
.zkh-toast-check{width:48px;height:48px;display:grid;place-items:center;border-radius:50%;background:var(--zkh-red);color:#fff;font-weight:900;font-size:22px;box-shadow:0 10px 24px rgba(227,30,36,.22)}
.zkh-toast-top>div{min-width:0}
.zkh-toast-eyebrow{display:block;color:var(--zkh-red);font-size:11px;font-weight:800;margin-bottom:3px}
.zkh-toast-top strong{display:block;color:#111;font-size:14px;line-height:1.6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.zkh-toast-actions{display:grid;grid-template-columns:.9fr 1fr 1.15fr;gap:7px;margin-top:13px}
.zkh-toast-actions a,.zkh-toast-actions button{min-height:42px;display:flex!important;align-items:center;justify-content:center;border-radius:13px!important;border:1px solid rgba(17,17,17,.08)!important;background:rgba(255,255,255,.7)!important;color:#1a1a1a!important;font-family:inherit!important;font-size:11.5px!important;font-weight:700!important;padding:8px!important;text-align:center}
.zkh-toast-actions .zkh-toast-checkout{background:linear-gradient(135deg,#ef2229,#d9141b)!important;color:#fff!important;border-color:transparent!important;box-shadow:0 8px 20px rgba(227,30,36,.18)}
.zkh-cart-count.is-bumped{animation:zkhCartBump .42s cubic-bezier(.2,.8,.2,1)}
@keyframes zkhCartBump{0%{transform:scale(1)}40%{transform:scale(1.35);box-shadow:0 0 0 6px rgba(227,30,36,.12)}100%{transform:scale(1)}}

/* بنر برند — تایپوگرافی متعادل‌تر و مدرن‌تر */
.zkh-promo-content{width:min(48%,600px)!important;padding:clamp(30px,4.4vw,68px)!important;gap:14px!important}
.zkh-promo-title{max-width:100%!important;width:100%;font-size:clamp(30px,3vw,46px)!important;line-height:1.42!important;letter-spacing:-.035em;text-wrap:balance}
.zkh-promo-label{font-size:12px!important;letter-spacing:.18em!important;font-weight:900!important}
.zkh-promo-description{line-height:1.9!important;color:rgba(255,255,255,.68)!important}
.zkh-promo-content .zkh-btn{margin-top:4px;padding:11px 18px!important;border-color:rgba(255,255,255,.18)!important;background:rgba(255,255,255,.075)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.08);transition:.28s ease!important}
.zkh-promo-inner:hover .zkh-promo-content .zkh-btn{background:var(--zkh-red)!important;border-color:var(--zkh-red)!important;box-shadow:0 12px 30px rgba(227,30,36,.2)}

/* خبرنامه مینیمال‌تر با امضای قرمز */
.zkh-newsletter-inner{
	background:radial-gradient(circle at 88% 15%,rgba(227,30,36,.18),transparent 28%),linear-gradient(135deg,#161617,#0b0b0c)!important;
	border-radius:32px!important;border:1px solid rgba(255,255,255,.09)!important;
	box-shadow:0 26px 80px rgba(0,0,0,.14)!important;
}
.zkh-newsletter-title{font-size:clamp(21px,2.2vw,31px)!important;letter-spacing:-.025em}
.zkh-newsletter-title:after{height:3px!important;width:34px!important}
.zkh-newsletter-form input{height:52px!important;padding-inline:18px!important}
.zkh-newsletter-form button{min-width:116px!important;height:52px!important;font-weight:800!important;box-shadow:0 10px 28px rgba(227,30,36,.20)}

/* فوتر کامل، قابل‌مشاهده و مینیمال */
.zkh-footer{padding-block:58px 22px!important;background:radial-gradient(circle at 85% -5%,rgba(227,30,36,.16),transparent 26%),linear-gradient(180deg,#0d0d0e,#080809)!important}
.zkh-footer-kicker{display:flex;align-items:center;justify-content:center;gap:14px;color:#fff;margin-bottom:28px;font-size:12px;letter-spacing:.08em}
.zkh-footer-kicker span{height:1px;width:min(90px,12vw);background:linear-gradient(90deg,transparent,rgba(227,30,36,.8))}
.zkh-footer-kicker span:last-child{transform:scaleX(-1)}
.zkh-footer-kicker b{font-size:13px;font-weight:800}
.zkh-footer-grid{grid-template-columns:1.25fr 1fr 1fr 1.1fr!important;gap:14px!important;padding-bottom:28px!important;border-bottom:0!important}
.zkh-footer-col{min-height:250px;padding:24px!important;border-radius:24px!important;border:1px solid rgba(255,255,255,.075)!important;background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.015))!important;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);box-shadow:inset 0 1px 0 rgba(255,255,255,.035)}
.zkh-footer-col h3{position:relative;margin:0 0 18px;color:#fff;font-size:14px;font-weight:800;padding-inline-start:14px}
.zkh-footer-col h3:before{content:"";position:absolute;inset-inline-start:0;top:50%;width:4px;height:18px;border-radius:4px;background:var(--zkh-red);transform:translateY(-50%)}
.zkh-footer-col ul{display:block!important;margin:0!important;padding:0!important}
.zkh-footer-col ul li{margin-bottom:11px!important;font-size:13px!important;color:#bdbdbf}
.zkh-footer-col ul li:last-child{margin-bottom:0!important}
.zkh-footer-col a{display:inline-flex;align-items:center;gap:7px;position:relative;color:#bdbdbf!important}
.zkh-footer-col>ul>li>a:after{content:"";position:absolute;right:0;bottom:-3px;width:0;height:1px;background:var(--zkh-red);transition:width .25s ease}
.zkh-footer-col>ul>li>a:hover:after{width:100%}
.zkh-footer-about .zkh-logo-text{font-size:25px!important}
.zkh-footer-about p{margin:14px 0 18px!important;color:#aaa!important;line-height:2!important;max-width:34ch!important}
.zkh-footer-shop-cta{display:inline-flex!important;align-items:center;gap:7px!important;padding:9px 13px;border-radius:12px;background:rgba(227,30,36,.10);border:1px solid rgba(227,30,36,.18);color:#fff!important;font-size:12px!important;font-weight:700}
.zkh-footer-shop-cta .zkh-icon{width:14px;height:14px;color:var(--zkh-red)}
.zkh-footer-contact .zkh-icon{color:var(--zkh-red)!important;width:17px!important;height:17px!important}
.zkh-footer-social{margin-top:18px!important;padding-top:16px;border-top:1px solid rgba(255,255,255,.07)}
.zkh-footer-social a{border:1px solid rgba(255,255,255,.09)!important;background:rgba(255,255,255,.03);padding:7px 11px!important;font-size:11px!important}
.zkh-footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:14px;padding-top:18px!important;border-top:1px solid rgba(255,255,255,.07)!important;text-align:start!important}
.zkh-footer-bottom p{margin:0}
.zkh-footer-signature{display:flex;align-items:center;gap:8px;color:#666;font-size:10px;letter-spacing:.14em;direction:ltr}
.zkh-footer-signature i{width:18px;height:2px;background:var(--zkh-red);border-radius:2px}

@media(max-width:1023px){
	.zkh-footer-grid{grid-template-columns:1fr 1fr!important}
	.zkh-footer-col{min-height:0}
}
@media(max-width:767px){
	.zkh-global-cart-toast{top:auto!important;bottom:calc(92px + env(safe-area-inset-bottom,0px));inset-inline:14px!important;width:auto!important;border-radius:22px;padding:14px}
	.zkh-toast-actions{grid-template-columns:1fr 1fr}.zkh-toast-continue{grid-column:1/-1;order:3}
	.zkh-promo-content{width:100%!important;padding:26px!important}.zkh-promo-title{font-size:clamp(27px,8vw,38px)!important;line-height:1.45!important}
	.zkh-footer{padding-block:42px 108px!important}.zkh-footer-kicker{margin-bottom:18px}.zkh-footer-grid{grid-template-columns:1fr!important;gap:10px!important}.zkh-footer-col{padding:18px!important;border-radius:20px!important}.zkh-footer-col h3{margin-bottom:13px}.zkh-footer-bottom{flex-direction:column;align-items:flex-start;padding-inline:4px}.zkh-footer-signature{display:none}
}
@media(prefers-reduced-motion:reduce){.zkh-global-cart-toast,.zkh-product-card .zkh-btn--card,.zkh-cart-count{transition:none!important;animation:none!important}}


/* V2.1.1 — Official eNamad in footer */
.zkh-footer-trust{margin-top:18px;padding-top:16px;border-top:1px solid rgba(255,255,255,.07);display:flex;align-items:center;justify-content:space-between;gap:14px}
.zkh-footer-trust-title{color:#bdbdbf;font-size:12px;font-weight:700;white-space:nowrap}
.zkh-footer .zkh-enamad{flex:0 0 76px;width:76px;height:76px;display:flex!important;align-items:center;justify-content:center;padding:7px!important;border-radius:16px;background:rgba(255,255,255,.96)!important;border:1px solid rgba(255,255,255,.14)!important;box-shadow:0 10px 28px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.8);transform:none!important;overflow:hidden;transition:transform .25s ease,box-shadow .25s ease!important}
.zkh-footer .zkh-enamad:hover{transform:translateY(-3px)!important;box-shadow:0 14px 34px rgba(0,0,0,.22),0 0 0 1px rgba(227,30,36,.12)}
.zkh-footer .zkh-enamad:after{display:none!important}
.zkh-footer .zkh-enamad img{display:block!important;width:auto!important;height:auto!important;max-width:62px!important;max-height:62px!important;object-fit:contain!important;cursor:pointer}
@media(max-width:767px){.zkh-footer-trust{margin-top:15px;padding-top:14px}.zkh-footer .zkh-enamad{flex-basis:72px;width:72px;height:72px;border-radius:15px}.zkh-footer .zkh-enamad img{max-width:58px!important;max-height:58px!important}}
