/* ==========================================================
   KOLHU WALE — Storefront system (ecommerce-first)
   Loaded last. Clean shop UI, not luxury landing-page fluff.
   ========================================================== */
:root {
  --color-forest: #183528;
  --color-forest-deep: #0e2419;
  --color-forest-soft: #2f5a42;
  --color-gold: #c9951a;
  --color-gold-light: #e0b84a;
  --color-gold-dark: #9a7010;
  --color-mustard: #d4a017;
  --color-cream: #f6f3ea;
  --color-cream-dark: #ebe6d8;
  --color-beige: #e2dbc8;
  --color-white: #ffffff;
  --color-off-white: #f9f7f1;
  --color-surface: #f1ece0;
  --color-text: #142018;
  --color-text-muted: #5a655c;
  --color-text-light: #7a847c;
  --color-border: rgba(24, 53, 40, 0.14);
  --color-border-strong: rgba(24, 53, 40, 0.24);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-button: "Source Sans 3", system-ui, sans-serif;
  --header-h: 70px;
  --announce-h: 36px;
  --container: 1160px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 36, 25, 0.06);
  --shadow-md: 0 6px 18px rgba(14, 36, 25, 0.08);
  --shadow-lg: 0 14px 36px rgba(14, 36, 25, 0.1);
  --shadow-xl: 0 22px 48px rgba(14, 36, 25, 0.12);
  --grad-cream: linear-gradient(180deg, #f9f7f1 0%, #efe9db 100%);
  --grad-forest: linear-gradient(165deg, #183528 0%, #0e2419 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(212, 160, 23, 0.07), transparent 42%),
    var(--color-off-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

.page-loader { display: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-forest-deep);
}

.btn, button, .chip {
  font-family: var(--font-button);
}

.btn {
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: none;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  color: #fff;
  background: var(--color-forest);
  border-color: transparent;
  box-shadow: none;
}
.btn--gold:hover { background: var(--color-forest-soft); color: #fff; }

.btn--primary {
  background: var(--color-forest);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover { background: var(--color-forest-soft); }

.btn--outline {
  border: 1.5px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-forest);
}
.btn--outline:hover {
  background: var(--color-forest);
  color: #fff;
  border-color: var(--color-forest);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--color-forest);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}

/* —— Announcement —— */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: var(--announce-h);
  padding: 0.5rem 1rem;
  background: var(--color-mustard);
  color: #1a1405;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}
.announce-bar strong { color: #0e2419; font-weight: 800; }
.announce-bar span + span::before {
  content: "·";
  margin-inline: 0.7rem;
  opacity: 0.55;
}

/* Sticky store chrome: announce + header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* —— Header (light storefront) —— */
.site-header {
  position: relative;
  top: auto;
  height: var(--header-h);
  color: var(--color-text);
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: none;
  box-shadow: none;
}
.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.logo-link { gap: 0.65rem; }
.logo-link img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}
.logo-text strong {
  color: var(--color-forest-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-text span {
  color: var(--color-text-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop { gap: 0.15rem; }
.nav-desktop a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.45rem 0.7rem;
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--color-forest); }
.nav-desktop a.is-active::after {
  background: var(--color-gold);
  bottom: 0;
  height: 2px;
  width: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle { border-color: var(--color-border-strong); }
.nav-toggle span { background: var(--color-forest); }

.header-actions { gap: 0.5rem; }
.header-actions .btn--sm {
  min-height: 40px;
  padding: 0.5rem 0.95rem;
}

.header-search {
  display: none;
  align-items: center;
  gap: 0.5rem;
  width: min(280px, 28vw);
  height: 40px;
  padding: 0 0.85rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}
.header-search svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-search:hover { border-color: var(--color-border-strong); color: var(--color-text); }

@media (min-width: 1100px) {
  .header-search { display: inline-flex; }
}

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 40px;
  padding: 0 0.85rem;
  color: var(--color-forest);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.header-cart:hover { border-color: var(--color-forest); background: #fff; }
.header-cart__icon { display: none; width: 20px; height: 20px; }
.header-cart .header-cart__count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 0.15rem;
  color: #fff;
  background: var(--color-forest);
  border-radius: 50%;
  font-size: 0.65rem;
}

.nav-mobile {
  background: #fff;
  color: var(--color-text);
  border-left: 1px solid var(--color-border);
}
.nav-mobile-backdrop { background: rgba(16, 38, 28, 0.45); backdrop-filter: blur(2px); }
.nav-mobile__header {
  border-bottom-color: var(--color-border);
  color: var(--color-forest);
}
.nav-mobile__close {
  color: var(--color-forest);
  border-color: var(--color-border);
}
.nav-mobile__brand strong { color: var(--color-forest-deep); }
.nav-mobile__brand small { color: var(--color-text-light); }
.nav-mobile__links a {
  border-bottom-color: var(--color-border);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-forest-deep);
}
.nav-mobile__links a::after { color: var(--color-gold); }
.nav-mobile__links a:hover,
.nav-mobile__links a.is-active {
  padding-left: 0.25rem;
  color: var(--color-forest-soft);
}
.nav-mobile__footer > small { color: var(--color-text-muted); }

/* —— Hero banner (full-bleed, uncropped) —— */
.banner-hero {
  overflow: hidden;
  background: var(--color-forest-deep);
}
.banner-hero__slider {
  position: relative;
}
.banner-hero__track {
  position: relative;
  width: 100%;
  line-height: 0;
}
.banner-hero__frame {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  overflow: hidden;
  line-height: 0;
}
.banner-hero__track:has([data-cms-hero-slide]:nth-child(2)) .banner-hero__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
.banner-hero__track:has([data-cms-hero-slide]:nth-child(2)) .banner-hero__frame.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.banner-hero__frame img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: unset;
  display: block;
}
.banner-hero__hotspot {
  position: absolute;
  z-index: 2;
  top: 67%;
  height: 8.5%;
  border-radius: 6px;
}
.banner-hero__hotspot:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.banner-hero__hotspot--shop { left: 6.1%; width: 18.9%; }
.banner-hero__hotspot--collection { left: 26.7%; width: 16.7%; }
.banner-hero__controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.banner-hero__controls[hidden] { display: none !important; }
.banner-hero__nav {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 28, 22, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.banner-hero__nav:hover { background: rgba(20, 28, 22, 0.7); }
.banner-hero__nav--prev { left: 0.75rem; }
.banner-hero__nav--next { right: 0.75rem; }
.banner-hero__dots {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
.banner-hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.banner-hero__dot.is-active { background: #fff; }
.banner-hero__mobile-actions {
  display: none;
  padding-block: 1rem 1.25rem;
  gap: 0.65rem;
}

/* —— Mill note (local shop identity) —— */
.mill-note {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.mill-note__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding-block: 1.15rem;
}
.mill-note img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(201, 149, 26, 0.45);
  background: #fff;
}
.mill-note__urdu {
  margin: 0 0 0.2rem;
  color: var(--color-gold-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}
.mill-note p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.mill-note p strong { color: var(--color-forest-deep); }

/* —— Store info bar (legacy pages) —— */
.store-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.store-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.store-bar__grid > div {
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
}
.store-bar__grid > div:last-child { border-right: 0; }
.store-bar strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-forest-deep);
}
.store-bar span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* —— Section chrome —— */
.shop-section { padding: clamp(2.75rem, 5vw, 4rem) 0; }
.lux-section { padding: clamp(2.75rem, 5vw, 4rem) 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0;
}
.section-head p {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.section-head .text-link { flex-shrink: 0; align-self: center; }

/* Kill old lux heading drama */
.lux-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.lux-heading h2 {
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lux-heading > p { max-width: 28rem; font-size: 0.9rem; line-height: 1.55; }
.lux-kicker { display: none !important; }

.text-link {
  color: var(--color-forest);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1.5px solid var(--color-gold);
  padding-bottom: 0.15rem;
  white-space: nowrap;
}
.text-link:hover { color: var(--color-forest-soft); }

/* —— Categories —— */
.categories-section { background: #fff; padding-top: clamp(2.25rem, 4vw, 3.25rem); }
.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cat-tile {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 1.1rem;
  min-height: 148px;
  padding: 0.7rem;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-tile--oil { border-bottom: 3px solid var(--color-mustard); }
.cat-tile--seed { border-bottom: 3px solid var(--color-forest); }
.cat-tile:hover {
  border-color: var(--color-forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cat-tile img {
  width: 150px;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}
.cat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-forest-deep);
}
.cat-tile span {
  display: block;
  margin-top: 0.3rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}
.cat-tile em {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--color-forest);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

/* Legacy mosaic → same feel if present */
.category-mosaic,
.category-mosaic--focused {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  grid-auto-rows: auto;
}
.lux-category {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 1.1rem;
  min-height: 140px;
  padding: 0.75rem;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  isolation: isolate;
}
.lux-category img {
  width: 140px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: none;
}
.lux-category__veil { display: none; }
.lux-category__content {
  position: static;
  inset: auto;
  color: var(--color-text);
}
.lux-category__content small {
  color: var(--color-text-light);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
}
.lux-category__content strong {
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-forest-deep);
}
.lux-category__content em {
  display: block;
  max-height: none;
  margin-top: 0.35rem;
  overflow: visible;
  color: var(--color-forest);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}
.lux-category:hover img { transform: none; filter: none; }

/* —— Products —— */
.featured-products-section,
.bestsellers-section {
  background: #fff7e8;
}

.product-grid,
.lux-products,
#featuredOilsGrid,
#seedsGrid,
.grid.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
  backdrop-filter: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: none;
  border-color: rgba(26, 61, 46, 0.28);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 0;
  background: var(--color-forest-deep);
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--color-forest);
  color: #fff;
}
.product-card__badge--gold {
  background: var(--color-gold);
  color: #1a1a1a;
}

.product-card__wishlist {
  top: 0.55rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.product-card__wishlist.is-active {
  color: #fff;
  background: #9e3f35;
  border-color: #9e3f35;
}

.product-card__body {
  gap: 0.25rem;
  padding: 0.95rem 1rem 1rem;
}
.product-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--color-forest-soft); }
.product-card__title-ur {
  display: block;
  font-family: var(--font-urdu-display);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin: 0.15rem 0 0;
}
.product-card__desc { display: none; }
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.45rem;
}
.product-card__rating {
  color: var(--color-gold-dark);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}
.product-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-forest-deep);
}
.product-card__price small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.product-card__actions .btn {
  min-height: 38px;
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.product-card__actions .btn--outline {
  width: 38px;
  padding: 0;
  font-size: 0.95rem;
}

/* —— How to order / WhatsApp band —— */
.howto-strip,
.wa-band {
  padding: 2.25rem 0;
  background: var(--color-forest);
  color: #fff;
  border-block: 4px solid var(--color-mustard);
}
.howto-strip__title,
.wa-band h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
}
.wa-band__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}
.wa-band__stamp {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.55rem;
  background: var(--color-mustard);
  color: #1a1405;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transform: rotate(-1.5deg);
}
.wa-band p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}
.wa-band__steps,
.howto-strip__steps {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wa-band__steps li,
.howto-strip__steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.wa-band__steps b,
.howto-strip__steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--color-mustard);
  color: #1a1405;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
}
.howto-strip__steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.howto-strip__steps li { align-items: flex-start; }
.howto-strip__steps strong { display: block; color: #fff; font-size: 0.9rem; }
.howto-strip__steps small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

/* —— Stats (if present on other pages) —— */
.stats-band {
  padding: 2.5rem 0;
  color: #fff;
  background: var(--color-forest-deep);
}
.stats-intro { margin-bottom: 1.5rem; text-align: center; }
.stats-intro h2 {
  margin-inline: auto;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}
.stats-grid > div {
  padding: 1.25rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong {
  display: block;
  color: var(--color-gold-light);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}
.stats-grid strong::after { content: "+"; font-size: 0.5em; }
.stats-grid > div:nth-child(3) strong::after { content: "%"; }
.stats-grid > div:nth-child(4) strong::after { content: ""; }
.stats-grid span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* —— Reviews carousel —— */
.reviews-section { background: #fff; overflow: hidden; }
.review-controls { display: flex; gap: 0.4rem; }
.review-controls button {
  width: 38px;
  height: 38px;
  color: var(--color-forest);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}
.review-controls button:hover {
  color: #fff;
  background: var(--color-forest);
  border-color: var(--color-forest);
}
.reviews-carousel { position: relative; }
.reviews-viewport {
  overflow: hidden;
  margin: 0 -0.15rem;
  padding: 0.15rem;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.store-review,
.lux-review {
  position: relative;
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  overflow: hidden;
  padding: 1.1rem 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid #25d366;
  border-radius: 4px 12px 12px 12px;
  box-shadow: none;
  transition: border-color 0.2s;
}
.store-review:hover,
.lux-review:hover {
  transform: none;
  border-color: rgba(24, 53, 40, 0.28);
  border-left-color: #1da851;
  box-shadow: none;
}
.lux-review::before { display: none; }

.reviews-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 61, 46, 0.22);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, width 0.2s;
}
.reviews-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--color-forest);
}

