/* =========================================================
   Dezhoosh Shop — Glass UI 2.0 Edition
   شیشه‌ای، لایه‌ای، با نور محیطی و میکرو-اینترکشن پریمیوم
   ========================================================= */

.dz-shop {
	/* ---------- پالت ---------- */
	--dz-primary: #0f9d8f;
	--dz-primary-dark: #0a5c53;
	--dz-bg: #f3f7f6;
	--dz-ink: #10201e;
	--dz-muted: #5c6f6c;
	--dz-danger: #e0503a;
	--dz-gold: #d79a3a;

	/* ---------- لایه‌های شیشه — همیشه ۳ سطح ---------- */
	--glass: rgba(255, 255, 255, 0.42);
	--glass-strong: rgba(255, 255, 255, 0.64);
	--glass-stronger: rgba(255, 255, 255, 0.82);
	--glass-border: rgba(255, 255, 255, 0.78);

	/* ---------- سایه‌های چندلایه: محیطی + تماسی + هایلایت داخلی ---------- */
	--shadow-sm: 0 2px 8px rgba(16, 40, 38, 0.06), 0 1px 2px rgba(16, 40, 38, 0.05);
	--shadow: 0 10px 26px rgba(10, 59, 53, 0.12), 0 2px 8px rgba(10, 59, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	--shadow-lg: 0 24px 60px -12px rgba(10, 40, 38, 0.28), 0 8px 20px -6px rgba(10, 59, 53, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.55);
	--shadow-float: 0 16px 34px -10px rgba(10, 59, 53, 0.22), 0 4px 12px rgba(10, 59, 53, 0.1);

	/* ---------- شعاع ---------- */
	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 26px;
	--radius-xl: 32px;
	--radius-pill: 999px;

	/* ---------- ایزینگ ---------- */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

	--dz-space-page-top: 180px; /* فاصله از بالای صفحه، زیر هدر سایت */
	--dz-font: "Vazirmatn", Tahoma, sans-serif;

	position: relative;
	isolation: isolate;
	background:
		radial-gradient(680px 360px at 88% -10%, rgba(15, 157, 143, 0.18), transparent 62%),
		radial-gradient(520px 320px at 4% 8%, rgba(10, 92, 83, 0.10), transparent 60%),
		var(--dz-bg);
	color: var(--dz-ink);
	font-family: var(--dz-font);
	direction: rtl;
	margin-top: var(--dz-space-page-top);
	padding-bottom: 64px;
	overflow: clip;
}

.dz-shop * { box-sizing: border-box; }
.dz-shop a { color: inherit; text-decoration: none; }
.dz-shop img { display: block; max-width: 100%; }
.dz-shop ::selection { background: rgba(15, 157, 143, 0.22); color: var(--dz-primary-dark); }

/* ---------- نور محیطی: بلاب‌های شناور پشت صفحه ---------- */
.dz-shop::before,
.dz-shop::after {
	content: "";
	position: fixed;
	z-index: -1;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(60px);
	opacity: 0.55;
}

.dz-shop::before {
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(15, 157, 143, 0.32), transparent 70%);
	top: -160px;
	inset-inline-end: -140px;
	animation: dz-blob-drift 17s ease-in-out infinite;
}

.dz-shop::after {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(10, 92, 83, 0.20), transparent 70%);
	bottom: -120px;
	inset-inline-start: -110px;
	animation: dz-blob-drift 21s ease-in-out infinite reverse;
}

@keyframes dz-blob-drift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-26px, 28px) scale(1.08); }
}

@keyframes dz-fade-up {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero: پنل شیشه‌ای شناور ---------- */
.dz-hero {
	position: relative;
	padding: clamp(16px, 4vw, 24px) clamp(16px, 4vw, 24px) 0;
}

.dz-hero__inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	background: var(--glass-stronger);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	padding: clamp(22px, 4vw, 36px) clamp(18px, 4vw, 32px);
	animation: dz-fade-up 0.6s var(--ease) both;
}

