/* ==========================================================================
   GrowDeshi — Shop archive (redesign)
   Loaded ONLY on the shop / product-category / product-tag / product-search
   archives (see inc/woocommerce.php → growdeshi_woo_enqueue_assets).
   Brand tokens come from style.css :root (--c-*, --container-max, --container-pad).
   ========================================================================== */

/* --------------------------------------------------------------------------
   01 · Shop hero (split: text + illustration) + trust strip
   -------------------------------------------------------------------------- */
.shop-hero {
	position: relative;
	overflow: hidden;
	background: #2D6A4F;
	isolation: isolate;
}
.shop-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(60% 80% at 100% 100%, rgba(82, 183, 136, 0.32) 0%, rgba(45, 106, 79, 0) 60%),
		radial-gradient(40% 60% at 0% 0%, rgba(159, 225, 203, 0.18) 0%, rgba(45, 106, 79, 0) 70%);
}
.shop-hero__dotgrid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.55;
	background-image: radial-gradient(rgba(216, 243, 220, 0.08) 1px, transparent 1px);
	background-size: 22px 22px;
}
.shop-hero__leaf {
	position: absolute;
	left: -40px;
	top: -48px;
	width: min(360px, 40vw);
	height: auto;
	opacity: 0.06;
	pointer-events: none;
	z-index: 0;
}
.shop-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: clamp(40px, 6vw, 56px) var(--container-pad);
	display: grid;
	gap: 32px;
	align-items: center;
}
@media (min-width: 1024px) {
	.shop-hero__inner {
		grid-template-columns: 1.6fr 1fr;
	}
}
.shop-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-bengali);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: #9FE1CB;
}
.shop-hero__eyebrow-rule {
	width: 20px;
	height: 1px;
	background: #9FE1CB;
	opacity: 0.5;
}
.shop-hero__title {
	font-family: var(--font-bengali);
	font-weight: 800;
	color: #D8F3DC;
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.18;
	letter-spacing: -0.6px;
	text-wrap: balance;
	margin: 12px 0 0;
}
.shop-hero__subtitle {
	font-family: var(--font-bengali);
	color: #9FE1CB;
	font-size: clamp(14px, 1.2vw, 17px);
	line-height: 1.65;
	max-width: 560px;
	margin: 14px 0 0;
}
.shop-hero__art {
	display: none;
}
@media (min-width: 1024px) {
	.shop-hero__art {
		display: block;
	}
}
.shop-hero__art-svg,
.shop-hero__art-img {
	width: 100%;
	height: auto;
	display: block;
}

.shop-trust-strip {
	position: relative;
	z-index: 1;
	background: #1A2E24;
}
.shop-trust-strip__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	overflow-x: auto;
	scrollbar-width: none;
}
.shop-trust-strip__inner::-webkit-scrollbar {
	display: none;
}
@media (min-width: 768px) {
	.shop-trust-strip__inner {
		justify-content: space-between;
		min-height: 40px;
	}
}
.shop-trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	font-family: var(--font-bengali);
	font-size: 12px;
	color: #9FE1CB;
	white-space: nowrap;
}
.shop-trust-chip .ph {
	color: #52B788;
	font-size: 15px;
}

/* --------------------------------------------------------------------------
   02 · Archive layout (sidebar + main) + sticky filter sidebar
   -------------------------------------------------------------------------- */