.review-person { display: flex; align-items: center; gap: 0.7rem; }
.review-person > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--color-forest);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}
.review-person strong {
  color: var(--color-forest-deep);
  font-size: 0.9rem;
  font-weight: 700;
}
.review-person small {
  margin-top: 0.1rem;
  color: var(--color-text-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.review-stars {
  margin: 0.85rem 0 0.5rem;
  color: var(--color-gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.store-review p,
.lux-review blockquote,
.lux-review p {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}
.google-badge {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--color-text-light);
  font-size: 0.65rem;
  font-weight: 600;
}

/* —— FAQ —— */
.faq-home { background: var(--color-off-white); }
.faq-home__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-home__grid h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
}
.faq-home__grid > div:first-child p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}
.accordion { gap: 0; }
.accordion__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
}
.accordion__item.is-open {
  border-color: var(--color-border-strong);
  box-shadow: none;
}
.accordion__trigger { padding: 1.1rem 0; }
.accordion__trigger-text strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
}
.accordion__panel-inner { padding: 0 2.5rem 1.1rem 0; font-size: 0.875rem; }
.accordion__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

/* —— Cart —— */
.cart-drawer { position: fixed; z-index: 3000; inset: 0; visibility: hidden; pointer-events: none; }
.cart-drawer.is-open { visibility: visible; pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 38, 28, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__panel > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__panel header small {
  color: var(--color-text-light);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  font-weight: 600;
}
.cart-drawer__panel header h2 { font-size: 1.25rem; font-weight: 800; }
.cart-drawer__panel header button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}
.cart-drawer__items { flex: 1; padding: 0.75rem 1.25rem; overflow-y: auto; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
}
.cart-item h4 { font-size: 0.9rem; font-weight: 700; }
.cart-item p { font-size: 0.75rem; }
.cart-item button { color: #9e3f35; font-size: 0.7rem; }
.cart-drawer__panel > footer {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
.cart-drawer__panel > footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.cart-drawer__panel > footer .btn { width: 100%; }
.cart-drawer__panel > footer > small {
  display: block;
  margin-top: 0.65rem;
  color: var(--color-text-light);
  text-align: center;
  font-size: 0.7rem;
}
.cart-empty { padding: 3rem 1rem; text-align: center; }
.cart-empty h3 { margin-bottom: 0.4rem; }

/* —— Inner pages —— */
.page-hero {
  padding: 2.25rem 0;
  color: var(--color-text);
  background:
    linear-gradient(90deg, var(--color-mustard) 0 6px, transparent 6px),
    var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  color: var(--color-forest-deep);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
}
.page-hero .eyebrow {
  color: var(--color-gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero .heading-ur {
  color: var(--color-forest-soft);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 2;
}
.page-hero p { color: var(--color-text-muted); }
.page-hero .section-subtitle { max-width: 36rem; }

.section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream,
.section--beige { background: var(--color-off-white); }
.section-header { margin-bottom: 1.75rem; }
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
}

.filter-bar {
  padding: 0.55rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
  margin-bottom: 1.25rem;
}
.search-box input {
  border: 0;
  background: transparent;
  border-radius: var(--radius-sm);
}
.chip {
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.chip.is-active {
  background: var(--color-forest);
  color: #fff;
}

.product-gallery__main {
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  background: var(--color-forest-deep);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: none;
}
.modal__media {
  padding: 0;
  overflow: hidden;
  background: var(--color-forest-deep);
}
.modal__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}
.modal__dialog {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.product-info__size-label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-forest);
}
.price-tag {
  font-family: var(--font-display);
  font-weight: 800;
}
.tabs { gap: 0.5rem; }
.tab {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.contact-card,
.contact-form-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
  background: #fff;
}
.story-block { gap: clamp(2rem, 5vw, 3.5rem); margin-bottom: clamp(3rem, 6vw, 5rem); }
.story-block__media {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
}
.story-block__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}
.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.15rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
}
.feature-card::before { display: none; }
.feature-card:hover {
  transform: none;
  border-color: rgba(26, 61, 46, 0.28);
  box-shadow: var(--shadow-sm);
}
.feature-card__icon {
  background: var(--color-surface);
  color: var(--color-forest);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.review-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
  background: var(--color-surface);
}
.review-card blockquote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
}
.form-control {
  min-height: 46px;
  border-radius: var(--radius-sm);
  background: #fff;
}
.form-control:focus {
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(26, 61, 46, 0.12);
}