.dz-hero__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), transparent 30%, transparent 70%, rgba(15, 157, 143, 0.3));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.dz-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--dz-muted);
	margin-bottom: 18px;
}

.dz-breadcrumb a { transition: color 0.2s var(--ease); }
.dz-breadcrumb a:hover { color: var(--dz-primary-dark); }
.dz-breadcrumb span:not(.is-current) { color: #9fb0ad; }
.dz-breadcrumb .is-current { color: var(--dz-ink); font-weight: 700; }

.dz-hero__title {
	font-size: clamp(24px, 2.8vw, 30px);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 12px;
}

.dz-hero__desc {
	color: var(--dz-muted);
	max-width: 640px;
	line-height: 1.75;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.dz-hero__count {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--dz-primary-dark);
	background: var(--glass-strong);
	border: 1px solid rgba(15, 157, 143, 0.25);
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-sm);
}

.dz-hero__count::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--dz-primary);
	box-shadow: 0 0 0 3px rgba(15, 157, 143, 0.22);
}

/* ---------- LED نشانگر موجودی ---------- */
.dz-led {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10.5px;
	font-weight: 700;
}

.dz-led__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #b9c4c1;
	display: inline-block;
	transition: box-shadow 0.25s var(--ease);
}

.dz-led--on .dz-led__dot { background: var(--dz-primary); box-shadow: 0 0 0 4px rgba(15, 157, 143, 0.22); }
.dz-led--off .dz-led__dot { background: #b9c4c1; }
.dz-led--on { color: var(--dz-primary-dark); }
.dz-led--off { color: var(--dz-muted); }

.dz-shop .dz-main ul.products li.product { position: relative; }

.dz-shop .dz-main ul.products li.product > .dz-led {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	background: var(--glass-stronger);
	backdrop-filter: blur(10px) saturate(180%);
	-webkit-backdrop-filter: blur(10px) saturate(180%);
	padding: 6px 11px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-sm);
}

.dz-eyebrow {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--dz-primary-dark);
	margin-bottom: 5px;
}

/* ---------- Layout ---------- */
.dz-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(20px, 4vw, 28px) clamp(16px, 4vw, 24px) 0;
	display: grid;
	grid-template-columns: 276px 1fr;
	gap: clamp(16px, 3vw, 24px);
	align-items: start;
}

/* ---------- پنل کنترل (فیلتر) — شیشه قوی ---------- */
.dz-panel {
	position: relative;
	background: var(--glass-stronger);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(22px) saturate(180%);
	-webkit-backdrop-filter: blur(22px) saturate(180%);
	border-radius: var(--radius-lg);
	padding: 22px;
	position: sticky;
	top: 24px;
	box-shadow: var(--shadow);
	animation: dz-fade-up 0.6s var(--ease) both;
	animation-delay: 0.05s;
}

.dz-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.75), transparent 35%, transparent 70%, rgba(15, 157, 143, 0.25));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.dz-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(16, 40, 38, 0.08);
}

.dz-panel__title {
	font-size: 14.5px;
	font-weight: 800;
	margin: 0;
}

.dz-panel__clear {
	font-size: 11.5px;
	color: var(--dz-primary-dark);
	font-weight: 700;
	padding: 5px 10px;
	border-radius: var(--radius-sm);
	background: var(--glass);
	transition: background 0.2s var(--ease), transform 0.2s var(--ease-spring);
}

.dz-panel__clear:hover { background: rgba(15, 157, 143, 0.14); transform: translateY(-1px); }

.dz-panel__section {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(16, 40, 38, 0.08);
}
.dz-panel__section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.dz-panel__close { display: none; }

.dz-panel .widget-title,
.dz-panel .dz-widget__title {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--dz-muted);
	font-weight: 700;
	margin: 0 0 12px;
}

.dz-panel ul { list-style: none; margin: 0; padding: 0; }