.shop-archive {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: clamp(28px, 4vw, 44px) var(--container-pad);
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 1024px) {
	.shop-archive { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
	.shop-sidebar { position: sticky; top: calc(var(--header-h, 72px) + 16px); }
}
.shop-sidebar__search { position: relative; margin-bottom: 16px; }
.shop-sidebar__search .ph { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #0F6E56; font-size: 16px; }
.shop-sidebar__search input {
	width: 100%; height: 44px; border: 1px solid var(--c-line); border-radius: 12px;
	padding: 0 14px 0 40px; font-family: var(--font-bengali); font-size: 13.5px; color: var(--c-soil); background: #fff;
}
.shop-sidebar__search input:focus { outline: none; border-color: #52B788; }

.shop-filters { background: #fff; border: 0.5px solid var(--c-line); border-radius: 14px; padding: 20px; }
.shop-filter { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 0.5px dashed var(--c-line); }
.shop-filter:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.shop-filter__label {
	font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
	text-transform: uppercase; color: #0F6E56; margin-bottom: 12px;
}

/* Custom checkbox row (category / brand) */
.shop-check { position: relative; display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-family: var(--font-bengali); font-size: 13.5px; color: #0F6E56; }
.shop-check input { position: absolute; opacity: 0; width: 18px; height: 18px; margin: 0; cursor: pointer; }
.shop-check__box { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid #B4B2A9; background: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s, border-color .15s; }
.shop-check__box .ph { font-size: 11px; color: #fff; opacity: 0; }
.shop-check input:checked + .shop-check__box { background: #2D6A4F; border-color: #2D6A4F; }
.shop-check input:checked + .shop-check__box .ph { opacity: 1; }
.shop-check input:checked ~ .shop-check__text { color: #2D6A4F; font-weight: 600; }
.shop-check__text { flex: 1; }
.shop-check__count { font-family: var(--font-ui); font-size: 11.5px; color: #9C9A92; }

/* Scrollable list for long category / brand filters (capped on desktop) */
.shop-filter__scroll {
	max-height: 300px; overflow-y: auto; overscroll-behavior: contain;
	margin-right: -8px; padding-right: 8px;
	scrollbar-width: thin; scrollbar-color: var(--c-line-strong) transparent;
}
.shop-filter__scroll::-webkit-scrollbar { width: 6px; }
.shop-filter__scroll::-webkit-scrollbar-track { background: transparent; }
.shop-filter__scroll::-webkit-scrollbar-thumb { background: var(--c-line-strong); border-radius: 999px; }
.shop-filter__scroll::-webkit-scrollbar-thumb:hover { background: #B4B2A9; }

/* Price dual-range */
.shop-range { position: relative; height: 28px; }
.shop-range__track { position: absolute; left: 0; right: 0; top: 12px; height: 4px; background: var(--c-line); border-radius: 999px; }
.shop-range__fill { position: absolute; top: 0; bottom: 0; background: #52B788; border-radius: 999px; }
.shop-range input[type=range] { -webkit-appearance: none; appearance: none; position: absolute; left: 0; right: 0; top: 8px; width: 100%; height: 4px; background: transparent; pointer-events: none; margin: 0; }
.shop-range input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 999px; background: #fff; border: 2px solid #2D6A4F; box-shadow: 0 1px 3px rgba(45,106,79,0.25); pointer-events: auto; cursor: pointer; }
.shop-range input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 999px; background: #fff; border: 2px solid #2D6A4F; box-shadow: 0 1px 3px rgba(45,106,79,0.25); pointer-events: auto; cursor: pointer; }
.shop-range { margin: 6px 9px 0; }
.shop-range__readout { margin-top: 14px; font-family: var(--font-bengali); font-size: 13px; font-weight: 700; color: #2D6A4F; text-align: center; }
.shop-range__readout .shop-range__dash { color: #9C9A92; font-weight: 500; margin: 0 4px; }
.shop-range__inputs { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.shop-range__field { flex: 1; display: flex; align-items: center; gap: 4px; height: 36px; padding: 0 10px; border: 1px solid var(--c-line); border-radius: 10px; background: #fff; transition: border-color .15s; }
.shop-range__field:focus-within { border-color: #52B788; }
.shop-range__cur { font-family: var(--font-bengali); font-size: 12px; color: #9C9A92; flex-shrink: 0; }
.shop-range__inputs input { width: 100%; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--c-soil); padding: 0; -moz-appearance: textfield; }
.shop-range__inputs input::-webkit-outer-spin-button, .shop-range__inputs input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.shop-range__sep { color: #9C9A92; font-size: 12px; flex-shrink: 0; }

/* Season pills */
.shop-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-pill { position: relative; cursor: pointer; }
.shop-pill input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.shop-pill span { display: inline-flex; align-items: center; height: 32px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--c-line); background: #fff; color: #0F6E56; font-family: var(--font-bengali); font-size: 12.5px; font-weight: 600; transition: background .15s, color .15s, border-color .15s; }
.shop-pill input:checked + span { background: #2D6A4F; color: #D8F3DC; border-color: #2D6A4F; }

/* Rating radios */
.shop-rate { position: relative; display: flex; align-items: center; gap: 8px; padding: 6px 8px; margin: 0 -8px; border-radius: 8px; cursor: pointer; color: #6B6960; font-family: var(--font-bengali); font-size: 12.5px; }
.shop-rate input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.shop-rate input:checked ~ .shop-rate__text { color: #2D6A4F; font-weight: 600; }
.shop-rate:has(input:checked) { background: #F6F4EF; }

.shop-sidebar__actions { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.shop-apply { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; border: none; border-radius: 12px; background: #2D6A4F; color: #D8F3DC; font-family: var(--font-bengali); font-weight: 700; font-size: 13.5px; cursor: pointer; box-shadow: var(--c-card-shadow); transition: background .18s; }
.shop-apply:hover { background: #085041; }
.shop-clear { display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 36px; color: #52B788; font-family: var(--font-bengali); font-size: 13px; text-decoration: none; }
.shop-clear:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   03 · Toolbar + active chips
   -------------------------------------------------------------------------- */
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 0.5px solid var(--c-line); border-radius: 14px; padding: 12px 18px; margin-bottom: 16px; }
.shop-toolbar__count { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-bengali); font-size: 13px; color: #6B6960; }
.shop-toolbar__count .ph { color: #52B788; font-size: 16px; }
.shop-toolbar__count strong { color: #2D6A4F; }
.shop-toolbar__left { display: flex; align-items: center; gap: 12px; }
.shop-toolbar__right { display: flex; align-items: center; gap: 10px; }
/* WooCommerce's `.woocommerce-page label { margin-bottom:.7em }` would push these label
   controls off-centre inside their flex rows — zero it (scoped to beat that specificity). */
.shop-archive .shop-sort, .shop-archive .shop-range__field { margin: 0; }
.shop-sort { display: inline-flex; align-items: center; }
.shop-sort__select { display: block; }
.shop-sort__select {
	-webkit-appearance: none; appearance: none; height: 38px; border: 1px solid var(--c-line); border-radius: 10px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%232D6A4F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center;
	padding: 0 36px 0 14px; font-family: var(--font-bengali); font-size: 13px; font-weight: 600; color: #2D6A4F; cursor: pointer;
}
.shop-sort__select:focus { outline: none; border-color: #52B788; }
.shop-view { display: inline-flex; border: 1px solid var(--c-line); border-radius: 10px; overflow: hidden; }
.shop-view__btn { width: 36px; height: 36px; border: none; background: #fff; color: #6B6960; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.shop-view__btn.is-active { background: #2D6A4F; color: #D8F3DC; }
@media (max-width: 1023px) { .shop-view { display: none; } }

.shop-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.shop-chip { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 6px 0 12px; border-radius: 999px; background: #D8F3DC; color: #0F6E56; font-family: var(--font-bengali); font-size: 12px; font-weight: 600; text-decoration: none; }
.shop-chip .ph { font-size: 10px; background: rgba(45,106,79,0.18); border-radius: 999px; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; }

/* --------------------------------------------------------------------------
   04 · Product grid + card
   -------------------------------------------------------------------------- */
.shop-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
	.shop-grid[data-view="3"] { grid-template-columns: repeat(3, 1fr); }
	.shop-grid[data-view="2"] { grid-template-columns: repeat(2, 1fr); }
}

.pcard { display: flex; flex-direction: column; background: #fff; border: 0.5px solid var(--c-line); border-radius: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s, transform .2s; }
.pcard:hover { border-color: #52B788; box-shadow: 0 4px 12px rgba(45,106,79,0.12); transform: translateY(-2px); }
.pcard__media { position: relative; aspect-ratio: 4 / 3; background: #D8F3DC; overflow: hidden; }
.pcard__media::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(45,106,79,0.06) 1px, transparent 1px); background-size: 14px 14px; }
.pcard__media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 60%); }
.pcard__media-link { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; padding: 14px; }
.pcard__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.pcard:hover .pcard__img { transform: scale(1.04); }
.pcard__badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; border-radius: 999px; padding: 4px 10px; font-family: var(--font-ui); font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; }
.pcard__badge--sale { background: #E63946; color: #fff; }
.pcard__badge--new { background: #2D6A4F; color: #D8F3DC; }
.pcard__badge--popular { background: #F4A261; color: #1A2E24; }
.pcard__wish { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border: none; border-radius: 999px; background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); box-shadow: 0 1px 3px rgba(45,106,79,0.12); cursor: pointer; display: flex; align-items: center; justify-content: center; color: #5C4033; font-size: 17px; transition: transform .15s, color .15s; }
.pcard__wish:hover { transform: scale(1.08); }
.pcard__wish.is-active { color: #E63946; }
.pcard__season { position: absolute; bottom: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; border-radius: 999px; padding: 3px 9px; font-family: var(--font-bengali); font-size: 10.5px; font-weight: 600; background: #2D6A4F; color: #D8F3DC; }
.pcard__zoom { position: absolute; bottom: 12px; right: 12px; z-index: 2; width: 32px; height: 32px; border: none; border-radius: 999px; background: rgba(26,46,36,0.85); color: #D8F3DC; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; opacity: 0; transition: opacity .2s; }
.pcard:hover .pcard__zoom { opacity: 1; }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 14px; }
.pcard__cat { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cat, #52B788); }
.pcard__cat [lang="bn"] { text-transform: none; }
.pcard__title { font-family: var(--font-bengali); font-weight: 700; font-size: 15px; line-height: 1.35; color: var(--c-soil); margin-top: 6px; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard__title:hover { color: #2D6A4F; }
.pcard__sub { font-family: var(--font-ui); font-size: 11.5px; color: #9C9A92; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard__rating { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-family: var(--font-ui); font-size: 12px; color: #6B6960; }
.pcard__rating strong { color: var(--c-soil); }
.pcard__reviews { color: #9C9A92; }
.gd-stars { display: inline-flex; gap: 1px; font-size: 13px; }
.gd-stars .ph { color: #D9D5C7; }
.gd-stars .ph-fill { color: #F4A261; }
.pcard__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 10px; font-family: var(--font-bengali); }
.pcard__price-now { font-weight: 800; font-size: 19px; color: #2D6A4F; }
.pcard__price-was { font-size: 13px; color: #9C9A92; text-decoration: line-through; }
.pcard__price-save { font-family: var(--font-ui); font-size: 10px; font-weight: 700; background: #FCEBEB; color: #E63946; border-radius: 999px; padding: 2px 6px; }
.pcard__stock { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-family: var(--font-bengali); font-size: 12px; font-weight: 500; }
.pcard__stock .ph { font-size: 14px; }
.pcard__stock--in { color: #52B788; }
.pcard__stock--low { color: #F4A261; }
.pcard__stock--out { color: #E63946; }
.pcard__add { margin-top: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 40px; border: none; border-radius: 8px; background: #2D6A4F; color: #D8F3DC; font-family: var(--font-bengali); font-weight: 600; font-size: 12.5px; cursor: pointer; transition: background .18s, transform .1s; }
.pcard__add:hover { background: #1A2E24; }
.pcard__add:active { transform: scale(.98); }
.pcard__add .ph { font-size: 15px; }
.pcard__add.is-disabled { background: #F6F4EF; color: #9C9A92; border: 1px solid var(--c-line); cursor: not-allowed; }

/* --------------------------------------------------------------------------
   05 · Pagination + empty state
   -------------------------------------------------------------------------- */
.shop-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; }
.shop-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; gap: 4px; min-width: 36px; height: 36px; padding: 0 10px; border-radius: 8px; font-family: var(--font-ui); font-size: 13px; font-weight: 700; color: var(--c-soil); text-decoration: none; }
.shop-pagination a.page-numbers:hover { background: #F6F4EF; }
.shop-pagination .page-numbers.current { background: #2D6A4F; color: #fff; border-radius: 999px; }
.shop-pagination .page-numbers.dots { color: #9C9A92; }
.shop-pagination .prev, .shop-pagination .next { color: #52B788; }
.shop-empty { text-align: center; padding: 64px 20px; color: #6B6960; }
.shop-empty .ph { font-size: 40px; color: #9FE1CB; }
.shop-empty p { font-family: var(--font-bengali); margin: 12px 0 16px; }

/* AJAX loading state — dim the results and show a spinner while fetching */
.shop-results { position: relative; min-height: 200px; }
.shop-results.is-loading { pointer-events: none; }
.shop-results.is-loading [data-shop-grid] { opacity: 0.45; transition: opacity .15s; }
.shop-results.is-loading::after {
	content: ""; position: absolute; top: 80px; left: 50%; width: 34px; height: 34px;
	margin-left: -17px; border-radius: 999px; border: 3px solid var(--c-mint-mid);
	border-top-color: #2D6A4F; animation: gd-shop-spin .7s linear infinite; z-index: 5;
}
@keyframes gd-shop-spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   06 · Grid chrome — wide kit card, featured strip, help card
   -------------------------------------------------------------------------- */
.pcard--featured { grid-column: 1 / -1; }
@media (min-width: 1024px) { .shop-grid[data-view="3"] .pcard--featured { grid-column: span 2; } }
.pcard--featured__media { aspect-ratio: auto; }
@media (min-width: 560px) {
	.pcard--featured { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
	.pcard--featured__media { min-height: 300px; }
}
.pcard--featured__tag { position: absolute; bottom: 12px; left: 12px; z-index: 2; font-family: var(--font-ui); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; color: #0F6E56; }
.pcard--featured__body { padding: 20px; }
.pcard--featured__title { display: block; font-family: var(--font-bengali); font-weight: 800; font-size: 21px; line-height: 1.3; letter-spacing: -0.4px; color: #1A2E24; text-decoration: none; margin-top: 6px; }
.pcard--featured__title:hover { color: #2D6A4F; }
.pcard--featured__contents { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pcard--featured__pill { display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px; border-radius: 999px; background: #F6F4EF; border: 0.5px solid var(--c-line); color: #0F6E56; font-family: var(--font-bengali); font-size: 11.5px; font-weight: 600; }
.pcard--featured__dot { width: 4px; height: 4px; border-radius: 999px; background: #52B788; }
.pcard--featured__price .pcard__price-now { font-size: 28px; }
.pcard--featured__cta { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.pcard--featured__cta .pcard__add { flex: 1; margin-top: 0; }
.pcard--featured__view { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; border: 1px solid var(--c-line); border-radius: 8px; background: #fff; color: #0F6E56; font-family: var(--font-bengali); font-size: 12.5px; font-weight: 600; text-decoration: none; }
.pcard--featured__view:hover { background: #F6F4EF; }

/* Featured strip */
.shop-strip { position: relative; grid-column: 1 / -1; overflow: hidden; border-radius: 18px; background: #1A2E24; margin: 8px 0; isolation: isolate; }
.shop-strip__dotgrid { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; background-image: radial-gradient(rgba(216,243,220,0.08) 1px, transparent 1px); background-size: 22px 22px; }
.shop-strip__leaf { position: absolute; right: -32px; bottom: -48px; width: 260px; height: 260px; opacity: 0.06; pointer-events: none; }
.shop-strip__inner { position: relative; z-index: 1; display: grid; gap: 24px; align-items: center; padding: clamp(22px, 3vw, 28px); }
@media (min-width: 1024px) { .shop-strip__inner { grid-template-columns: 1.5fr 1fr; } }
.shop-strip__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #9FE1CB; }
.shop-strip__eyebrow [lang="bn"] { text-transform: none; font-family: var(--font-bengali); }
.shop-strip__rule { width: 16px; height: 1px; background: #52B788; }
.shop-strip__title { font-family: var(--font-bengali); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: -0.4px; color: #D8F3DC; margin: 8px 0 0; }
.shop-strip__sub { display: block; font-size: 15px; font-weight: 500; color: #9FE1CB; margin-top: 6px; }
.shop-strip__pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.shop-strip__pill { display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px; border-radius: 999px; background: #52B788; color: #1A2E24; font-family: var(--font-bengali); font-size: 11.5px; font-weight: 600; }
.shop-strip__dot { width: 4px; height: 4px; border-radius: 999px; background: #1A2E24; opacity: 0.45; }
.shop-strip__cta { font-family: var(--font-bengali); }
@media (min-width: 1024px) { .shop-strip__cta { text-align: right; } }
.shop-strip__price { font-family: var(--font-bengali); font-weight: 800; font-size: 34px; letter-spacing: -0.5px; color: #F4A261; }
.shop-strip__save { font-size: 13px; font-weight: 500; color: #9FE1CB; }
.shop-strip__was { font-size: 12px; color: #9FE1CB; opacity: 0.7; margin-top: 4px; }
.shop-strip__btn { display: inline-flex; align-items: center; gap: 8px; height: 48px; margin-top: 16px; padding: 0 20px; border-radius: 12px; background: #F4A261; color: #1A2E24; font-family: var(--font-bengali); font-weight: 700; font-size: 13.5px; text-decoration: none; transition: background .18s; }
.shop-strip__btn:hover { background: #FFB87A; }

/* Help card */
.shop-help { position: relative; overflow: hidden; border-radius: 14px; background: #1A2E24; border: 0.5px solid #0F6E56; isolation: isolate; }
.shop-help__dotgrid { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background-image: radial-gradient(rgba(216,243,220,0.08) 1px, transparent 1px); background-size: 22px 22px; }
.shop-help__leaf { position: absolute; right: -24px; bottom: -32px; width: 160px; height: 160px; opacity: 0.08; pointer-events: none; }
.shop-help__inner { position: relative; z-index: 1; display: flex; flex-direction: column; padding: 20px; height: 100%; }
.shop-help__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(82,183,136,0.18); color: #52B788; font-size: 20px; }
.shop-help__eyebrow { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #9FE1CB; margin-top: 16px; }
.shop-help__title { font-family: var(--font-bengali); font-weight: 800; font-size: 19px; line-height: 1.3; letter-spacing: -0.3px; color: #D8F3DC; margin: 6px 0 0; }
.shop-help__text { font-family: var(--font-bengali); font-size: 13px; line-height: 1.65; color: #9FE1CB; margin: 8px 0 0; }
.shop-help__cta { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; }
.shop-help__wa { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 10px; background: #52B788; color: #1A2E24; font-family: var(--font-bengali); font-size: 12.5px; font-weight: 700; text-decoration: none; }
.shop-help__wa:hover { background: #5DCAA5; }
.shop-help__call { display: inline-flex; align-items: center; gap: 4px; color: #9FE1CB; font-family: var(--font-bengali); font-size: 12px; font-weight: 600; text-decoration: none; }
.shop-help__call:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   07 · Trust band
   -------------------------------------------------------------------------- */
.shop-trust { background: #fff; border-top: 0.5px solid var(--c-line); }
.shop-trust__inner { max-width: var(--container-max); margin: 0 auto; padding: clamp(48px, 7vw, 64px) var(--container-pad); display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (min-width: 1024px) { .shop-trust__inner { grid-template-columns: repeat(4, 1fr); } }
.shop-trust__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: #D8F3DC; color: #2D6A4F; font-size: 22px; margin-bottom: 14px; }
.shop-trust__title { font-family: var(--font-bengali); font-weight: 800; font-size: 17px; letter-spacing: -0.2px; color: #1A2E24; margin: 0; }
.shop-trust__label { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #52B788; margin-top: 2px; }
.shop-trust__desc { font-family: var(--font-bengali); font-size: 13px; line-height: 1.65; color: #6B6960; margin: 8px 0 0; }

/* --------------------------------------------------------------------------
   08 · Mobile filter drawer
   -------------------------------------------------------------------------- */
.shop-filter-toggle { display: none; }
.shop-sidebar__head { display: none; }
.shop-filter-scrim { position: fixed; inset: 0; background: rgba(15,46,31,0.45); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; z-index: 1190; }
.shop-filter-scrim.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1023px) {
	.shop-toolbar__left { display: flex; align-items: center; gap: 12px; }
	.shop-filter-toggle {
		display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px;
		border: 1px solid var(--c-line); border-radius: 10px; background: #fff; color: #2D6A4F;
		font-family: var(--font-bengali); font-size: 13px; font-weight: 600; cursor: pointer;
	}
	.shop-filter-toggle .ph { font-size: 15px; }
	.shop-sidebar {
		position: fixed; top: 0; left: 0; height: 100dvh; width: min(340px, 86vw);
		background: #FBFAF6; z-index: 1200; transform: translateX(-100%); visibility: hidden;
		transition: transform .28s cubic-bezier(.2,.8,.2,1), visibility .28s;
		overflow-y: auto; padding: 16px; box-shadow: 8px 0 32px rgba(15,46,31,0.18);
	}
	.shop-sidebar.is-open { transform: translateX(0); visibility: visible; }
	.shop-sidebar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
	.shop-sidebar__head span { font-family: var(--font-bengali); font-weight: 700; font-size: 16px; color: #1A2E24; }
	.shop-sidebar__close { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: none; border-radius: 999px; background: #F6F4EF; color: #2D6A4F; cursor: pointer; font-size: 16px; }
	/* In the mobile drawer the whole panel scrolls — don't nest a capped scroll inside it */
	.shop-filter__scroll { max-height: none; overflow-y: visible; margin-right: 0; padding-right: 0; }
}
@media (min-width: 1024px) { .shop-toolbar__left { display: flex; align-items: center; } }

/* --------------------------------------------------------------------------
   09 · Product zoom modal
   -------------------------------------------------------------------------- */
.gd-zoom-modal { position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.gd-zoom-modal.is-open { opacity: 1; visibility: visible; }
.gd-zoom__backdrop { position: absolute; inset: 0; background: rgba(15,46,31,0.65); backdrop-filter: blur(4px); }
.gd-zoom__panel { position: relative; z-index: 1; width: 100%; max-width: 760px; max-height: 90vh; overflow: auto; background: #fff; border-radius: 20px; box-shadow: 0 16px 40px rgba(45,106,79,0.2); display: grid; grid-template-columns: 1fr; transform: scale(.97); transition: transform .25s; }
.gd-zoom-modal.is-open .gd-zoom__panel { transform: scale(1); }
@media (min-width: 640px) { .gd-zoom__panel { grid-template-columns: 1fr 1fr; } }
.gd-zoom__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; border: none; border-radius: 999px; background: rgba(255,255,255,0.92); color: #1A2E24; cursor: pointer; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.gd-zoom__media { background: #D8F3DC; display: flex; align-items: center; justify-content: center; padding: 24px; min-height: 260px; }
.gd-zoom__media img { max-width: 100%; max-height: 340px; object-fit: contain; }
.gd-zoom__info { padding: 24px; display: flex; flex-direction: column; }
.gd-zoom__cat { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #52B788; }
.gd-zoom__cat [lang="bn"] { text-transform: none; }
.gd-zoom__title { font-family: var(--font-bengali); font-weight: 800; font-size: 22px; line-height: 1.25; letter-spacing: -0.3px; color: #1A2E24; margin: 8px 0 0; }
.gd-zoom__rating { margin-top: 10px; }
.gd-zoom__price { margin-top: 12px; }
.gd-zoom__price .pcard__price-now { font-size: 26px; }
.gd-zoom__stock { margin-top: 8px; }
.gd-zoom__cta { display: flex; gap: 8px; margin-top: auto; padding-top: 16px; }
.gd-zoom__wish { width: 48px; height: 48px; flex-shrink: 0; border: 1px solid var(--c-line); border-radius: 12px; background: #fff; color: #5C4033; cursor: pointer; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; }
.gd-zoom__wish.is-active { color: #E63946; }
.gd-zoom__cta .pcard__add { flex: 1; margin-top: 0; height: 48px; }
.gd-zoom__view { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: #52B788; font-family: var(--font-bengali); font-size: 13px; text-decoration: none; }
.gd-zoom__view:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   10 · Recently viewed rail
   -------------------------------------------------------------------------- */
.shop-recent__inner { max-width: var(--container-max); margin: 0 auto; padding: clamp(32px, 5vw, 48px) var(--container-pad) 0; }
.shop-recent__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #52B788; }
.shop-recent__eyebrow [lang="bn"] { text-transform: none; font-family: var(--font-bengali); }
.shop-recent__rule { width: 16px; height: 1px; background: #52B788; opacity: 0.6; }
.shop-recent__title { font-family: var(--font-bengali); font-weight: 800; font-size: 22px; letter-spacing: -0.3px; color: #1A2E24; margin: 6px 0 16px; }
.shop-recent__scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: #9FE1CB transparent; }
.shop-recent__scroll::-webkit-scrollbar { height: 8px; }
.shop-recent__scroll::-webkit-scrollbar-thumb { background: #9FE1CB; border-radius: 999px; }
.shop-recent__card { flex: 0 0 180px; width: 180px; background: #fff; border: 0.5px solid var(--c-line); border-radius: 12px; overflow: hidden; text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s; }
.shop-recent__card:hover { border-color: #52B788; box-shadow: 0 4px 12px rgba(45,106,79,0.12); transform: translateY(-2px); }
.shop-recent__media { aspect-ratio: 4 / 3; background: #D8F3DC; display: flex; align-items: center; justify-content: center; padding: 10px; }
.shop-recent__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.shop-recent__body { padding: 10px 12px 12px; }
.shop-recent__name { font-family: var(--font-bengali); font-size: 13px; font-weight: 600; color: var(--c-soil); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.shop-recent__price { font-family: var(--font-bengali); font-size: 15px; font-weight: 800; color: #2D6A4F; margin-top: 4px; }

/* --------------------------------------------------------------------------
   11 · Real-time filtering helpers
   -------------------------------------------------------------------------- */
.pcard.is-hidden, .shop-strip.is-hidden, .shop-help.is-hidden { display: none !important; }
.shop-chips:empty { display: none; }
button.shop-chip { border: none; cursor: pointer; font-family: var(--font-bengali); }
