/* ═══════════════════════════════════════════════════════════════
   SADAF — Shared Design System  |  css/style.css
   Raj Industries, Nagpur · Est. 2005
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand-accurate palette — Sadaf brand guidelines 2026 */
  --dark:   #1A2E20;          /* deep forest dark — header/footer bg      */
  --green:  #4A7C59;          /* Herbal Green — primary brand colour      */
  --green-d:#3A6348;          /* darker green — hover/active states       */
  --sage:   #B8D8BE;          /* Sage Leaf — secondary, bg/card tints     */
  --sage-l: #D8EDD8;          /* light sage — subtle card tints           */
  --leaf:   #C9A84C;          /* Heritage Gold — matches brand spec       */
  --cream:  #F5F0E3;          /* Warm Ivory — primary background          */
  --ivory:  #EDE8D8;          /* slightly deeper ivory for contrast       */
  --terra:  #C4622D;          /* terracotta — accent only                 */
  --gold:   #C9A84C;          /* Heritage Gold — dividers, accents        */
  --red:    #CC1530;          /* Sadaf Red — logo+CTAs ONLY, never layout */
  --white:  #FFFFFF;
  --text:   #3A2E1E;          /* Rich Earth — body text (deeper)          */
  --tmid:   #6B5B45;          /* mid text                                 */
  --tlt:    #9A8570;          /* light text                               */
  /* Specific transitions — never transition:all */
  --trans:  opacity 0.32s cubic-bezier(.25,.46,.45,.94), transform 0.32s cubic-bezier(.25,.46,.45,.94), box-shadow 0.32s cubic-bezier(.25,.46,.45,.94), background-color 0.32s cubic-bezier(.25,.46,.45,.94), border-color 0.32s cubic-bezier(.25,.46,.45,.94);
  --sh:     0 4px 28px rgba(74,124,89,.15);
  --shlg:   0 16px 56px rgba(74,124,89,.22);
  --nav-h:  76px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }
.sec-title {
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  font-weight: 700; line-height: 1.15; color: var(--text);
}
.sec-title em { color: var(--terra); font-style: italic; }
.sec-title.light { color: var(--white); }
.sec-sub { font-size: 1rem; color: var(--tmid); line-height: 1.85; max-width: 560px; }
.sec-sub.light { color: rgba(250,245,238,.6); }
.page-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.08; color: var(--white);
}
.editorial-body { font-size: 1rem; color: var(--tmid); line-height: 1.9; }
.caption { font-size: .75rem; color: var(--tlt); }
.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.badge::before, .badge::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.badge.center { justify-content: center; }
.badge.on-dark { color: var(--leaf); }
.badge.on-dark::before, .badge.on-dark::after { background: var(--leaf); }

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 2.5rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-terra { color: var(--terra); }
/* Reveal — only hides when JS is active; content always visible by default */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.js-ready .reveal.in { opacity: 1; transform: none; }
.js-ready .reveal:nth-child(2) { transition-delay: .08s; }
.js-ready .reveal:nth-child(3) { transition-delay: .16s; }
.js-ready .reveal:nth-child(4) { transition-delay: .24s; }
.js-ready .reveal:nth-child(5) { transition-delay: .32s; }
.js-ready .reveal:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.divider { width: 50px; height: 2px; background: linear-gradient(to right, var(--green), transparent); }
.divider.gold { background: linear-gradient(to right, var(--gold), transparent); }
.divider.center { margin: 0 auto; }
.back-to-top {
  position: fixed; bottom: 6rem; right: 2rem; width: 40px; height: 40px;
  background: var(--green); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; z-index: 800; opacity: 0; pointer-events: none;
  transition: var(--trans); box-shadow: var(--sh);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--sage); transform: translateY(-3px); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 2px;
  transition: var(--trans); cursor: pointer; border: none;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-d); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,89,.35); }