.size-options button {
  border-radius: var(--radius-sm);
}
.size-options button.is-active {
  background: var(--color-forest);
  color: #fff;
}

/* —— Footer —— */
.site-footer {
  padding-top: 3.5rem;
  background: var(--color-forest-deep);
  border-top: 0;
}
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-newsletter span {
  color: var(--color-gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-newsletter h3 {
  max-width: 420px;
  margin-top: 0.4rem;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
}
.footer-newsletter form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  color: #fff;
  border: 0;
  background: transparent;
}
.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.footer-newsletter input:focus { outline: 0; }
.footer-newsletter button {
  padding: 0 1rem;
  color: var(--color-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}
.footer-grid { gap: 2rem; }
.footer-brand img { width: 64px; height: 64px; }
.footer-brand h3 { font-size: 1.25rem; font-weight: 800; color: #fff; }
.footer-col h4 {
  color: var(--color-gold-light);
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col a:hover { padding-left: 2px; }
.footer-extras {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social,
.footer-payments { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-social a,
.footer-payments span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

/* Hide leftover luxury ornaments */
.process-section,
.benefits-section,
.instagram-section,
.lux-cta { /* keep usable if present */ }

.process-timeline {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
}
.benefits-grid {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

/* —— Bestsellers carousel —— */
.bestsellers-carousel {
  width: 100%;
  overflow: hidden;
  padding-block: 0.25rem 0.5rem;
}
.bestsellers-carousel .bestsellers-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  grid-template-columns: none;
  will-change: transform;
}
.bestsellers-carousel .bestsellers-track.is-ready {
  animation: bestsellers-auto-scroll 42s linear infinite;
}
.bestsellers-carousel .product-card {
  width: clamp(220px, 20vw, 260px);
  flex: 0 0 auto;
}
.bestsellers-carousel:hover .bestsellers-track,
.bestsellers-carousel:focus-within .bestsellers-track {
  animation-play-state: paused;
}

@keyframes bestsellers-auto-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .product-grid,
  .lux-products,
  #featuredOilsGrid,
  #seedsGrid,
  .grid.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .bestsellers-carousel .product-card {
    width: clamp(220px, 28vw, 260px);
  }
}

@media (max-width: 959px) {
  .header-cart {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .header-cart__label { display: none; }
  .header-cart__icon { display: block; }
  .header-cart .header-cart__count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    margin: 0;
    border: 2px solid #fff;
    font-size: 0.58rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --announce-h: 0px;
  }
  .announce-bar {
    display: none !important;
  }
  .logo-text { display: none !important; }
  .header-actions .btn--sm { display: none !important; }
  .logo-link img { width: 42px; height: 42px; }

  .banner-hero__hotspot { display: none; }

  .mill-note__inner {
    grid-template-columns: auto 1fr;
  }
  .mill-note .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .store-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .store-bar__grid > div {
    border-bottom: 1px solid var(--color-border);
  }
  .store-bar__grid > div:nth-child(2n) { border-right: 0; }
  .store-bar__grid > div:nth-child(n+3) { border-bottom: 0; }

  .section-head,
  .lux-heading { display: block; }
  .section-head .text-link,
  .lux-heading .text-link,
  .lux-heading > p {
    display: inline-block;
    margin-top: 0.75rem;
  }

  .category-row,
  .category-mosaic,
  .category-mosaic--focused {
    grid-template-columns: 1fr;
  }
  .cat-tile,
  .lux-category {
    grid-template-columns: 110px 1fr;
    min-height: 110px;
  }
  .cat-tile img,
  .lux-category img {
    width: 110px;
    height: 96px;
  }

  .product-grid,
  .lux-products,
  #featuredOilsGrid,
  #seedsGrid,
  .grid.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .wa-band__grid,
  .howto-strip__steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .store-review,
  .lux-review { flex-basis: calc((100% - 1rem) / 2); }
  .faq-home__grid { grid-template-columns: 1fr; }
  .footer-newsletter { grid-template-columns: 1fr; }
  .footer-extras { flex-direction: column; }
  .page-hero, .section { padding-block: 2.25rem; }
  .product-gallery { position: static; }

  .bestsellers-carousel .product-card {
    width: clamp(210px, 42vw, 250px);
  }

  /* —— Single product page (mobile) —— */
  .product-detail {
    padding: 1rem 0 2rem;
  }
  .product-detail__grid {
    gap: 1.25rem;
  }
  .product-gallery__main {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
  }
  .product-gallery__thumbs {
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
  }
  .product-gallery__thumbs button {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
  }
  .product-info__cat {
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
  }
  .product-info h1 {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
  }
  .product-info .heading-ur {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }
  .product-info .price-tag {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
  }
  .product-info__desc {
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
  }
  .product-info__desc-ur {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .size-options {
    margin-bottom: 1rem;
  }
  .size-options button {
    min-height: 40px;
    padding: 0.45rem 0.9rem;
  }
  .product-info__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.5rem;
  }
  .product-info__actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.75rem;
    font-size: 0.8rem;
  }
  .product-info__actions .btn--whatsapp {
    grid-column: 1 / -1;
  }
  .product-info__actions .btn--outline {
    grid-column: 1 / -1;
  }
  .product-info [data-tabs] {
    margin-top: 1.75rem !important;
  }
  .tabs {
    gap: 0;
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab {
    flex: 0 0 auto;
    padding: 0.7rem 0.85rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .related-section .section-header {
    margin-bottom: 1.25rem;
  }
  .related-section .section-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .banner-hero__mobile-actions { flex-direction: column; }
  .banner-hero__mobile-actions .btn { width: 100%; }

  .shop-section, .lux-section { padding: 2.25rem 0; }
  .section-head h2,
  .lux-heading h2 { font-size: 1.4rem; }

  .store-review,
  .lux-review { flex-basis: 100%; }

  .product-card__body { padding: 0.75rem; }
  .product-card__title { font-size: 0.9rem; }
  .product-card__title-ur { font-size: 0.92rem; }
  .product-card__actions { grid-template-columns: 1fr 34px; }
  .product-card__actions .btn { min-height: 34px; font-size: 0.68rem; }
  .product-card__actions .btn--outline { width: 34px; }
  .product-card__wishlist {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  .filter-bar { border-radius: var(--radius-md); }

  .product-detail {
    padding: 0.75rem 0 1.75rem;
  }
  .product-info h1 {
    font-size: 1.4rem;
  }
  .product-info .heading-ur {
    font-size: 1.05rem;
  }
  .product-info__actions {
    grid-template-columns: 1fr;
  }
  .product-info__actions .btn--primary,
  .product-info__actions .btn--outline {
    grid-column: auto;
  }
}

  .bestsellers-carousel .product-card {
    width: min(72vw, 240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
  .bestsellers-carousel {
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .bestsellers-carousel .bestsellers-track.is-ready { animation: none; }
}