.dz-panel .product-categories li a,
.dz-panel .wc-layered-nav-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--dz-ink);
	font-size: 13.5px;
	font-weight: 500;
	padding: 10px 12px;
	margin: 0 -12px;
	border-radius: var(--radius-sm);
	min-height: 40px;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease-spring);
}

.dz-panel .product-categories li a:hover,
.dz-panel .wc-layered-nav-list li a:hover {
	color: var(--dz-primary-dark);
	background: rgba(15, 157, 143, 0.1);
	transform: translateX(-2px);
}

.dz-panel .product-categories li.current-cat > a {
	color: #fff;
	background: linear-gradient(135deg, var(--dz-primary), var(--dz-primary-dark));
	font-weight: 700;
	box-shadow: var(--shadow-sm);
}

.dz-panel .price_slider_wrapper .ui-slider {
	background: rgba(16, 40, 38, 0.1);
	height: 4px;
	border: none;
	border-radius: 4px;
	margin: 20px 4px 0;
	box-shadow: inset 0 1px 3px rgba(16, 40, 38, 0.12);
}

.dz-panel .ui-slider .ui-slider-range {
	background: linear-gradient(90deg, var(--dz-primary), var(--dz-primary-dark));
}

.dz-panel .ui-slider .ui-slider-handle {
	width: 17px;
	height: 17px;
	top: -6.5px;
	background: radial-gradient(circle at 32% 28%, #fff, #eef6f5);
	border: 2px solid var(--dz-primary);
	border-radius: 50%;
	box-shadow: 0 3px 8px rgba(10, 59, 53, 0.28);
	cursor: grab;
	transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
}

.dz-panel .ui-slider .ui-slider-handle:hover {
	transform: scale(1.15);
	box-shadow: 0 0 0 6px rgba(15, 157, 143, 0.18), 0 3px 8px rgba(10, 59, 53, 0.28);
}
.dz-panel .ui-slider .ui-slider-handle:active { cursor: grabbing; }

.dz-panel .price_slider_amount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	font-size: 12px;
	font-weight: 500;
	color: var(--dz-muted);
}

.dz-panel .price_slider_amount .button {
	background: linear-gradient(135deg, var(--dz-primary), var(--dz-primary-dark));
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	padding: 8px 16px;
	min-height: 38px;
	font-family: var(--dz-font);
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(10, 59, 53, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	transition: transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease);
}

.dz-panel .price_slider_amount .button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.dz-panel .wc-layered-nav-rating a { color: var(--dz-ink); font-size: 13.5px; font-weight: 500; }

/* ---------- عناصر فرم بومی (select/input) ---------- */
.dz-shop select,
.dz-shop input[type="text"],
.dz-shop input[type="number"],
.dz-shop input[type="search"],
.dz-shop input[type="email"] {
	background: var(--glass-strong);
	border: 1.5px solid rgba(10, 59, 53, 0.14);
	border-radius: var(--radius-sm);
	padding: 8px 14px;
	font-family: var(--dz-font);
	color: var(--dz-ink);
	box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.dz-shop select:focus,
.dz-shop input:focus {
	border-color: var(--dz-primary);
	outline: none;
	box-shadow: 0 0 0 4px rgba(15, 157, 143, 0.16), var(--shadow-sm);
}

/* ---------- نوار ابزار — پنل شیشه ---------- */
.dz-toolbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-bottom: 22px;
	background: var(--glass-strong);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	border-radius: var(--radius);
	padding: 10px 16px;
	box-shadow: var(--shadow);
	animation: dz-fade-up 0.6s var(--ease) both;
	animation-delay: 0.1s;
}

.dz-toolbar__filter-btn {
	display: none;
	align-items: center;
	gap: 8px;
	background: var(--glass-strong);
	border: 1.5px solid var(--glass-border);
	color: var(--dz-ink);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	min-height: 44px;
	font-family: var(--dz-font);
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease);
}

.dz-toolbar__filter-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.dz-toolbar__filter-btn span {
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: var(--dz-ink);
	display: block;
}