.btn-terra { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: #a8521f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,98,45,.38); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #b8923d; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: rgba(250,245,238,.9); border: 1.5px solid rgba(201,164,87,.5); }
.btn-outline-light:hover { background: rgba(201,164,87,.12); border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: .55rem 1.25rem; font-size: .72rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: .88rem; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announce {
  background: var(--green); padding: .55rem 2rem;
  text-align: center; font-size: .73rem; font-weight: 500;
  color: rgba(250,245,238,.8); letter-spacing: .06em;
  position: relative; z-index: 1001;
}
.announce strong { color: var(--gold); }
.announce-close {
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(250,245,238,.4);
  font-size: 1rem; cursor: pointer; line-height: 1;
}
.announce-close:hover { color: var(--cream); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; left: 0; right: 0; z-index: 1000;
  padding: .9rem 0; transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(26,46,32,.97); backdrop-filter: blur(14px);
  padding: .55rem 0; box-shadow: 0 2px 28px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.nav-logo img {
  height: 68px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); transition: var(--trans);
}
.navbar.scrolled .nav-logo img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-links a {
  font-size: .75rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(250,245,238,.85);
  padding: .5rem .9rem; display: block; transition: var(--trans);
  position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: .9rem; right: .9rem;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
/* Dropdown arrow */
.has-dropdown > a::before {
  content: '▾'; position: absolute; right: .1rem; top: 50%; transform: translateY(-50%);
  font-size: .55rem; opacity: .5;
}
/* CTA button */
.nav-cta.btn-nav {
  background: var(--terra); color: var(--white) !important;
  padding: .5rem 1.15rem !important; border-radius: 2px; margin-left: .5rem;
}
.nav-cta.btn-nav::after, .nav-cta.btn-nav::before { display: none !important; }
.nav-cta.btn-nav:hover { background: #a8521f !important; transform: translateY(-1px); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(20,40,26,.97); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,164,87,.18); border-radius: 6px;
  min-width: 230px; padding: .6rem 0;
  opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: var(--trans);
  z-index: 200;
}
.nav-item:hover .dropdown, .nav-item.open .dropdown {
  opacity: 1; pointer-events: auto; transform: none;
}
.dropdown li a {
  display: block; padding: .6rem 1.2rem;
  font-size: .77rem; color: rgba(250,245,238,.7);
  transition: var(--trans);
}
.dropdown li a::after, .dropdown li a::before { display: none; }
.dropdown li a:hover { color: var(--gold); padding-left: 1.5rem; background: rgba(201,164,87,.06); }
.dropdown-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); opacity: .7;
  padding: .7rem 1.2rem .2rem; display: block;
}
.dropdown-divider { height: 1px; background: rgba(201,164,87,.12); margin: .4rem 0; }
.dropdown-featured a { color: var(--gold) !important; font-weight: 600 !important; }
.dropdown-featured a:hover { color: #e8c97a !important; }

/* ── HIERARCHICAL DROPDOWN — parent vs sub-category ── */
.dropdown li.dd-parent > a {
  font-weight: 600;
  color: rgba(250,245,238,.88) !important;
  padding-top: .65rem;
  padding-bottom: .45rem;
  letter-spacing: .01em;
}
.dropdown li.dd-parent > a:hover { color: var(--gold) !important; padding-left: 1.5rem; }
.dropdown li.dd-parent.dd-featured > a {
  color: var(--gold) !important;
}
.dropdown li.dd-parent.dd-featured > a:hover { color: #e8c97a !important; }
.dropdown li.dd-sub > a {
  padding-left: 1.85rem !important;
  font-size: .73rem !important;
  color: rgba(250,245,238,.48) !important;
  padding-top: .35rem !important;
  padding-bottom: .35rem !important;
}
.dropdown li.dd-sub > a:hover {
  padding-left: 2.15rem !important;
  color: rgba(250,245,238,.72) !important;
  background: rgba(255,255,255,.025) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px; transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV — clean redesign ─────────────────── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: #0c1d11;
  z-index: 9999;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.mobile-nav.open {
  display: flex;
  animation: mobNavIn .26s cubic-bezier(.4,0,.2,1);
}
@keyframes mobNavIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scrollable content body (injected by JS) */
.mob-nav-body {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
  padding-bottom: 2rem;
}

/* Header row — pinned at top */
.mob-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; box-sizing: border-box;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201,164,87,.18);
  flex-shrink: 0;
  background: #0c1d11;
  position: relative; z-index: 10;
}
.mob-nav-logo img { height: 40px; width: auto; display: block; }
.mob-close-btn {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(250,245,238,.7);
  font-size: 1rem; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background-color .2s ease, color .2s ease;
}
.mob-close-btn:hover { background: rgba(201,164,87,.2); color: var(--gold); }

/* Nav list */
.mob-nav-list { display: flex; flex-direction: column; width: 100%; padding: .25rem 0; }
.mob-nav-item { border-bottom: 1px solid rgba(255,255,255,.04); }

/* All nav links and accordion buttons — unified style */
/* Scope strictly to list items only — exclude logo, socials, CTA */
.mob-nav-list a,
.mob-nav-link {
  font-family: 'Poppins', sans-serif !important;
  font-size: .9rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: rgba(250,245,238,.95) !important;
  letter-spacing: .01em !important;
  padding: .82rem 1.5rem !important;
  text-align: left !important;
  width: 100%; display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box;
  background: none; border: none; cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
  text-decoration: none;
}
.mob-nav-list a:hover, .mob-nav-list a.active,
.mob-nav-link:hover, .mob-nav-link.active {
  color: var(--gold) !important;
  background: rgba(201,164,87,.05) !important;
}

/* Logo link — reset all nav link styles */
.mob-nav-logo {
  display: inline-flex !important; align-items: center;
  width: auto !important; padding: 0 !important;
  background: none !important; border: none !important;
  font-size: inherit !important; font-style: normal !important;
  font-weight: normal !important; text-decoration: none !important;
  color: inherit !important;
}

/* Accordion toggle (Products category) — between main links and sub-items */
.mob-accordion-toggle {
  font-size: .86rem !important;
  font-weight: 700 !important;
  color: rgba(250,245,238,.9) !important;
  letter-spacing: .02em !important;
}

/* Arrow on accordion toggle */
.mob-nav-arrow {
  font-size: .8rem;
  color: rgba(250,245,238,.35);
  transition: transform .28s ease, color .2s ease;
  flex-shrink: 0; margin-left: auto; padding-left: .5rem;
}
.mob-nav-item.open .mob-nav-arrow { transform: rotate(180deg); color: var(--gold); }
.mob-nav-item.open > .mob-nav-link { color: var(--gold) !important; }

/* Submenu */
.mob-subnav {
  display: none;
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(201,164,87,.07);
}
.mob-nav-item.open .mob-subnav { display: block; }
.mob-subnav a {
  display: block !important;
  padding: .65rem 1.5rem .65rem 2.1rem !important;
  font-size: .82rem !important;
  font-weight: 400 !important;
  color: rgba(250,245,238,.45) !important;
  border-bottom: 1px solid rgba(255,255,255,.03) !important;
  transition: color .2s ease, padding-left .2s ease !important;
}
/* Parent category labels (mob-sub without mob-subsub) — clearly heavier than sub-items, visibly lighter than main nav */
.mob-subnav a.mob-sub:not(.mob-subsub) {
  font-weight: 600 !important;
  font-size: .84rem !important;
  color: rgba(250,245,238,.88) !important;
  padding-left: 1.5rem !important;
  letter-spacing: .02em !important;
}
.mob-subnav a.mob-sub:not(.mob-subsub):hover { color: var(--gold) !important; padding-left: 1.5rem !important; }
.mob-subnav a:hover { color: var(--gold) !important; padding-left: 2.35rem !important; }
.mob-subnav a:last-child { border-bottom: none !important; }

/* Distributor CTA */
.mob-nav-cta {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  width: auto !important;
  margin: 1.1rem 1.5rem .6rem !important;
  padding: .6rem 1.4rem !important;
  background: linear-gradient(135deg, var(--gold), #b8923d);
  color: var(--dark) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  border: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
  text-decoration: none;
  align-self: flex-start;
}
.mob-nav-cta:hover { opacity: .88; transform: translateY(-1px); color: var(--dark) !important; }

/* Social icons row */
.mob-nav-socials {
  display: flex !important; gap: .5rem;
  padding: .75rem 1.5rem 1rem;
  border-top: 1px solid rgba(201,164,87,.1);
  flex-direction: row !important;
  width: 100%; box-sizing: border-box;
}
.mob-nav-soc {
  width: 32px !important; height: 32px !important;
  min-width: 32px; border-radius: 6px;
  border: 1px solid rgba(201,164,87,.28) !important;
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important;
  color: rgba(250,245,238,.55) !important;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  flex-shrink: 0 !important;
  padding: 0 !important; /* override any inherited padding */
  font-size: 0 !important; /* remove any inherited text size */
  background: none !important;
}
.mob-nav-soc:hover { background: rgba(201,164,87,.14) !important; color: var(--gold) !important; border-color: var(--gold) !important; }

/* Legacy selectors — nullify */
.mob-close { display: none; }
.mob-sub-divider, .mob-nav-sep { display: none; }
.mob-sub, .mob-subsub { font-size: .82rem !important; font-style: normal !important; }
.mob-featured { color: rgba(250,245,238,.88) !important; font-weight: 600 !important; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  min-height: 48vh; background: var(--dark);
  display: flex; align-items: center; position: relative;
  overflow: hidden; padding-top: 120px; padding-bottom: 4rem;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='60' rx='18' ry='42' fill='none' stroke='%2352B788' stroke-width='1' transform='rotate(30 60 60)'/%3E%3Cellipse cx='60' cy='60' rx='18' ry='42' fill='none' stroke='%2352B788' stroke-width='1' transform='rotate(90 60 60)'/%3E%3Cellipse cx='60' cy='60' rx='18' ry='42' fill='none' stroke='%2352B788' stroke-width='1' transform='rotate(150 60 60)'/%3E%3C/svg%3E");
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(74,124,89,.5) 0%, transparent 65%),
              radial-gradient(ellipse 40% 60% at 85% 30%, rgba(201,164,87,.1) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; color: rgba(250,245,238,.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(250,245,238,.45); transition: var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .3; }
.page-hero-sub {
  font-size: 1.05rem; color: rgba(250,245,238,.6);
  line-height: 1.8; max-width: 560px; margin-top: .75rem;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee { background: var(--green); padding: .75rem 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2.5rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(250,245,238,.75); white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: rgba(201,164,87,.45); font-size: .48rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.prod-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(74,124,89,.1); transition: var(--trans);
  cursor: pointer; position: relative;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shlg); border-color: rgba(74,124,89,.2); }
.prod-card.featured { border-color: rgba(201,164,87,.4); }
.prod-card.hidden { display: none; }
.prod-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--terra); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .2rem .65rem;
  border-radius: 100px; z-index: 2;
}
.prod-tag.gold { background: var(--gold); color: var(--dark); }
.prod-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; background: var(--cream); overflow: hidden; position: relative;
}
.prod-img img { height: 150px; width: auto; object-fit: contain; transition: transform .4s ease; }
.prod-card:hover .prod-img img { transform: scale(1.07) translateY(-4px); }
.prod-info { padding: 1.25rem 1.25rem 1.5rem; }
.prod-cat-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); margin-bottom: .4rem; }
.prod-name { font-family: 'Poppins', sans-serif; font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; line-height: 1.25; }
.prod-sub { font-size: .78rem; color: var(--tlt); margin-bottom: .7rem; }
.prod-benefits { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.prod-ben { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--tmid); }
.prod-ben::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--leaf); flex-shrink: 0; }
.prod-view {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
  transition: var(--trans); background: none; padding: 0; border: none;
}
.prod-view:hover { gap: .65rem; color: var(--sage); }

/* Category Cards */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cat-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(74,124,89,.1); transition: var(--trans);
  text-decoration: none; display: block;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shlg); }
.cat-card-img {
  height: 220px; overflow: hidden; position: relative;
  background: var(--ivory); display: flex; align-items: center; justify-content: center;
}
.cat-card-img img { height: 170px; width: auto; object-fit: contain; transition: transform .4s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.06) translateY(-5px); }
.cat-card-body { padding: 1.5rem; }
.cat-card-count {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  padding: .2rem .65rem; border-radius: 100px; margin-bottom: .6rem;
}
.cat-card-name { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.cat-card-desc { font-size: .83rem; color: var(--tmid); line-height: 1.7; margin-bottom: 1rem; }
.cat-card-link { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); display: flex; align-items: center; gap: .4rem; transition: var(--trans); }
.cat-card:hover .cat-card-link { gap: .75rem; }

/* ── ABOUT / STORY SECTION ────────────────────────────────── */
.about-visual { position: relative; }
.product-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 520px;
}
.collage-item {
  border-radius: 8px; overflow: hidden; position: relative;
  background: var(--ivory); display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.collage-item:hover { transform: scale(1.02); box-shadow: var(--shlg); }
.collage-item img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; transition: transform .4s ease; }
.collage-item:hover img { transform: scale(1.06); }
.collage-item.tall { grid-row: 1 / 3; background: linear-gradient(145deg, #0d1f15, #1a3a28); }
.collage-item.tall img { object-fit: contain; padding: 2rem; }
.collage-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,46,32,.8), transparent);
  color: rgba(250,245,238,.85); font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1.5rem .9rem .65rem; line-height: 1;
}
.about-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px; background: var(--terra); border-radius: 4px; z-index: -1; }
.about-border { position: absolute; top: -1.25rem; left: -1.25rem; width: 65px; height: 65px; border: 2px solid var(--gold); border-radius: 4px; }
.about-badge {
  position: absolute; top: 1.5rem; right: -1.5rem;
  background: var(--green); color: var(--white);
  padding: .85rem 1.1rem; border-radius: 4px; text-align: center;
  box-shadow: var(--shlg); z-index: 3;
}
.about-badge .n { font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 700; line-height: 1; color: var(--gold); }
.about-badge .l { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; display: block; }

/* ── WHY / FEATURE CARDS ──────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; }
.why-card {
  background: var(--white); border: 1px solid rgba(74,124,89,.1);
  border-radius: 8px; padding: 2.25rem 1.75rem;
  transition: var(--trans); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--green), var(--leaf));
  transform: scaleX(0); transition: transform .4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shlg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.why-title { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .55rem; }
.why-desc { font-size: .875rem; color: var(--tmid); line-height: 1.8; }

/* Dark variant (for dark backgrounds) */
.why-card.dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(201,164,87,.2);
  color: var(--cream);
}
.why-card.dark:hover { background: rgba(201,164,87,.08); border-color: rgba(201,164,87,.4); }
.why-card.dark .why-title { color: var(--cream); }
.why-card.dark .why-desc { color: rgba(250,245,238,.5); }