.dz-toolbar__sort .woocommerce-result-count {
	color: var(--dz-muted);
	font-size: 13px;
	font-weight: 500;
	margin: 0;
	flex: 1 1 160px;
	min-width: 0;
}

.dz-toolbar__sort {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 16px;
	width: 100%;
}

.dz-toolbar__sort select.orderby {
	flex: 1 1 180px;
	min-width: 0;
	max-width: 260px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230a5c53' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 12px center;
	font-size: 13px;
	font-weight: 600;
	padding-inline-end: 34px;
	min-height: 40px;
	appearance: none;
	cursor: pointer;
}

/* ---------- گرید محصولات ---------- */
.dz-shop .dz-main ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(226px, 1fr));
	gap: 20px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.dz-shop .dz-main ul.products li.product {
	position: relative;
	overflow: hidden;
	background: var(--glass);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border-radius: var(--radius);
	padding: 14px 14px 16px;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.25s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease-spring), background 0.3s var(--ease);
	animation: dz-fade-up 0.5s var(--ease) both;
}

.dz-shop .dz-main ul.products li.product:nth-child(1) { animation-delay: 0.03s; }
.dz-shop .dz-main ul.products li.product:nth-child(2) { animation-delay: 0.07s; }
.dz-shop .dz-main ul.products li.product:nth-child(3) { animation-delay: 0.11s; }
.dz-shop .dz-main ul.products li.product:nth-child(4) { animation-delay: 0.15s; }
.dz-shop .dz-main ul.products li.product:nth-child(5) { animation-delay: 0.19s; }
.dz-shop .dz-main ul.products li.product:nth-child(6) { animation-delay: 0.23s; }

.dz-shop .dz-main ul.products li.product::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
	background-size: 220% 100%;
	background-position: 140% 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s var(--ease);
}

.dz-shop .dz-main ul.products li.product:hover::after {
	opacity: 1;
	animation: dz-shimmer 1.1s ease-out;
}

@keyframes dz-shimmer {
	0% { background-position: 140% 0; }
	100% { background-position: -40% 0; }
}

.dz-shop .dz-main ul.products li.product:hover {
	background: var(--glass-strong);
	border-color: rgba(15, 157, 143, 0.35);
	box-shadow: var(--shadow-float);
	transform: translateY(-5px);
}

.dz-shop .dz-main ul.products li.product a img {
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.5);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin-bottom: 14px;
	transition: opacity 0.2s var(--ease), transform 0.4s var(--ease-spring);
}

.dz-shop .dz-main ul.products li.product:hover a img { opacity: 1; transform: scale(1.03); }