/* ── SPOTLIGHT CARDS ──────────────────────────────────────── */
.spot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.spot-card { border: 1px solid rgba(201,164,87,.2); border-radius: 8px; overflow: hidden; transition: var(--trans); }
.spot-card:hover { border-color: rgba(201,164,87,.5); transform: translateY(-6px); }
.spot-top { height: 240px; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.spot-top img { height: 180px; width: auto; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); transition: transform .4s ease; }
.spot-card:hover .spot-top img { transform: scale(1.06) translateY(-5px); }
.spot-body { padding: 1.75rem; background: rgba(255,255,255,.04); }
.spot-herb { font-family: 'Poppins', sans-serif; font-size: .82rem; font-style: italic; color: var(--leaf); margin-bottom: .4rem; }
.spot-name { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.spot-desc { font-size: .875rem; color: rgba(250,245,238,.55); line-height: 1.8; margin-bottom: 1.5rem; }
.spot-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.spot-tag { background: rgba(201,164,87,.1); border: 1px solid rgba(201,164,87,.25); color: var(--leaf); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 100px; }

/* ── STATS ────────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stats-row.three { grid-template-columns: repeat(3,1fr); }
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-n { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: .35rem; }
.stat-n.gold { color: var(--gold); }
.stat-l { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tlt); }
.stat-l.light { color: rgba(250,245,238,.45); }

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(74,124,89,.12); transform: translateX(-50%); }
.tl-item { display: flex; gap: 0; margin-bottom: 3rem; align-items: flex-start; }
.tl-item:nth-child(odd) { flex-direction: row; }
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-side { flex: 1; padding: 0 2.5rem; }
.tl-item:nth-child(odd) .tl-side { text-align: right; }
.tl-item:nth-child(even) .tl-side { text-align: left; }
.tl-center { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.tl-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; box-shadow: 0 0 0 4px var(--cream); }
.tl-content { background: var(--white); border-radius: 8px; padding: 1.5rem; border: 1px solid rgba(74,124,89,.1); box-shadow: var(--sh); max-width: 360px; }
.tl-year { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.tl-title { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.tl-body { font-size: .84rem; color: var(--tmid); line-height: 1.75; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-outer { overflow: hidden; }
.testi-track { display: flex; gap: 2rem; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.testi-card { min-width: calc(33.333% - 1.4rem); flex-shrink: 0; background: var(--white); border-radius: 8px; padding: 2.5rem; border: 1px solid rgba(74,124,89,.1); }
.testi-stars { color: var(--terra); font-size: .85rem; margin-bottom: .75rem; }
.testi-q { font-family: 'Lora', Georgia, serif; font-size: 3rem; color: var(--green); line-height: .5; margin-bottom: 1.1rem; }
.testi-body { font-size: .95rem; color: var(--tmid); line-height: 1.85; font-style: italic; margin-bottom: 1.75rem; }
.testi-auth { display: flex; align-items: center; gap: .9rem; }
.testi-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--leaf)); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-name { font-weight: 600; color: var(--text); font-size: .92rem; }
.testi-role { font-size: .75rem; color: var(--tlt); margin-top: .15rem; }
.testi-ctrl { display: flex; justify-content: center; align-items: center; gap: .6rem; margin-top: 2.5rem; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(74,124,89,.15); border: none; cursor: pointer; transition: var(--trans); }
.t-dot.active { background: var(--green); width: 24px; border-radius: 4px; }
.t-arr { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(74,124,89,.15); background: none; color: var(--tmid); display: flex; align-items: center; justify-content: center; font-size: .95rem; cursor: pointer; transition: var(--trans); }
.t-arr:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── DISTRIBUTOR FORM ─────────────────────────────────────── */
.dist-layout { display: grid; grid-template-columns: 340px 1fr; gap: 5rem; }
.dist-info .sec-title { font-size: 2rem; }
.dist-body { font-size: .93rem; color: var(--tmid); line-height: 1.9; margin: 1.25rem 0 2rem; }
.perk-list { display: flex; flex-direction: column; gap: 1.1rem; }
.perk { display: flex; align-items: flex-start; gap: .9rem; }
.perk-i { width: 36px; height: 36px; border-radius: 50%; background: rgba(74,124,89,.1); border: 1px solid rgba(74,124,89,.15); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.perk-t strong { display: block; font-size: .86rem; color: var(--text); margin-bottom: .15rem; }
.perk-t span { font-size: .78rem; color: var(--tlt); }
.form-card { background: var(--white); border-radius: 12px; padding: 3rem; box-shadow: var(--shlg); border: 1px solid rgba(74,124,89,.1); }
/* Progress */
.prog { display: flex; align-items: center; margin-bottom: 2.5rem; }
.pstep { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.pstep:not(:last-child)::after { content: ''; position: absolute; top: 17px; left: calc(50% + 18px); right: calc(-50% + 18px); height: 2px; background: var(--ivory); z-index: 0; transition: background .4s; }
.pstep.done:not(:last-child)::after { background: var(--leaf); }
.pstep.active:not(:last-child)::after { background: linear-gradient(to right, var(--leaf), var(--ivory)); }
.pdot { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(74,124,89,.15); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 600; color: var(--tlt); position: relative; z-index: 1; transition: var(--trans); }
.pstep.active .pdot { border-color: var(--green); background: var(--green); color: var(--white); }
.pstep.done .pdot { border-color: var(--leaf); background: var(--leaf); color: var(--white); }
.plbl { font-size: .62rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--tlt); margin-top: .45rem; white-space: nowrap; }
.pstep.active .plbl { color: var(--green); }
.pstep.done .plbl { color: var(--sage); }
/* Form */
.fstep { display: none; animation: fadeIn .3s ease; }
.fstep.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.step-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 1.75rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.frow.full { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg label { font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--tmid); }
.fg .req { color: var(--terra); }
.fg input, .fg select, .fg textarea {
  padding: .72rem .95rem; border: 1.5px solid var(--ivory);
  border-radius: 6px; font-family: 'Lora', Georgia, serif;
  font-size: .92rem; color: var(--text); background: var(--cream);
  transition: var(--trans); outline: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(74,124,89,.1); }
.fg input.err, .fg select.err, .fg textarea.err { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(196,98,45,.08); }
.err-msg { font-size: .7rem; color: var(--terra); display: none; }
.fg.has-err .err-msg { display: block; }
.fg textarea { resize: vertical; min-height: 90px; }
.cb-grp { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: .4rem; }
.cb-item { display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: var(--tmid); cursor: pointer; }
.cb-item input { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--ivory); }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.rev-sec { background: var(--cream); border-radius: 8px; padding: 1.4rem; border: 1px solid var(--ivory); }
.rev-sec h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; color: var(--green); margin-bottom: .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--ivory); }
.rev-row { display: flex; justify-content: space-between; gap: .75rem; font-size: .8rem; margin-bottom: .5rem; }
.rev-lbl { color: var(--tlt); flex-shrink: 0; }
.rev-val { color: var(--text); font-weight: 600; text-align: right; word-break: break-word; }
.terms-box { background: var(--cream); border-radius: 8px; padding: 1.4rem; margin-bottom: 1.5rem; }
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success.show { display: block; }
.suc-ico { width: 80px; height: 80px; background: linear-gradient(135deg, var(--green), var(--leaf)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.75rem; animation: popIn .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-family: 'Poppins', sans-serif; font-size: 1.9rem; color: var(--text); margin-bottom: .75rem; }
.form-success p { color: var(--tmid); max-width: 400px; margin: 0 auto; line-height: 1.75; }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list { border-top: 1px solid rgba(74,124,89,.1); }
.faq-item { border-bottom: 1px solid rgba(74,124,89,.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-size: .96rem; font-weight: 500;
  color: var(--text); cursor: pointer; gap: 1rem; background: none;
  width: 100%; text-align: left; transition: var(--trans);
}
.faq-q:hover { color: var(--green); }
.faq-icon { font-size: 1.2rem; color: var(--green); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { font-size: .88rem; color: var(--tmid); line-height: 1.85; padding-bottom: 1.25rem; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-grid { column-count: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,46,32,.6); opacity: 0; transition: opacity .3s ease; display: flex; align-items: flex-end; padding: 1rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--cream); font-size: .78rem; font-weight: 500; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cinfo-item { display: flex; gap: 1.1rem; margin-bottom: 1.75rem; }
.cinfo-icon { width: 48px; height: 48px; background: rgba(74,124,89,.08); border: 1px solid rgba(74,124,89,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cinfo-lbl { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tlt); margin-bottom: .25rem; }
.cinfo-val { font-size: .9rem; color: var(--text); line-height: 1.65; }
.map-ph { width: 100%; height: 200px; border-radius: 8px; background: linear-gradient(135deg, var(--ivory), var(--cream)); border: 1px solid rgba(74,124,89,.12); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.map-ph::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg,transparent,transparent 35px,rgba(74,124,89,.06) 35px,rgba(74,124,89,.06) 36px), repeating-linear-gradient(90deg,transparent,transparent 35px,rgba(74,124,89,.06) 35px,rgba(74,124,89,.06) 36px); }
.map-ph span { font-size: 2.5rem; position: relative; z-index: 1; }
.soc-row { display: flex; gap: .65rem; margin-top: 1.75rem; }
.soc-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid rgba(74,124,89,.15); background: none; color: var(--tmid); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--trans); cursor: pointer; font-weight: 700; text-decoration: none; }
.soc-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-2px); }

/* ── QUALITY / CERTIFICATIONS ─────────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cert-card { border: 2px solid rgba(201,164,87,.25); border-radius: 8px; padding: 2rem; text-align: center; background: var(--white); transition: var(--trans); }
.cert-card:hover { border-color: var(--gold); box-shadow: var(--sh); transform: translateY(-4px); }
.cert-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.cert-name { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: .5rem; }
.cert-body { font-size: .78rem; color: var(--tmid); line-height: 1.7; }
.no-no-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.no-no-item { background: var(--white); border-radius: 8px; padding: 1.5rem 1rem; text-align: center; border: 1px solid rgba(74,124,89,.1); }
.no-no-icon { font-size: 1.75rem; margin-bottom: .6rem; }
.no-no-text { font-size: .78rem; font-weight: 600; color: var(--text); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.process-step { display: flex; align-items: flex-start; gap: 1.1rem; }
.ps-num { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700; flex-shrink: 0; }
.ps-title { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.ps-body { font-size: .82rem; color: var(--tmid); line-height: 1.75; }

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: 8px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--green); color: var(--white); padding: 1rem; font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; text-align: left; }
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--ivory); font-size: .85rem; color: var(--tmid); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(240,231,213,.4); }
.compare-table .hl { background: rgba(74,124,89,.05) !important; font-weight: 600; color: var(--text) !important; }

/* ── FILTER TABS ──────────────────────────────────────────── */
.filter-tabs { display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: .5rem 1.25rem; font-size: .73rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border: 1.5px solid rgba(74,124,89,.15); background: transparent; color: var(--tmid); border-radius: 100px; transition: var(--trans); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band { padding: 5rem 0; background: var(--green); position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,164,87,.15) 0%, transparent 65%); }
.cta-band h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 700; color: var(--white); margin-bottom: .75rem; position: relative; }
.cta-band p { font-size: 1rem; color: rgba(250,245,238,.65); max-width: 520px; margin: 0 auto 2rem; position: relative; line-height: 1.8; }
.cta-band .btn { position: relative; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,46,32,.85); backdrop-filter: blur(6px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 12px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(74,124,89,.15); background: none; color: var(--tmid); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--trans); z-index: 1; }
.modal-close:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
.modal-body { display: grid; grid-template-columns: 260px 1fr; }
.modal-img { background: var(--cream); padding: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 12px 0 0 12px; min-height: 300px; }
.modal-img img { max-height: 220px; width: auto; object-fit: contain; }
.modal-info { padding: 2.5rem; }
.modal-cat { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); margin-bottom: .5rem; }
.modal-name { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; line-height: 1.2; }
.modal-sub { font-size: .82rem; color: var(--tlt); margin-bottom: 1rem; }
.modal-sep { width: 40px; height: 2px; background: linear-gradient(to right, var(--green), transparent); margin-bottom: 1rem; }
.modal-desc { font-size: .9rem; color: var(--tmid); line-height: 1.85; margin-bottom: 1.5rem; }
.modal-bullets h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .75rem; }
.modal-bullets ul { display: flex; flex-direction: column; gap: .4rem; }
.modal-bullets li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--tmid); }
.modal-bullets li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--leaf); flex-shrink: 0; }
.modal-actions { display: flex; gap: .75rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--ivory); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--dark); padding: 5.5rem 0 2.5rem; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 4rem; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 1.5rem; }
.footer-brand p { font-size: .862rem; color: rgba(250,245,238,.4); line-height: 1.85; max-width: 280px; margin-bottom: 1.5rem; }
.footer-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); opacity: .7; }
.fcol h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 1.5rem; padding-bottom: .7rem; position: relative; }
.fcol h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 1px; background: var(--gold); }
.fcol ul { display: flex; flex-direction: column; gap: .6rem; }
.fcol ul a { font-size: .845rem; color: rgba(250,245,238,.42); transition: var(--trans); }
.fcol ul a:hover { color: var(--gold); padding-left: .35rem; }
.news-form { display: flex; margin-top: .5rem; }
.news-in { flex: 1; padding: .68rem .95rem; background: rgba(255,255,255,.07); border: 1px solid rgba(201,164,87,.2); border-right: none; border-radius: 4px 0 0 4px; color: var(--cream); font-size: .82rem; outline: none; font-family: 'Lora', Georgia, serif; }
.news-in::placeholder { color: rgba(250,245,238,.25); }
.news-in:focus { border-color: var(--leaf); }
.news-btn { padding: .68rem 1rem; background: var(--green); border: none; border-radius: 0 4px 4px 0; color: var(--white); font-size: .82rem; font-weight: 600; cursor: pointer; transition: var(--trans); }
.news-btn:hover { background: var(--sage); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(201,164,87,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .75rem; color: rgba(250,245,238,.28); }
.footer-soc { display: flex; gap: .5rem; margin-top: 1.25rem; }

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.wa-fab { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: var(--trans); text-decoration: none; }
.wa-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.wa-fab svg { width: 30px; height: 30px; fill: white; }

/* ── SECTION SPACING ──────────────────────────────────────── */
.section { padding: 7.5rem 0; }
.section-sm { padding: 4.5rem 0; }
.section-dark { background: var(--dark); position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 70% at 10% 50%, rgba(74,124,89,.5) 0%, transparent 60%), radial-gradient(ellipse 40% 55% at 90% 30%, rgba(201,164,87,.1) 0%, transparent 55%); }
.section-dark > * { position: relative; z-index: 1; }
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-white { background: var(--white); }
.section-hd { text-align: center; margin-bottom: 3.5rem; }
.section-hd .sec-sub { margin: .75rem auto 0; text-align: center; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spot-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .cert-grid { grid-template-columns: repeat(2,1fr); }
  .no-no-grid { grid-template-columns: repeat(4,1fr); }
  .dist-layout { grid-template-columns: 300px 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(50% - 1rem); }
  .dist-layout { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column; padding-left: 3rem; }
  .tl-side { text-align: left !important; }
  .tl-center { position: absolute; left: 0; }
  .timeline { padding-left: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .spot-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .no-no-grid { grid-template-columns: repeat(2,1fr); }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img { border-radius: 12px 12px 0 0; }
  .gallery-grid { column-count: 2; }
  .product-collage { height: auto !important; grid-template-rows: auto !important; }
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row, .stats-row.three { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .page-hero-h1 { font-size: 2.2rem; }
  .section { padding: 5rem 0; }
  .compare-table td, .compare-table th { font-size: .75rem; padding: .65rem .75rem; }
}

/* ── MOBILE FIRST ENHANCEMENTS ─────────────────────────────── */
/* Touch-friendly minimum tap targets */
@media (max-width: 768px) {
  /* Larger touch targets for all interactive elements */
  .btn { min-height: 48px; padding: .9rem 1.75rem; font-size: .82rem; }
  .btn-lg { min-height: 52px; padding: 1rem 2rem; }
  .btn-sm { min-height: 40px; }
  .nav-cta.btn-nav { min-height: 40px !important; }

  /* Hero section mobile */
  .hero-content { padding-top: 100px !important; }
  .hero-h1 { font-size: clamp(2.2rem, 7vw, 3.2rem) !important; }
  .hero-p { font-size: .95rem; }
  .hero-actions { gap: .75rem; }
  .hero-actions .btn { flex: 1; justify-content: center; text-align: center; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.8rem; }

  /* About split */
  .about-split, .brand-story-grid, .founding-split { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .product-collage { height: auto !important; grid-template-rows: 200px 200px !important; }

  /* Product cards */
  .prod-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .prod-card { min-height: auto; }
  .prod-img { height: 160px; }

  /* Category cards */
  .cat-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .cat-card { padding: 1.5rem; flex-direction: row; align-items: flex-start; gap: 1rem; }
  .cat-icon { flex-shrink: 0; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  .why-card { padding: 1.75rem 1rem; }

  /* Testimonials */
  .testi-card { min-width: 100% !important; flex: 0 0 100% !important; }

  /* Contact / forms */
  .frow { grid-template-columns: 1fr !important; gap: .85rem !important; }
  .cf-row { grid-template-columns: 1fr !important; }

  /* Distributor form */
  .dist-layout { grid-template-columns: 1fr !important; }
  .form-card { padding: 2rem 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .footer-brand img { height: 52px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Page hero */
  .page-hero-h1 { font-size: clamp(2rem, 6vw, 3rem) !important; }
  .page-hero-sub { font-size: .9rem; }

  /* Section spacing */
  .section, section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }
  .container-wide { padding: 0 1.25rem; }

  /* Timeline mobile */
  .timeline { padding-left: 0; }
  .timeline::before { left: 16px; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column !important; padding-left: 2.75rem; gap: .75rem; }
  .tl-side { text-align: left !important; }
  .tl-center { position: absolute !important; left: 0; top: 0; }
  .tl-year { font-size: 2rem; }

  /* Misc */
  .standards-grid { grid-template-columns: 1fr 1fr !important; }
  .nono-grid { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .sec-title { font-size: clamp(1.7rem, 5.5vw, 2.5rem); }
}

@media (max-width: 420px) {
  .prod-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr !important; }
  .standards-grid { grid-template-columns: 1fr !important; }
  .nono-grid { grid-template-columns: 1fr !important; }
  .cat-card { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .container { padding: 0 1rem; }
  .container-wide { padding: 0 1rem; }
  .btn { padding: .8rem 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM DESIGN SYSTEM — v2 Overrides
   Depth, texture, elevation across all components
═══════════════════════════════════════════════════════════ */

/* ── TYPOGRAPHY REFINEMENTS ─────────────────────────────── */
.sec-title { letter-spacing: -0.02em; }
.hero-h1 { letter-spacing: -0.03em; }
.page-hero-h1 { letter-spacing: -0.025em; }

/* ── PRODUCT CARDS — elevated treatment ─────────────────── */
.prod-card {
  border-radius: 12px;
  border: 1px solid rgba(74,124,89,.08);
  box-shadow: 0 1px 3px rgba(58,46,30,.05), 0 4px 16px rgba(74,124,89,.07);
  transition: transform 0.38s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.38s cubic-bezier(.25,.46,.45,.94),
              border-color 0.38s cubic-bezier(.25,.46,.45,.94);
}
.prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(74,124,89,.08),
              0 20px 50px rgba(74,124,89,.22),
              0 1px 0 rgba(201,164,87,.15);
  border-color: rgba(201,164,87,.22);
}

/* ── PRODUCT IMAGE CONTAINER ────────────────────────────── */
.prod-img {
  background: linear-gradient(145deg, #f6f1e9, #ede8d5);
}
.prod-img img {
  filter: drop-shadow(0 6px 14px rgba(58,46,30,.16));
  transition: transform 0.45s cubic-bezier(.25,.46,.45,.94), filter 0.4s ease;
}
.prod-card:hover .prod-img img {
  transform: scale(1.09) translateY(-5px);
  filter: drop-shadow(0 12px 24px rgba(58,46,30,.26));
}

/* ── PRODUCT INFO ─────────────────────────────────────────── */
.prod-name { letter-spacing: -0.01em; }
.prod-view { position: relative; }
.prod-view::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
  height: 1px; background: var(--green); transform: scaleX(0);
  transform-origin: right; transition: transform 0.3s ease;
}
.prod-card:hover .prod-view::after { transform: scaleX(1); transform-origin: left; }

/* ── PROD TAG PILL ────────────────────────────────────────── */
.prod-tag { border-radius: 4px; letter-spacing: .1em; }

/* ── CATEGORY CARDS ─────────────────────────────────────── */
.cat-card {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(74,124,89,.06), 0 4px 14px rgba(74,124,89,.07);
  transition: transform 0.38s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.38s cubic-bezier(.25,.46,.45,.94);
}
.cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(74,124,89,.07), 0 20px 50px rgba(74,124,89,.22);
}
.cat-card-img { background: linear-gradient(145deg, #f6f1e9, #ede8d5); }
.cat-card-img img {
  filter: drop-shadow(0 5px 12px rgba(58,46,30,.14));
  transition: transform 0.45s cubic-bezier(.25,.46,.45,.94), filter 0.4s ease;
}
.cat-card:hover .cat-card-img img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 10px 22px rgba(58,46,30,.24));
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-green {
  background: linear-gradient(160deg, #5a8f69 0%, var(--green-d) 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.08) inset,
              0 2px 0 rgba(0,0,0,.06),
              0 4px 20px rgba(74,124,89,.25);
}
.btn-green:hover {
  background: linear-gradient(160deg, var(--green) 0%, #2e5038 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.1) inset,
              0 2px 0 rgba(0,0,0,.08),
              0 8px 32px rgba(74,124,89,.42);
  transform: translateY(-3px);
}
.btn-gold {
  background: linear-gradient(160deg, #d8ba5e 0%, #b8923d 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset,
              0 2px 0 rgba(0,0,0,.08),
              0 4px 20px rgba(201,164,76,.3);
}
.btn-gold:hover {
  background: linear-gradient(160deg, #e2c468 0%, #c9a84c 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset,
              0 2px 0 rgba(0,0,0,.1),
              0 8px 28px rgba(201,164,76,.5);
  transform: translateY(-3px);
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(74,124,89,.25); }
.btn-outline-light:hover { transform: translateY(-2px); }

/* ── SECTION BADGE ────────────────────────────────────────── */
.badge::before { background: linear-gradient(to right, transparent, var(--gold)); width: 32px; }
.badge::after  { background: linear-gradient(to left, transparent, var(--gold)); width: 32px; }
.badge.on-dark::before { background: linear-gradient(to right, transparent, var(--leaf)); }
.badge.on-dark::after  { background: linear-gradient(to left, transparent, var(--leaf)); }

/* ── WHY / FEATURE CARDS ──────────────────────────────────── */
.why-card {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(74,124,89,.06), 0 3px 10px rgba(74,124,89,.06);
}
.why-card:hover {
  box-shadow: 0 4px 8px rgba(74,124,89,.1), 0 14px 40px rgba(74,124,89,.18);
}
.why-icon {
  width: 52px; height: 52px; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(74,124,89,.1), rgba(201,164,87,.08));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}

/* ── TESTIMONIAL CARDS ────────────────────────────────────── */
.testi-card {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(74,124,89,.06), 0 4px 14px rgba(74,124,89,.08);
  border: 1px solid rgba(74,124,89,.08);
}
.testi-q { font-size: 3.5rem; line-height: .45; color: var(--leaf); opacity: .5; }

/* ── ANNOUNEMMENT & MARQUEE ───────────────────────────────── */
.announce { background: linear-gradient(135deg, #3e6e50, var(--green)); }
.marquee { background: linear-gradient(135deg, var(--green), var(--green-d)); }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero { min-height: 52vh; }
.page-hero-sub { max-width: 600px; }

/* ── STAT NUMBERS ─────────────────────────────────────────── */
.stat-n { letter-spacing: -0.03em; font-size: 3rem; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--green), var(--green-d)); }

/* ── CERT CARDS ───────────────────────────────────────────── */
.cert-card { border-radius: 12px; box-shadow: 0 1px 3px rgba(74,124,89,.06); }
.cert-card:hover { box-shadow: 0 4px 20px rgba(201,164,87,.2); }

/* ── MODAL ────────────────────────────────────────────────── */
.modal { border-radius: 16px; }
.modal-img { background: linear-gradient(145deg, #f6f1e9, #ede8d5); }

/* ── FORM FIELDS ──────────────────────────────────────────── */
.fg input, .fg select, .fg textarea { border-radius: 8px; }

/* ═══════════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS & ANIMATIONS  —  added for richer UI
═══════════════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
#scrollProgress {
  position: fixed; top: 0; left: 0; z-index: 2001;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  pointer-events: none;
}
@keyframes progressShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── HERO PARTICLE CANVAS ─────────────────────────────────── */
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.7;
}

/* ── HERO ENTER ANIMATION ─────────────────────────────────── */
.hero-left > * {
  opacity: 0;
  transform: translateY(30px);
}
.hero-eyebrow { animation: heroEnter .65s cubic-bezier(.25,.46,.45,.94) .15s forwards; }
.hero-h1      { animation: heroEnter .75s cubic-bezier(.25,.46,.45,.94) .3s  forwards; }
.hero-p       { animation: heroEnter .75s cubic-bezier(.25,.46,.45,.94) .48s forwards; }
.hero-actions { animation: heroEnter .75s cubic-bezier(.25,.46,.45,.94) .63s forwards; }
.hero-stats   { animation: heroEnter .75s cubic-bezier(.25,.46,.45,.94) .78s forwards; }
@keyframes heroEnter {
  to { opacity: 1; transform: none; }
}

/* ── HERO PRODUCT GRID ENTRANCE ───────────────────────────── */
.hero-cone-grid {
  animation: heroGridEnter 1s cubic-bezier(.25,.46,.45,.94) .55s both;
}
@keyframes heroGridEnter {
  from { opacity: 0; transform: translateX(40px) scale(0.94); }
  to   { opacity: 1; transform: none; }
}

/* ── HERO ANIMATED GRADIENT TITLE ────────────────────────── */
/* Note: heroEnter entrance is handled by the parent .hero-h1 — do NOT add it here,
   as a duplicate opacity animation on the em fights with the parent's opacity
   transition and causes the "Crafted" text to appear overlapped/invisible. */
.hero-h1 em {
  background: linear-gradient(135deg, #C9A457 0%, #f0d98a 30%, #C9A457 55%, #b8923d 80%, #e8c97a 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldGradientShift 5s ease 1.1s infinite;
  font-style: italic;
  /* Ensure the em is never invisible on its own — only the parent fades in */
  opacity: 1 !important;
}
@keyframes goldGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── FLOATING AMBIENT ORBS ────────────────────────────────── */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  filter: blur(64px);
}
.hero-orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,164,87,.2) 0%, transparent 68%);
  top: 8%; right: 2%;
  animation: orbFloat 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(74,124,89,.35) 0%, transparent 68%);
  bottom: 18%; left: 6%;
  animation: orbFloat 15s ease-in-out infinite;
  animation-delay: -6s;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,164,87,.12) 0%, transparent 70%);
  top: 55%; right: 30%;
  animation: orbFloat 19s ease-in-out infinite;
  animation-delay: -11s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0px)   scale(1); }
  33%     { transform: translateY(-30px)  scale(1.06); }
  66%     { transform: translateY(16px)   scale(0.97); }
}

/* ── WHY SECTION ORB ─────────────────────────────────────── */
.why-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,164,87,.07) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: orbFloat 24s ease-in-out infinite;
  animation-delay: -4s;
}

/* ── GOLD SHIMMER BUTTON ─────────────────────────────────── */
.btn-gold {
  background: linear-gradient(90deg, var(--gold) 0%, #e8c97a 38%, var(--gold) 62%, #b8923d 100%);
  background-size: 250% auto;
  animation: btnGoldShimmer 3.5s linear infinite;
}
.btn-gold:hover { animation-play-state: paused; background-position: right center; }
@keyframes btnGoldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* ── BUTTON LIGHT SWEEP ──────────────────────────────────── */
.btn-gold, .btn-green, .btn-terra {
  position: relative; overflow: hidden;
}
.btn-gold::after, .btn-green::after, .btn-terra::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  animation: btnSweep 3s ease-in-out infinite;
}
.btn-gold::after  { animation-delay: 0s; }
.btn-green::after { animation-delay: 1.1s; }
.btn-terra::after { animation-delay: 2.2s; }
@keyframes btnSweep {
  0%,55% { left: -75%; }
  80%    { left: 130%; }
  100%   { left: 130%; }
}

/* ── ENHANCED REVEAL (scale + blur) ─────────────────────── */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(2px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
              transform .7s cubic-bezier(.25,.46,.45,.94),
              filter .6s ease;
}
.js-ready .reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ── STAGGER PARENT OVERRIDES ────────────────────────────── */
.js-ready .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.04s; }
.js-ready .reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.js-ready .reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.20s; }
.js-ready .reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.28s; }
.js-ready .reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.36s; }
.js-ready .reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.44s; }