.dz-shop a:focus-visible,
.dz-shop button:focus-visible,
.dz-shop select:focus-visible,
.dz-shop input:focus-visible {
	outline: 2px solid var(--dz-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

.dz-shop .dz-main ul.products li.product .woocommerce-loop-product__title {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--dz-ink);
	margin: 0 0 8px;
	line-height: 1.5;
}

.dz-shop .dz-main ul.products li.product .price {
	font-size: 16px;
	color: var(--dz-ink);
	font-weight: 800;
	letter-spacing: -0.01em;
}

.dz-shop .dz-main ul.products li.product .price del {
	color: #9fb0ad;
	opacity: 1;
	margin-inline-end: 7px;
	font-size: 12.5px;
	font-weight: 400;
	text-decoration-color: var(--dz-danger);
}

.dz-shop .dz-main ul.products li.product .price ins { text-decoration: none; }

.dz-shop .dz-main ul.products li.product .star-rating {
	font-size: 12px;
	margin: 6px 0;
	color: var(--dz-gold);
}

/* ---------- دکمه‌ها — سراسری ---------- */
.dz-shop .button {
	border-radius: var(--radius-sm);
	border: 1.5px solid var(--glass-border);
	background: var(--glass-strong);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 9px 18px;
	font-family: var(--dz-font);
	font-weight: 700;
	font-size: 13px;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}

.dz-shop .button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.dz-shop .dz-main ul.products li.product .button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	margin-top: 14px;
	background: linear-gradient(135deg, var(--dz-ink), #1c332f);
	border: none;
	color: #fff;
	box-shadow: 0 8px 20px rgba(16, 32, 30, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	text-align: center;
}

.dz-shop .dz-main ul.products li.product .button:hover {
	background: linear-gradient(135deg, var(--dz-primary), var(--dz-primary-dark));
	box-shadow: 0 10px 24px rgba(10, 59, 53, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.dz-shop .dz-main ul.products li.product .button:active { transform: translateY(0); }

.dz-shop .dz-main ul.products li.product .button.added,
.dz-shop .dz-main ul.products li.product .added_to_cart {
	background: rgba(15, 157, 143, 0.14);
	border: 1.5px solid rgba(15, 157, 143, 0.4);
	color: var(--dz-primary-dark);
	box-shadow: var(--shadow-sm);
}

/* ---------- صفحه‌بندی ---------- */
.dz-main nav.woocommerce-pagination ul {
	border: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 34px;
}

.dz-main nav.woocommerce-pagination ul li { border: none; }

.dz-main nav.woocommerce-pagination ul li a,
.dz-main nav.woocommerce-pagination ul li span {
	background: var(--glass-strong);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--dz-ink);
	border-radius: var(--radius-sm);
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease);
}

.dz-main nav.woocommerce-pagination ul li a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.dz-main nav.woocommerce-pagination ul li span.current {
	background: linear-gradient(135deg, var(--dz-primary), var(--dz-primary-dark));
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 18px rgba(10, 59, 53, 0.3);
}

/* ---------- حالت خالی ---------- */
.dz-empty {
	background: var(--glass-strong);
	border: 1px dashed rgba(10, 59, 53, 0.22);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 48px 24px;
	text-align: center;
	color: var(--dz-muted);
	box-shadow: var(--shadow-sm);
}

/* ---------- پنل شناور موبایل ---------- */
.dz-panel-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10, 25, 23, 0.45);
	backdrop-filter: blur(2px);
	z-index: 40;
	opacity: 0;
	transition: opacity 0.3s var(--ease);
}

.dz-panel-overlay.is-open { opacity: 1; }

@media (max-width: 900px) {
	.dz-layout { grid-template-columns: 1fr; }

	.dz-toolbar__filter-btn { display: inline-flex; }

	.dz-panel {
		position: fixed;
		top: 0;
		right: 0;
		height: 100%;
		width: 86%;
		max-width: 320px;
		z-index: 50;
		border-radius: 0;
		background: var(--glass-stronger);
		backdrop-filter: blur(28px) saturate(190%);
		-webkit-backdrop-filter: blur(28px) saturate(190%);
		box-shadow: var(--shadow-lg);
		transform: translateX(100%);
		transition: transform 0.35s var(--ease-spring);
		overflow-y: auto;
		animation: none;
	}

	.dz-panel.is-open { transform: translateX(0); }

	.dz-panel__close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		margin-inline-start: auto;
		background: var(--glass-strong);
		border: 1px solid var(--glass-border);
		border-radius: 50%;
		color: var(--dz-muted);
		font-size: 16px;
		cursor: pointer;
		margin-bottom: 12px;
		box-shadow: var(--shadow-sm);
		transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease-spring);
	}

	.dz-panel__close:hover { background: rgba(15, 157, 143, 0.14); color: var(--dz-primary-dark); transform: rotate(90deg); }

	.dz-panel-overlay.is-open { display: block; }
}

@media (max-width: 520px) {
	.dz-hero__inner { border-radius: var(--radius-lg); }
	.dz-toolbar__filter-btn { flex: 1 1 auto; justify-content: center; }
	ul.products { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
}

/* ---------- احترام به prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.dz-shop,
	.dz-shop *,
	.dz-shop *::before,
	.dz-shop *::after {
		animation: none !important;
		transition: none !important;
	}
}