/* ── WHY ICON PULSE GLOW ON HOVER ────────────────────────── */
.why-card:hover .why-icon {
  animation: iconGlow 2s ease-in-out infinite;
}
@keyframes iconGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,164,87,0); }
  50%      { box-shadow: 0 0 18px 6px rgba(201,164,87,.22), 0 0 32px 12px rgba(74,124,89,.12); }
}

/* ── CAT CARD ANIMATED GLOW BORDER ──────────────────────── */
.cat-card {
  background-image: none;
  position: relative;
}
.cat-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(201,164,87,0), rgba(74,124,89,0));
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
}
.cat-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(201,164,87,.35), rgba(74,124,89,.25));
}

/* ── CONE CARD IMAGE BG GLOW ─────────────────────────────── */
.cone-card:hover .cone-img {
  background: linear-gradient(145deg, rgba(201,164,87,.12), rgba(74,124,89,.08));
}

/* ── TESTIMONIAL CARD HOVER LIFT ─────────────────────────── */
.testi-card {
  transition: var(--trans);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(74,124,89,.14), 0 20px 50px rgba(74,124,89,.12);
  border-color: rgba(74,124,89,.18);
}

/* ── BADGE SOFT PULSE ────────────────────────────────────── */
.badge {
  animation: badgePulse 4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: .85; }
  50%     { opacity: 1; }
}

/* ── MARQUEE GOLD DOT SPARKLE ────────────────────────────── */
.marquee-item::after {
  animation: dotSparkle 2.5s ease-in-out infinite;
}
@keyframes dotSparkle {
  0%,100% { color: rgba(201,164,87,.45); transform: scale(1);   }
  50%     { color: rgba(201,164,87,.9);  transform: scale(1.5); }
}

/* ── HERO STAT NUMBER GLOW ───────────────────────────────── */
.hero-stat-num {
  transition: text-shadow .35s ease;
  cursor: default;
}
.hero-stat-num:hover {
  text-shadow: 0 0 24px rgba(201,164,87,.55), 0 0 48px rgba(201,164,87,.25);
}

/* ── COLLAGE ITEM GOLDEN OVERLAY ─────────────────────────── */
.collage-item {
  position: relative;
}
.collage-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,164,87,0), rgba(74,124,89,.06));
  opacity: 0;
  transition: opacity .45s ease;
  border-radius: inherit;
}
.collage-item:hover::after { opacity: 1; }

/* ── PRODUCT CARD IMAGE ZOOM ─────────────────────────────── */
.prod-img { overflow: hidden; }

/* ── STAT BOX COUNTER GLOW ───────────────────────────────── */
.stat-box {
  transition: var(--trans);
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(74,124,89,.12), 0 12px 32px rgba(74,124,89,.14);
  border-color: rgba(74,124,89,.18);
}
.stat-box:hover .stat-num {
  text-shadow: 0 0 20px rgba(74,124,89,.3);
}

/* ── ABOUT PREVIEW SECTION TINT ─────────────────────────── */
.about-preview {
  background: linear-gradient(160deg, #faf6ed 0%, var(--cream) 60%, #f0ebe0 100%);
}

/* ── DIST CTA FLOATING ORBS ──────────────────────────────── */
.dist-cta {
  overflow: hidden;
}
.dist-cta::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,164,87,.06) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
  pointer-events: none;
}

/* ── 3D TILT CARD STYLE ──────────────────────────────────── */
.cat-card, .cone-card, .why-card {
  transform-style: preserve-3d;
}

/* ── HERO PATTERN SLOW DRIFT ─────────────────────────────── */
.hero-pattern {
  animation: patternDrift 60s linear infinite;
}
@keyframes patternDrift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

/* ── SECTION HEADING UNDERLINE REVEAL ────────────────────── */
.sec-title {
  position: relative;
}

/* ── FOOTER FADE-IN ──────────────────────────────────────── */
footer {
  position: relative;
}

/* ── PRODUCT DETAIL PAGE ──────────────────────────────────── */
.prod-main-img {
  background: linear-gradient(145deg, #f6f1e9, #ede8d5) !important;
  box-shadow: 0 2px 4px rgba(74,124,89,.06),
              0 12px 40px rgba(74,124,89,.1),
              inset 0 1px 0 rgba(255,255,255,.8) !important;
}
.prod-main-img img { filter: drop-shadow(0 8px 20px rgba(58,46,30,.18)); }
.benefit-item {
  border-radius: 10px;
  transition: background-color 0.28s ease, border-color 0.28s ease;
}
.benefit-item:hover {
  background: rgba(74,124,89,.04);
  border-color: rgba(74,124,89,.18);
}
.benefit-check {
  background: linear-gradient(135deg, rgba(74,124,89,.14), rgba(74,124,89,.08));
}
.prod-tag-pill { border-radius: 100px; }

/* ── DIVIDERS ─────────────────────────────────────────────── */
.divider { height: 1px; background: linear-gradient(to right, var(--green), rgba(74,124,89,.12), transparent); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top { border-radius: 8px; font-weight: 700; font-size: .7rem; letter-spacing: .06em; }

/* ── FOOTER DEPTH ─────────────────────────────────────────── */
footer { background: linear-gradient(160deg, #141e17, var(--dark) 60%, #0e1a12); }
.fcol h4 { letter-spacing: .02em; }

/* ── SPOTLIGHT CARDS ──────────────────────────────────────── */
.spot-card { border-radius: 12px; overflow: hidden; }
.spot-top { background: linear-gradient(145deg, rgba(26,46,32,.96), #0a1e10); }

/* ═══════════════════════════════════════════════════════════
   MOBILE OVERHAUL — Comprehensive fixes for all pages
   Targets: nav, product grids, footer, spacing, collage
═══════════════════════════════════════════════════════════ */

/* ── PRODUCT GRIDS ON MOBILE (all product pages) ─────────── */
@media (max-width: 768px) {
  /* Cone showcase grid: mehndi-cones.html */
  .cone-main-grid { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
  .cone-showcase-img { height: 200px !important; }

  /* Cone feature grid on homepage: 2 → 1 col */
  .mehndi-cones-grid { grid-template-columns: repeat(2,1fr) !important; gap: 1rem !important; }
  .cone-img { height: 160px !important; }

  /* Contact page two-column → single */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-info { order: -1; }

  /* Footer: reduce top padding, ensure proper spacing */
  footer { padding: 4rem 0 2rem !important; }
  .footer-grid { gap: 2rem !important; }
  .footer-brand { text-align: left; }
  .footer-brand img { margin-bottom: 1rem; }
  .footer-brand p { max-width: 100% !important; }
  .fcol h4 { margin-bottom: 1rem; }
  .fcol ul { gap: .5rem; }
  .footer-bottom { padding-top: 1.5rem; gap: .75rem; }

  /* Product collage: make images show cleanly */
  .product-collage {
    grid-template-columns: 1.2fr 1fr !important;
    grid-template-rows: 180px 180px !important;
    height: auto !important;
  }
  .collage-item.tall { grid-row: 1 / 3; }

  /* Category compare table: horizontal scroll on mobile */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }

  /* Back-to-top button: move above WhatsApp button */
  .back-to-top { bottom: 5.5rem; right: 1.5rem; }

  /* Quality page standards grid */
  .standards-grid { grid-template-columns: 1fr 1fr !important; }

  /* Newsletter form on mobile */
  .news-form { flex-direction: row; }

  /* Page hero: tighter padding on mobile */
  .page-hero { padding-top: 100px !important; padding-bottom: 3rem !important; min-height: 40vh !important; }
  .page-hero-h1 { font-size: clamp(1.85rem, 6vw, 2.8rem) !important; }
  .page-hero-sub { font-size: .88rem !important; max-width: 100% !important; }
}

@media (max-width: 480px) {
  /* Cone feature on homepage: 1 col on very small screens */
  .mehndi-cones-grid { grid-template-columns: 1fr !important; }
  .cone-img { height: 180px !important; }

  /* Product collage: single column on tiny screens */
  .product-collage {
    grid-template-columns: 1fr !important;
    grid-template-rows: 200px 140px 140px !important;
    height: auto !important;
  }
  .collage-item.tall { grid-row: auto !important; }

  /* Stat boxes: all 3 in a row (keep compact) */
  .about-stats { grid-template-columns: repeat(3,1fr) !important; gap: .5rem !important; }
  .stat-box { padding: 1rem .6rem !important; }
  .stat-num { font-size: 1.8rem !important; }

  /* Footer: increase link tap targets */
  .fcol ul a { padding: .25rem 0; display: block; }

  /* Distributor CTA perks: stack */
  .dist-perks { flex-direction: column; align-items: center; gap: .6rem; }

  /* Gallery filter tabs: wrap properly */
  .filter-tabs { gap: .4rem; }
  .filter-btn { font-size: .68rem; padding: .45rem 1rem; }
}

/* ── NAV LOGO: consistent size across pages ───────────────── */
@media (max-width: 768px) {
  .nav-logo img { height: 52px !important; }
  .navbar.scrolled .nav-logo img { height: 42px !important; }
  .nav-inner { padding: 0 1.25rem !important; }
}

/* ── MOBILE NAV: Product sub-group visual separator ──────── */
@media (max-width: 768px) {
  /* Ensure products section sub-items look grouped */
  .mobile-nav a:not(.mob-sub) + .mob-sub { margin-top: .15rem; }
  .mob-sub + a:not(.mob-sub) { margin-top: 1rem; }
}

/* ── HERO CANVAS: don't overflow on mobile ───────────────── */
@media (max-width: 768px) {
  #heroCanvas { position: absolute; inset: 0; width: 100% !important; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FIXES v3 — Column order, overflow, nav, forms
═══════════════════════════════════════════════════════════ */

/* ── ABOUT SECTION: text above images on mobile ─────────── */
@media (max-width: 768px) {
  /* Homepage "Our Story" — text (about-text) first, collage second */
  .about-split { display: flex !important; flex-direction: column !important; }
  .about-split .product-collage { order: 2; }
  .about-split .about-text { order: 1; }

  /* About page "Our Beginning" — text (reveal div) first, collage second */
  .brand-story-grid { display: flex !important; flex-direction: column !important; }
  .brand-story-grid .product-collage { order: 2; }
  .brand-story-grid > div:not(.product-collage) { order: 1; }
  .brand-story-grid > .reveal:not(.product-collage) { order: 1; }
}

/* ── PRODUCTS PAGE: commitment grid overflow fix ─────────── */
@media (max-width: 900px) {
  #whyGrid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  #whyGrid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
}

/* ── PREVENT HORIZONTAL OVERFLOW globally ────────────────── */
html, body { overflow-x: hidden !important; max-width: 100%; }
section, .container, .container-wide { max-width: 100%; }
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── BECOME A DISTRIBUTOR: highlight in desktop nav ──────── */
.nav-links a.nav-dist-highlight {
  color: var(--gold) !important;
  border: 1px solid rgba(201,164,87,.35);
  border-radius: 3px;
  padding: .4rem .9rem !important;
  background: rgba(201,164,87,.08);
  margin-left: .25rem;
}
.nav-links a.nav-dist-highlight:hover {
  background: rgba(201,164,87,.18) !important;
  color: #e8c97a !important;
}
.nav-links a.nav-dist-highlight::after { display: none !important; }

/* ── DISTRIBUTOR FORM: textarea overflow fix on mobile ────── */
@media (max-width: 768px) {
  .fg textarea, .fgroup textarea { resize: none !important; max-width: 100% !important; width: 100% !important; box-sizing: border-box; }
  .form-card { padding: 1.5rem 1rem !important; overflow: hidden; }
  .review-grid { grid-template-columns: 1fr !important; }
  .rev-row { flex-direction: column; gap: .25rem; }
  .rev-lbl { min-width: unset !important; font-weight: 600; color: var(--tlt); }
  .rev-val { text-align: left !important; word-break: break-word; }
  .rev-sec { padding: 1rem; }
}

/* ── QUALITY PAGE: prevent right overflow ────────────────── */
.promise-layout, .sourcing-steps, .standards-grid, .nono-grid {
  max-width: 100%;
}
@media (max-width: 768px) {
  .promise-layout { grid-template-columns: 1fr !important; }
}

/* ── FOOTER: ensure no overflow on any page ──────────────── */
footer { overflow: hidden; }
@media (max-width: 768px) {
  footer { overflow: hidden; }
  .footer-grid { overflow: hidden; }
}
