/** Shopify CDN: Minification failed

Line 62:1 Unexpected "50%"
Line 62:39 Unexpected "}"
Line 599:1 Unexpected "50%"
Line 599:38 Unexpected "}"

**/
/* ============================================================
   THEME.CSS — Amritksheer Shopify Theme v1.0
   Section-specific styles
============================================================ */

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar { background: var(--clr-primary-deep); padding: 9px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: block; overflow: hidden; }
.ticker-inner { display: inline-flex; animation: tickerMove 40s linear infinite; }
.ticker-inner span { padding: 0 2.4rem; font-size: .68rem; color: #a8d8a0; letter-spacing: .07em; font-weight: 500; }
.ticker-inner .ticker-dot { color: #f5d060; padding: 0 .3rem; }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HEADER ── */
.site-header { background: var(--clr-white); border-bottom: 1px solid var(--clr-border); position: sticky; top: 0; z-index: 900; transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 4%; max-width: 1400px; margin: 0 auto; }
.header-logo img { height: 50px; object-fit: contain; }
.header-logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--clr-primary-deep); }
.header-nav { display: flex; }
.nav-list { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 0 1rem; font-size: .77rem; font-weight: 500; color: var(--clr-muted); text-transform: uppercase; letter-spacing: .07em; line-height: 72px; transition: color var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--clr-primary); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px; background: var(--clr-primary); border-radius: 2px 2px 0 0; }
.nav-arrow { font-size: .65rem; margin-left: .2rem; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; width: 220px; background: #fff; border: 1px solid var(--clr-border); border-top: 2px solid var(--clr-primary); border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-md); padding: .4rem 0; z-index: 1000; }
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown-link { display: block; padding: .6rem 1.1rem; font-size: .77rem; color: var(--clr-muted); transition: all var(--transition); }
.nav-dropdown-link:hover { color: var(--clr-primary); background: var(--clr-primary-light); padding-left: 1.4rem; }
.header-actions { display: flex; align-items: center; gap: .4rem; }
.header-icon-btn { background: none; border: none; font-size: 1rem; color: var(--clr-muted); padding: .45rem; border-radius: var(--radius-sm); transition: all var(--transition); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.header-icon-btn:hover { color: var(--clr-primary); background: var(--clr-primary-light); }
.header-cart-btn { display: flex; align-items: center; justify-content: center; padding: .45rem; color: var(--clr-muted); position: relative; transition: color var(--transition); border-radius: var(--radius-sm); }
.header-cart-btn:hover { color: var(--clr-primary); background: var(--clr-primary-light); }
.cart-count-bubble { position: absolute; top: 0; right: 0; background: var(--clr-orange); color: #fff; font-size: .5rem; font-weight: 700; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.header-cta { margin-left: .6rem; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: .5rem; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--clr-border); padding: 1rem 4%; }
.mobile-menu.open { display: block; }
.mobile-nav-link { display: block; padding: .75rem 0; font-size: .88rem; font-weight: 500; color: var(--clr-text); border-bottom: 1px solid var(--clr-border); }
.mobile-nav-child { padding-left: 1.5rem; font-size: .82rem; color: var(--clr-muted); }

/* ── SEARCH OVERLAY ── */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9000; align-items: flex-start; justify-content: center; padding-top: 10vh; }
.search-overlay.open { display: flex; }
.search-overlay-inner { background: #fff; border-radius: var(--radius-xl); padding: 2.5rem; width: 90%; max-width: 600px; position: relative; display: flex; gap: 1rem; align-items: center; }
.search-input { flex: 1; padding: .9rem 1.2rem; border: 2px solid var(--clr-border); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; outline: none; }
.search-input:focus { border-color: var(--clr-primary); }
.search-submit { background: var(--clr-primary); color: #fff; border: none; padding: .9rem 1.5rem; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; cursor: pointer; }
.search-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; color: var(--clr-muted); cursor: pointer; }

 50% { transform: translateY(-14px); } }


/* ══════════════════════════════════════════════
   HERO SECTION — Clean, authoritative definition
   Left col: text | Right col: image (desktop)
   Mobile: single column, text centered, image hidden
══════════════════════════════════════════════ */

/* Outer section — full-width cream background */
.hero-section {
  background: var(--clr-cream);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 25%, rgba(61,125,53,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(61,125,53,.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Inner grid — text LEFT, image RIGHT */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

/* ── LEFT COLUMN: Text ── */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 4% 5rem 8%;
  text-align: left;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  font-size: .66rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--clr-primary);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 700;
  color: var(--clr-primary-deep);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 1.3rem;
  max-width: 14ch;
}
.hero-heading em {
  font-style: italic;
  color: var(--clr-primary);
  font-weight: 400;
}

.hero-subtext {
  font-size: .93rem;
  color: var(--clr-muted);
  line-height: 1.85;
  max-width: 44ch;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.hero-trust-chips {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--clr-muted);
  font-weight: 500;
}

/* ── RIGHT COLUMN: Image ── */
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5% 4rem 3%;
  overflow: visible;        /* allow floating pills/badges to bleed */
  z-index: 2;
}

.hero-main-img {
  width: 420px;
  max-width: 90%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  animation: heroFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Placeholder shown when no image is uploaded */
.hero-img-placeholder {
  width: 420px;
  max-width: 90%;
  height: 500px;
  background: var(--clr-sand);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}

/* Small floating corner images */
.hero-float-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.float-1 {
  width: 148px;
  height: 148px;
  bottom: 3rem;
  left: 0;
  animation: heroFloat 5s ease-in-out infinite .8s;
}
.float-2 {
  width: 124px;
  height: 124px;
  top: 3rem;
  right: 1rem;
  animation: heroFloat 5s ease-in-out infinite 1.6s;
}

/* Rating pill — bottom right of image column */
.hero-rating-pill {
  position: absolute;
  bottom: 5rem;
  right: .5rem;
  background: #fff;
  border-radius: var(--radius-full);
  padding: .75rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 4;
}
.rating-stars  { color: #f5a623; font-size: .82rem; letter-spacing: .08em; }
.rating-score  { font-size: .74rem; font-weight: 700; color: var(--clr-primary-deep); }
.rating-count  { font-size: .62rem; color: var(--clr-muted); }

/* Est. badge — top left of image column */
.hero-est-badge {
  position: absolute;
  top: 3rem;
  left: .5rem;
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: .9rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(61,125,53,.4);
  z-index: 4;
}
.est-year  { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; line-height: 1; display: block; }
.est-label { font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; opacity: .82; margin-top: .15rem; display: block; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--clr-primary-deep); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(5, 1fr); max-width: var(--container-max); margin: 0 auto; padding: 0 5%; height: 68px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .7rem; }
.trust-icon { font-size: 1.2rem; }
.trust-title { font-size: .72rem; color: rgba(255,255,255,.8); font-weight: 600; letter-spacing: .04em; }
.trust-sub { font-size: .62rem; color: rgba(255,255,255,.5); }
.trust-divider { width: 1px; background: rgba(255,255,255,.1); }

/* ── STORY SPLIT ── */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-split.image-right { direction: rtl; }
.story-split.image-right > * { direction: ltr; }
.story-image-stack { position: relative; }
.story-main-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.story-accent-img { position: absolute; width: 190px; height: 150px; object-fit: cover; border-radius: var(--radius-lg); border: 4px solid #fff; box-shadow: var(--shadow-md); }
.story-accent-img.br { bottom: -1.5rem; right: -1.5rem; }
.story-accent-img.bl { bottom: -1.5rem; left: -1.5rem; }
.year-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--clr-orange); color: #fff; border-radius: var(--radius-lg); padding: .9rem 1.3rem; text-align: center; box-shadow: 0 8px 24px rgba(217,95,30,.4); }
.year-num { display: block; font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.year-label { display: block; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .1rem; }
.story-heading { font-size: clamp(1.8rem, 3vw, 2.7rem); color: var(--clr-primary-deep); margin: 0 0 1.4rem; }
.story-heading em { font-style: italic; color: var(--clr-primary); font-weight: 400; }
.story-text p { font-size: .88rem; color: var(--clr-muted); line-height: 1.9; margin-bottom: 1rem; }
.story-img-placeholder { width: 100%; height: 480px; background: var(--clr-sand); border-radius: var(--radius-xl); }

/* ── PROCESS STEPS ── */
.process-track { display: grid; grid-template-columns: repeat(var(--step-count, 5), 1fr); position: relative; margin-top: 3rem; gap: 0; }
.process-track::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--clr-primary-soft), var(--clr-primary), var(--clr-primary-soft)); }
.process-step { text-align: center; padding: 0 .8rem; }
.step-number { width: 56px; height: 56px; background: var(--clr-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 0 auto 1rem; position: relative; z-index: 2; box-shadow: 0 6px 20px rgba(61,125,53,.35); }
.step-icon-wrap { font-size: 1.5rem; margin-bottom: .6rem; }
.step-title { font-size: .83rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .4rem; }
.step-desc { font-size: .72rem; color: var(--clr-muted); line-height: 1.6; }

/* ── VIDEO SECTION ── */
.video-section { background: var(--clr-primary-deep); position: relative; overflow: hidden; }
.video-section::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.video-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.video-heading { font-size: clamp(2rem, 3vw, 3rem); color: #fff; margin: .9rem 0 1.3rem; line-height: 1.15; }
.video-heading em { color: #7ac97a; font-style: italic; font-weight: 400; }
.video-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 2rem; }
.video-steps { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.video-step { display: flex; align-items: center; gap: .8rem; }
.step-icon { width: 34px; height: 34px; background: rgba(122,201,122,.18); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.step-text { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 500; }
.video-embed-col { position: relative; }
.video-embed-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.video-embed-wrap iframe { display: block; width: 100%; height: 360px; border: none; }
.video-placeholder { height: 360px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: .88rem; }
.video-badge { position: absolute; top: -1rem; right: -1rem; background: var(--clr-orange); color: #fff; border-radius: var(--radius-lg); padding: .9rem 1.2rem; text-align: center; box-shadow: 0 8px 20px rgba(217,95,30,.5); z-index: 3; }
.video-badge-num { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.video-badge-label { display: block; font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

/* ── STATS ── */
.stats-section .section-container { text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: #7ac97a; line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; }

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-overall-card { background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary)); border-radius: var(--radius-lg); padding: 2rem; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; }
.overall-score { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: #fff; line-height: 1; }
.overall-stars { font-size: 1.2rem; color: #f5d060; letter-spacing: .2em; }
.overall-count { font-size: .68rem; opacity: .6; letter-spacing: .1em; text-transform: uppercase; }
.overall-badge { font-size: .62rem; background: rgba(255,255,255,.15); padding: .3rem .75rem; border-radius: var(--radius-full); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.review-card { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.8rem; transition: all var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #f5a623; font-size: .82rem; margin-bottom: .8rem; letter-spacing: .08em; }
.review-text { font-family: var(--font-heading); font-size: .93rem; font-style: italic; color: #444; line-height: 1.75; margin-bottom: 1.3rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-primary), #7ac97a); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; flex-shrink: 0; }
.author-name { font-size: .78rem; font-weight: 600; color: var(--clr-primary-deep); }
.author-meta { font-size: .62rem; color: #bbb; margin-top: .1rem; }

/* ── SUPPORTERS ── */
.supporters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; }
.supporter-card { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-md); height: 80px; display: flex; align-items: center; justify-content: center; padding: .8rem; transition: all var(--transition); }
.supporter-card:hover { border-color: var(--clr-primary); box-shadow: 0 6px 20px rgba(61,125,53,.12); transform: translateY(-3px); }
.supporter-fallback { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.supporter-icon { font-size: 1.4rem; }
.supporter-name { font-size: .55rem; font-weight: 700; color: var(--clr-muted); letter-spacing: .08em; text-transform: uppercase; text-align: center; }
.supporters-footnote { text-align: center; margin-top: 2rem; font-size: .74rem; color: var(--clr-muted); font-style: italic; }

/* ── CTA BANNER ── */
.cta-banner-section { background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 55%, #6ab85f 100%); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-heading { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; font-weight: 700; margin-bottom: .9rem; }
.cta-heading em { font-style: italic; color: #b5e5a8; font-weight: 400; }
.cta-sub { font-size: .9rem; color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto 2.4rem; line-height: 1.8; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--clr-primary-deep); }
.footer-col h4 { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #7ac97a; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .77rem; color: rgba(255,255,255,.38); transition: color var(--transition); }
.footer-col a:hover { color: #7ac97a; }
.footer-col li:not(:has(a)) { font-size: .77rem; color: rgba(255,255,255,.38); }
.footer-bottom { padding: 1.3rem 8%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; max-width: var(--container-max); margin: 0 auto; }
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.22); }
.footer-policy-links { display: flex; gap: 1.3rem; }
.footer-policy-links a { font-size: .68rem; color: rgba(255,255,255,.22); transition: color var(--transition); }
.footer-policy-links a:hover { color: rgba(255,255,255,.55); }

/* ── PDP ── */
.pdp-wrapper { max-width: var(--container-max); margin: 0 auto; }
.pdp-main { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding: 3rem 5%; }
.pdp-gallery { position: sticky; top: 90px; }
.pdp-main-image-wrap { border-radius: var(--radius-xl); overflow: hidden; background: var(--clr-sand); margin-bottom: 1rem; position: relative; cursor: zoom-in; }
.pdp-main-img { width: 100%; height: 520px; object-fit: cover; transition: transform .4s; display: block; }
.pdp-main-image-wrap:hover .pdp-main-img { transform: scale(1.04); }
.pdp-badges-overlay { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .5rem; z-index: 2; }
.pdp-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.pdp-thumb { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); aspect-ratio: 1; background: none; padding: 0; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--clr-primary); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-vendor { font-size: .68rem; font-weight: 700; color: var(--clr-primary); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; }
.pdp-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 700; color: var(--clr-primary-deep); line-height: 1.15; margin-bottom: .8rem; }
.pdp-meta-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pdp-stars { color: #f5a623; font-size: .88rem; letter-spacing: .08em; }
.pdp-review-count { font-size: .75rem; color: var(--clr-primary); font-weight: 600; text-decoration: underline; cursor: pointer; }
.pdp-verified { font-size: .68rem; color: var(--clr-muted); display: flex; align-items: center; gap: .3rem; }
.pdp-price-block { background: var(--clr-primary-light); border-radius: var(--radius-md); padding: 1.2rem; margin-bottom: 1.6rem; }
.pdp-tax-note { font-size: .68rem; color: var(--clr-muted); margin-top: .4rem; }
.price-wrapper { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.price-wrapper .price-badge { margin-left: auto; background: var(--clr-orange); color: #fff; font-size: .68rem; font-weight: 700; padding: .3rem .75rem; border-radius: var(--radius-full); font-family: var(--font-body); }
.pdp-option-group { margin-bottom: 1.4rem; }
.option-label { display: block; font-size: .72rem; font-weight: 700; color: var(--clr-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.option-values { display: flex; gap: .6rem; flex-wrap: wrap; }
.option-btn { border: 1.5px solid var(--clr-border); background: #fff; border-radius: var(--radius-sm); padding: .5rem 1.1rem; font-size: .8rem; font-weight: 600; color: var(--clr-primary-deep); cursor: pointer; transition: all var(--transition); font-family: inherit; }
.option-btn.active, .option-btn:hover { border-color: var(--clr-primary); background: var(--clr-primary-light); color: var(--clr-primary); }
.pdp-quantity-row { margin-bottom: 1.6rem; }
.pdp-action-row { display: flex; gap: .8rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.pdp-action-row .btn { flex: 1; min-width: 140px; }
.pdp-atc-btn { gap: .5rem; }
.pdp-perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.6rem; }
.pdp-perk { display: flex; align-items: center; gap: .6rem; background: var(--clr-cream); border-radius: var(--radius-md); padding: .8rem; font-size: .74rem; color: var(--clr-primary-deep); font-weight: 500; }
.pdp-perk svg { color: var(--clr-primary); flex-shrink: 0; }
.pdp-video-link { display: flex; align-items: center; gap: 1rem; background: var(--clr-primary-deep); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; margin-bottom: 1.5rem; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.pdp-video-link:hover { background: var(--clr-primary-dark); }
.pvl-play { font-size: 1.8rem; flex-shrink: 0; }
.pdp-video-link strong { display: block; font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .15rem; }
.pdp-video-link span { font-size: .7rem; color: rgba(255,255,255,.55); }
.pvl-arrow { margin-left: auto; font-size: .8rem; color: #7ac97a; font-weight: 600; white-space: nowrap; }
.pdp-accordion { border-top: 1px solid var(--clr-border); }
.accordion-item { border-bottom: 1px solid var(--clr-border); }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem 0; font-size: .84rem; font-weight: 600; color: var(--clr-primary-deep); background: none; border: none; cursor: pointer; font-family: inherit; text-align: left; }
.accordion-icon { font-size: .7rem; color: var(--clr-muted); transition: transform .25s; flex-shrink: 0; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { padding: .2rem 0 1.2rem; }
.accordion-body p, .accordion-body li { font-size: .8rem; color: var(--clr-muted); line-height: 1.8; }
.accordion-body ul { padding-left: 1rem; }
.accordion-body li { list-style: disc; margin-bottom: .3rem; }
.pdp-story-section { padding: 5rem 5%; }
.benefit-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.benefit-item { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
.benefit-icon { width: 40px; height: 40px; background: var(--clr-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.benefit-item strong { display: block; font-size: .82rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .2rem; }
.benefit-item p { font-size: .74rem; color: var(--clr-muted); line-height: 1.5; margin: 0; }
.related-products-section { padding: 5rem 5%; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 1rem 5%; max-width: var(--container-max); margin: 0 auto; }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: .3rem; }
.breadcrumb-item, .breadcrumb-item a { font-size: .75rem; color: var(--clr-muted); }
.breadcrumb-item a:hover { color: var(--clr-primary); }
.breadcrumb-current { font-weight: 600; color: var(--clr-primary-deep); }
.breadcrumb-sep { color: #ccc; }

/* ── COLLECTION PAGE ── */
.collection-hero { padding: 3rem 5%; }
.collection-title { font-size: 2.5rem; }
.collection-desc { margin-top: .8rem; color: var(--clr-muted); max-width: 65ch; }
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.collection-count { font-size: .82rem; color: var(--clr-muted); }
.sort-select { padding: .5rem 1rem; border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); font-size: .82rem; font-family: inherit; background: #fff; cursor: pointer; outline: none; }
.collection-empty { color: var(--clr-muted); font-size: .9rem; padding: 3rem 0; }

/* ── PAGE ── */
.page-hero { padding: 3rem 5%; }
.page-title { font-size: clamp(1.8rem, 3vw, 3rem); }
.page-content-inner { max-width: 800px; }

/* ── ABOUT PAGE ── */
.about-hero-section { background: var(--clr-primary-deep); padding: 7rem 5%; position: relative; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(61,125,53,.3) 0%, transparent 60%); pointer-events: none; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 1; }
.about-hero-heading { font-size: clamp(2.2rem, 4vw, 4rem); color: #fff; margin-bottom: 1.3rem; line-height: 1.1; }
.about-hero-heading em { color: #7ac97a; font-style: italic; font-weight: 400; }
.about-hero-sub { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 2rem; max-width: 46ch; }
.about-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-hero-image { position: relative; }
.about-hero-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-hero-badge { position: absolute; bottom: -1.2rem; left: 2rem; background: #fff; border-radius: var(--radius-lg); padding: 1.1rem 1.6rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .9rem; }
.ab-icon { font-size: 1.8rem; }
.about-hero-badge strong { display: block; font-size: .84rem; font-weight: 700; color: var(--clr-primary-deep); }
.about-hero-badge span { font-size: .68rem; color: var(--clr-muted); }
.about-stats-bar { padding: 3rem 5%; }
.about-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; max-width: var(--container-max); margin: 0 auto; }
.about-stat { text-align: center; }
.as-num { display: block; font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: .3rem; }
.as-lbl { display: block; font-size: .68rem; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; }

/* ── IWT ── */
.iwt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.iwt-reverse { direction: rtl; }
.iwt-reverse > * { direction: ltr; }
.iwt-image img, .iwt-image .placeholder-svg { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
.iwt-heading { font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--clr-primary-deep); margin: .8rem 0 1.2rem; }
.iwt-text { font-size: .88rem; color: var(--clr-muted); line-height: 1.85; margin-bottom: 1.5rem; }
.iwt-bullet { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem; border-radius: var(--radius-md); background: var(--clr-cream); margin-bottom: .8rem; }
.bullet-icon { width: 38px; height: 38px; background: var(--clr-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.bullet-title { display: block; font-size: .82rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .2rem; }
.bullet-desc { font-size: .76rem; color: var(--clr-muted); line-height: 1.5; margin: 0; }

/* ── RICH TEXT ── */
.rich-text-inner { max-width: 780px; }
.text-center .rich-text-inner { margin: 0 auto; }

/* ── PDP (PRODUCT DETAIL PAGE) ── */
.pdp-wrapper { max-width: var(--container-max); margin: 0 auto; padding: 2rem 5% 5rem; }
.pdp-main { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* Gallery */
.pdp-gallery { position: sticky; top: 90px; }
.pdp-main-image-wrap { border-radius: var(--radius-xl); overflow: hidden; background: var(--clr-sand); margin-bottom: .9rem; position: relative; }
.pdp-main-img { width: 100%; height: 540px; object-fit: cover; transition: transform .4s; display: block; }
.pdp-main-image-wrap:hover .pdp-main-img { transform: scale(1.03); }
.pdp-badges-overlay { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .4rem; z-index: 2; }
.pdp-thumbs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.pdp-thumb { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); aspect-ratio: 1; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--clr-primary); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info */
.pdp-info { display: flex; flex-direction: column; gap: 0; }
.pdp-meta-row { margin-bottom: .5rem; }
.pdp-brand { font-size: .68rem; font-weight: 700; color: var(--clr-primary); letter-spacing: .15em; text-transform: uppercase; }
.pdp-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 700; color: var(--clr-primary-deep); line-height: 1.15; margin-bottom: .8rem; }
.pdp-stars { color: #f5a623; font-size: .9rem; letter-spacing: .08em; }
.pdp-review-count { font-size: .75rem; color: var(--clr-primary); font-weight: 600; text-decoration: underline; cursor: pointer; }

/* Price */
.pdp-price-block { background: var(--clr-primary-light); border-radius: var(--radius-md); padding: 1.2rem 1.4rem; margin-bottom: 1.4rem; }
.price-row { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.pdp-price-main { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--clr-primary-deep); }
.price--compare { font-family: var(--font-heading); font-size: 1.1rem; color: #bbb; text-decoration: line-through; }
.price-badge { background: var(--clr-orange); color: #fff; font-size: .68rem; font-weight: 700; padding: .28rem .72rem; border-radius: var(--radius-full); }
.pdp-tax-note { font-size: .68rem; color: var(--clr-muted); margin-top: .3rem; }

/* Options */
.pdp-option-group { margin-bottom: 1.3rem; }
.option-label { font-size: .72rem; font-weight: 700; color: var(--clr-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; display: block; }
.option-values { display: flex; gap: .6rem; flex-wrap: wrap; }
.option-btn { border: 1.5px solid var(--clr-border); background: #fff; border-radius: var(--radius-sm); padding: .5rem 1.1rem; font-size: .8rem; font-weight: 600; color: var(--clr-primary-deep); cursor: pointer; transition: all var(--transition); font-family: inherit; }
.option-btn.active, .option-btn:hover { border-color: var(--clr-primary); background: var(--clr-primary-light); color: var(--clr-primary); }
.option-btn:disabled { opacity: .45; cursor: not-allowed; }

/* Quantity */
.pdp-quantity-row { margin-bottom: 1.3rem; }

/* Actions */
.pdp-action-row { display: flex; gap: .8rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.pdp-atc-btn { flex: 1; min-width: 140px; }

/* Perks */
.pdp-perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.5rem; }
.pdp-perk { display: flex; align-items: center; gap: .6rem; background: var(--clr-cream); border-radius: var(--radius-md); padding: .75rem; }
.perk-icon { font-size: 1rem; flex-shrink: 0; }
.perk-text { font-size: .74rem; color: var(--clr-primary-deep); font-weight: 500; line-height: 1.3; }

/* Video link card */
.pdp-video-link { background: var(--clr-primary-deep); border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; cursor: pointer; transition: opacity var(--transition); text-decoration: none; }
.pdp-video-link:hover { opacity: .9; }
.pdp-video-play { font-size: 1.8rem; flex-shrink: 0; }
.pdp-video-title { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .15rem; }
.pdp-video-sub { font-size: .7rem; color: rgba(255,255,255,.55); }
.pdp-video-arrow { margin-left: auto; font-size: .8rem; color: #7ac97a; font-weight: 600; white-space: nowrap; }

/* Accordion */
.pdp-accordion { border-top: 1px solid var(--clr-border); }
.accordion-item { border-bottom: 1px solid var(--clr-border); }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem 0; background: none; border: none; font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--clr-primary-deep); cursor: pointer; text-align: left; }
.accordion-icon { font-size: .7rem; color: var(--clr-muted); transition: transform var(--transition); display: inline-block; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { padding: 0 0 1.1rem; }
.accordion-body p, .accordion-body li { font-size: .8rem; color: var(--clr-muted); line-height: 1.8; }
.accordion-body ul { padding-left: 1rem; }
.accordion-body li { list-style: disc; margin-bottom: .3rem; }
.accordion-body[hidden] { display: none; }

/* PDP Story section */
.pdp-story-section { background: var(--clr-cream); padding: 5rem 5%; }
.pdp-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: var(--container-max); margin: 0 auto; }
.pdp-story-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
.benefit-list { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.5rem; }
.benefit-item { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
.benefit-icon { width: 40px; height: 40px; background: var(--clr-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.benefit-title { font-size: .82rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .2rem; }
.benefit-desc { font-size: .74rem; color: var(--clr-muted); line-height: 1.5; margin: 0; }

/* ── VIDEO SECTION ── */
.video-section { background: var(--clr-primary-deep); position: relative; overflow: hidden; }
.video-section::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.video-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.video-heading { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3rem); color: #fff; margin-bottom: 1.2rem; margin-top: .8rem; line-height: 1.15; }
.video-heading em { color: #7ac97a; font-style: italic; font-weight: 400; }
.video-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 1.8rem; }
.video-steps { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.video-step { display: flex; align-items: center; gap: .8rem; }
.step-icon { width: 34px; height: 34px; background: rgba(122,201,122,.18); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.step-text { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 500; }
.video-embed-col { position: relative; }
.video-embed-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.video-embed-wrap iframe { display: block; width: 100%; height: 360px; border: none; }
.video-placeholder { display: flex; align-items: center; justify-content: center; height: 360px; background: rgba(255,255,255,.05); border-radius: var(--radius-xl); color: rgba(255,255,255,.4); font-size: 1rem; }
.video-badge { position: absolute; top: -1rem; right: -1rem; background: var(--clr-orange); color: #fff; border-radius: var(--radius-lg); padding: .85rem 1.1rem; text-align: center; box-shadow: 0 8px 20px rgba(217,95,30,.5); z-index: 3; }
.video-badge-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1; display: block; }
.video-badge-label { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

 50%{ transform: translateY(-14px); } }

/* ── TRUST BAR ── */
.trust-bar { background: var(--clr-primary-deep); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(5, 1fr); height: 68px; max-width: var(--container-max); margin: 0 auto; padding: 0 5%; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .7rem; }
.trust-icon { font-size: 1.2rem; }
.trust-title { font-size: .73rem; color: rgba(255,255,255,.8); font-weight: 600; letter-spacing: .03em; }
.trust-sub { font-size: .62rem; color: rgba(255,255,255,.5); }
.trust-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; }

/* ── STORY SPLIT ── */
.story-split-section .story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-split.image-right { direction: rtl; }
.story-split.image-right > * { direction: ltr; }
.story-image-stack { position: relative; }
.story-main-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
.story-accent-img { position: absolute; width: 190px; height: 150px; object-fit: cover; border-radius: var(--radius-lg); border: 4px solid #fff; box-shadow: var(--shadow-md); bottom: -1.5rem; right: -1.5rem; }
.story-img-placeholder { width: 100%; height: 480px; background: var(--clr-sand); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; }
.year-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--clr-orange); color: #fff; border-radius: var(--radius-lg); padding: .9rem 1.2rem; text-align: center; box-shadow: 0 8px 24px rgba(217,95,30,.4); }
.year-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; line-height: 1; display: block; }
.year-label { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .1rem; display: block; }
.story-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.7rem); color: var(--clr-primary-deep); margin: .8rem 0 1.4rem; line-height: 1.15; }
.story-heading em { font-style: italic; color: var(--clr-primary); font-weight: 400; }
.story-text p { font-size: .88rem; color: var(--clr-muted); line-height: 1.9; margin-bottom: 1rem; }

/* ── PROCESS STEPS ── */
.process-section {}
.process-track { display: grid; gap: 0; position: relative; margin-top: 3rem; }
.process-track::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--clr-primary-soft), var(--clr-primary), var(--clr-primary-soft)); }
.proc-step { text-align: center; padding: 0 .8rem; }
.proc-number { width: 56px; height: 56px; background: var(--clr-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 0 auto 1rem; position: relative; z-index: 2; box-shadow: 0 6px 20px rgba(61,125,53,.35); }
.proc-icon { font-size: 1.5rem; margin-bottom: .6rem; }
.proc-title { font-size: .83rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .4rem; }
.proc-desc { font-size: .72rem; color: var(--clr-muted); line-height: 1.6; }

/* ── STATS ── */
.stats-section {}
.stats-grid { display: grid; gap: 2rem; margin-top: 2.5rem; }
.stat-card { text-align: center; padding: 2.5rem 1.5rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); }
.stat-number { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: #7ac97a; line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; }

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; gap: 1.4rem; }
.review-card { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform var(--transition), box-shadow var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #f5a623; font-size: .85rem; margin-bottom: .8rem; letter-spacing: .08em; }
.review-text { font-family: var(--font-heading); font-size: .93rem; font-style: italic; color: #444; line-height: 1.75; margin-bottom: 1.3rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-primary), #7ac97a); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; flex-shrink: 0; }
.reviewer-name { font-size: .78rem; font-weight: 600; color: var(--clr-primary-deep); }
.reviewer-via { font-size: .62rem; color: #bbb; margin-top: .1rem; }
.review-overall-card { background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary)); border-radius: var(--radius-lg); padding: 2rem 1.5rem; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .45rem; }
.overall-score-num { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: #fff; line-height: 1; }
.overall-stars { font-size: 1.2rem; color: #f5d060; letter-spacing: .2em; }
.overall-count { font-size: .68rem; opacity: .65; letter-spacing: .1em; text-transform: uppercase; }
.overall-badge { font-size: .62rem; background: rgba(255,255,255,.15); padding: .3rem .75rem; border-radius: var(--radius-full); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-top: .3rem; }

/* ── SUPPORTERS ── */
.supporters-section {}
.supporters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; margin-top: 0; }
.supporter-card { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-md); height: 80px; display: flex; align-items: center; justify-content: center; padding: .8rem; transition: all var(--transition); }
.supporter-card:hover { border-color: var(--clr-primary); box-shadow: 0 6px 20px rgba(61,125,53,.12); transform: translateY(-3px); }
.supporter-inner { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.supporter-icon { font-size: 1.4rem; }
.supporter-name { font-size: .56rem; font-weight: 700; color: var(--clr-muted); letter-spacing: .08em; text-transform: uppercase; }
.supporters-footnote { text-align: center; margin-top: 2rem; font-size: .74rem; color: var(--clr-muted); font-style: italic; }

/* ── CTA BANNER ── */
.cta-banner-section { position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner-section::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.cta-heading { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; font-weight: 700; margin-bottom: .9rem; }
.cta-heading em { font-style: italic; color: #b5e5a8; font-weight: 400; }
.cta-sub { font-size: .9rem; color: rgba(255,255,255,.75); max-width: 54ch; margin: 0 auto 2.4rem; line-height: 1.8; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── COLLECTION LIST ── */
.collection-list-section {}
.collection-list-grid { display: grid; gap: 1.2rem; }

/* ── ABOUT PAGE ── */
.about-stats-bar { background: var(--clr-primary); }

/* ── RICH TEXT ── */
.rich-text-section { padding: var(--space-2xl) 5%; }
.rich-text-section.text-center { text-align: center; }
.rich-text-section.bg-cream { background: var(--clr-cream); }

/* ── IMAGE WITH TEXT ── */
.iwt-section { padding: var(--space-2xl) 5%; }
.iwt-section.bg-cream { background: var(--clr-cream); }

/* ── FOOTER ── */
.site-footer { background: var(--clr-primary-deep); }
.footer-body { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4.5rem 5%; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo-link { display: block; margin-bottom: 1.2rem; }
.footer-logo-link img { height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); display: block; max-width: 180px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-about { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 1.4rem; }
.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.social-icon { width: 34px; height: 34px; min-width: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; transition: all .2s; }
.social-icon:hover { border-color: #7ac97a; color: #7ac97a; background: rgba(122,201,122,.1); }
.footer-address { font-size: .74rem !important; color: rgba(255,255,255,.35) !important; line-height: 1.5; }
.footer-payments { margin-top: .5rem; }
.footer-payments-label { display: block; font-size: .62rem; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.footer-payment-icons { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.pay-badge { display: flex; align-items: center; gap: .3rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; padding: .3rem .6rem; font-size: .58rem; color: rgba(255,255,255,.55); font-weight: 600; }
.pay-badge .pay-icon { font-size: .75rem; }
.footer-brand { }
.footer-col h4 { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #7ac97a; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-col a { color: rgba(255,255,255,.38); transition: color var(--transition); font-size: .78rem; }
.footer-col a:hover { color: #7ac97a; }
.footer-bottom { padding: 1.3rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; max-width: var(--container-max); margin: 0 auto; }
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.22); }
.footer-policy-links { display: flex; gap: 1.3rem; }
.footer-policy-links a { font-size: .68rem; color: rgba(255,255,255,.22); transition: color var(--transition); }
.footer-policy-links a:hover { color: rgba(255,255,255,.6); }

/* ── PASSWORD PAGE ── */
.password-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--clr-cream); }
.password-inner { text-align: center; max-width: 440px; padding: 3rem 2rem; }
.password-logo img { height: 60px; margin: 0 auto 2rem; }
.password-title { font-family: var(--font-heading); font-size: 2rem; margin-bottom: .8rem; }
.password-form { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }


/* ── DYNAMIC GRID SIZES ── */
.process-track[style*="repeat(5"] { }
.process-track[style*="repeat(4"] { }
.reviews-grid[data-cols="4"] { grid-template-columns: repeat(4,1fr); }
.reviews-grid[data-cols="3"] { grid-template-columns: repeat(3,1fr); }
.reviews-grid[data-cols="2"] { grid-template-columns: repeat(2,1fr); }
.stats-grid[data-cols="4"] { grid-template-columns: repeat(4,1fr); }
.stats-grid[data-cols="3"] { grid-template-columns: repeat(3,1fr); }
.stats-grid[data-cols="2"] { grid-template-columns: repeat(2,1fr); }
.collection-list-grid[data-cols="5"] { grid-template-columns: repeat(5,1fr); }
.collection-list-grid[data-cols="4"] { grid-template-columns: repeat(4,1fr); }
.collection-list-grid[data-cols="3"] { grid-template-columns: repeat(3,1fr); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — COMPLETE MOBILE-OPTIMISED BREAKPOINTS
   Breakpoints: 1200px | 1024px | 768px | 480px | 360px
══════════════════════════════════════════════════════════════ */

/* ── 1200px: Large tablets / small laptops ── */
@media (max-width: 1200px) {
  .supporters-grid { grid-template-columns: repeat(4, 1fr); }
  /* footer-body at 1200px — keep 5 columns */
  /* footer columns stay on one row at 1200px */
}

/* ── 1024px: Tablets landscape ── */
@media (max-width: 1024px) {
  /* Hero — tablet landscape: stack to single column */
  .hero-section { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 5rem 8%; text-align: center; align-items: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust-chips { justify-content: center; }
  .hero-media { display: flex; padding: 2rem 8% 4rem; justify-content: center; overflow: hidden; }
  .hero-main-img { width: 380px; height: 420px; }
  .hero-img-placeholder { width: 380px; height: 420px; }
  .float-1 { left: calc(50% - 215px); bottom: 1.5rem; width: 130px; height: 130px; }
  .float-2 { right: calc(50% - 235px); top: 1rem; width: 110px; height: 110px; }
  .hero-est-badge { left: calc(50% - 220px); top: 1.5rem; }
  .hero-rating-pill { right: calc(50% - 240px); bottom: 2.5rem; }

  /* Grids */
  .story-split-section .story-split,
  .iwt-grid,
  .about-hero-inner,
  .video-layout,
  .pdp-main,
  .pdp-story-inner { grid-template-columns: 1fr !important; direction: ltr !important; gap: 3rem; }
  .story-split.image-right,
  .iwt-reverse { direction: ltr; }

  /* Products */
  .product-grid[data-columns="4"] { grid-template-columns: repeat(2, 1fr); }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); height: auto; padding: 1.2rem 5%; gap: .5rem; }
  .trust-item { justify-content: flex-start; padding: .5rem 0; }
  .trust-divider { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-track { grid-template-columns: repeat(3, 1fr) !important; }
  .process-track::before { display: none; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }

  /* Footer */
  .footer-body { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 1.5rem; padding: 3.5rem 4%; }

  /* PDP gallery stays sticky but full width */
  .pdp-gallery { position: static; }
  .pdp-main-img { height: 420px; }
}

/* ── 768px: Tablets portrait / large phones ── */
@media (max-width: 768px) {
  /* Nav */
  .header-inner { height: 64px; padding: 0 5%; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-cta { display: none; }
  .header-logo img { height: 42px; }

  /* Section spacing */
  .section-padding { padding: 4rem 5%; }
  .section-padding-lg { padding: 4.5rem 5%; }

  /* Typography scale-down */
  .section-heading { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  
  .story-heading { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .video-heading { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .cta-heading { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .about-hero-heading { font-size: clamp(2rem, 6vw, 3rem); }
  .pdp-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Hero — phones: single column, show image below text */
  .hero-section { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 4rem 5% 2rem; text-align: center; align-items: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: center; gap: .8rem; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-trust-chips { justify-content: center; gap: 1rem; }
  .hero-media { display: flex; padding: 1.5rem 5% 3.5rem; justify-content: center; overflow: hidden; }
  .hero-main-img { width: 280px; height: 340px; }
  .hero-img-placeholder { width: 280px; height: 340px; }
  .float-1 { width: 100px; height: 100px; left: calc(50% - 165px); bottom: 1rem; }
  .float-2 { width: 88px; height: 88px; right: calc(50% - 185px); top: .5rem; }
  .hero-est-badge { left: calc(50% - 162px); top: 1rem; padding: .65rem .9rem; }
  .est-year { font-size: 1.4rem; }
  .hero-rating-pill { right: calc(50% - 186px); bottom: 1.8rem; padding: .55rem .9rem; }

  /* Products — keep 2 columns on tablet */
  .product-grid[data-columns="4"],
  .product-grid[data-columns="3"] { grid-template-columns: repeat(2, 1fr); }
  .product-card-image { height: 200px; }

  /* Collection list */
  .collection-list-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Supporters */
  .supporters-grid { grid-template-columns: repeat(3, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-overall-card { padding: 1.5rem; }
  .overall-score-num { font-size: 3rem; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }

  /* Process steps */
  .process-track { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem; }

  /* Story split */
  .story-main-img { height: 320px; }
  .story-accent-img { display: none; }
  .year-badge { top: 1rem; left: 1rem; padding: .7rem 1rem; }
  .year-num { font-size: 1.5rem; }

  /* Stats */
  .stat-number { font-size: 2.4rem; }

  /* Video */
  .video-embed-wrap iframe { height: 260px; }
  .video-badge { display: none; }
  .video-steps { gap: .6rem; }

  /* PDP */
  .pdp-wrapper { padding: 1.5rem 5% 4rem; }
  .pdp-main-img { height: 340px; }
  .pdp-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
  .pdp-perks-grid { grid-template-columns: 1fr 1fr; }
  .pdp-action-row { gap: .6rem; }
  .pdp-price-curr { font-size: 1.8rem; }
  .pdp-video-link { flex-wrap: wrap; gap: .6rem; }
  .pvl-arrow { width: 100%; text-align: right; }

  /* Cart */
  .cart-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .cart-item-price { grid-column: 1 / -1; text-align: right; }
  .cart-coupon { flex-direction: column; }
  .cart-coupon .btn { width: 100%; }

  /* CTA */
  .cta-inner { padding: 0 2%; }
  .cta-buttons { flex-direction: column; align-items: center; gap: .8rem; }
  .cta-buttons .btn-white,
  .cta-buttons .btn-ghost-white { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-body { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 1.2rem; padding: 3rem 4%; font-size: .75rem; }
  .footer-brand { }
  .footer-about { max-width: 100%; }

  /* About page */
  .about-hero-inner { text-align: center; }
  .about-hero-btns { justify-content: center; flex-direction: column; align-items: center; gap: .8rem; }
  .about-hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .about-hero-badge { left: 50%; transform: translateX(-50%); bottom: -1rem; width: max-content; }
  .ah-img-wrap { padding-bottom: 1.5rem; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 22px; }
  .tl-row { grid-template-columns: 44px 1fr; gap: .8rem; }
  .tl-box.empty { display: none; }

  /* Search overlay */
  .search-overlay-inner { padding: 1.5rem; gap: .6rem; flex-direction: column; }
  .search-input { width: 100%; }
  .search-close { position: absolute; top: 1rem; right: 1rem; }
}

/* ── 480px: Mobile phones ── */
@media (max-width: 480px) {
  /* Base */
  body { font-size: 15px; }
  .section-padding { padding: 3.5rem 4%; }

  /* Nav */
  .header-inner { padding: 0 4%; }
  .header-logo img { height: 38px; }

  /* Hero — small phones */
  .hero-content { padding: 3rem 4% 1.5rem; }
  .hero-heading { font-size: 2rem; line-height: 1.12; }
  .hero-subtext { font-size: .86rem; }
  .hero-media { padding: 1rem 4% 3.5rem; }
  .hero-main-img { width: 240px; height: 290px; }
  .hero-img-placeholder { width: 240px; height: 290px; }
  .float-1 { width: 85px; height: 85px; left: calc(50% - 143px); }
  .float-2 { width: 75px; height: 75px; right: calc(50% - 160px); }
  .hero-est-badge { left: calc(50% - 143px); padding: .55rem .75rem; }
  .est-year { font-size: 1.2rem; }
  .est-label { font-size: .48rem; }
  .hero-rating-pill { right: calc(50% - 162px); bottom: 1.5rem; padding: .5rem .75rem; }
  .rating-stars { font-size: .72rem; }
  .rating-score { font-size: .65rem; }
  .rating-count { font-size: .55rem; }

  /* Products — 2 col on phone */
  .product-grid[data-columns="4"],
  .product-grid[data-columns="3"],
  .product-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .product-card-image { height: 170px; }
  .product-card-body { padding: .8rem .9rem .4rem; }
  .product-title { font-size: .82rem; }
  .product-price { font-size: 1rem; }
  .product-card-footer { padding: .4rem .9rem .8rem; }
  .add-to-cart-btn { width: 32px; height: 32px; font-size: 1rem; }
  .wishlist-btn { opacity: 1; } /* always visible on mobile */

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-card { padding: 1.8rem 1rem; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: .3rem; padding: .8rem 4%; }
  .trust-title { font-size: .7rem; }
  .trust-sub { display: none; }

  /* Process */
  .process-track { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem; }
  .proc-number { width: 46px; height: 46px; font-size: 1.1rem; }
  .proc-icon { font-size: 1.3rem; }
  .proc-title { font-size: .78rem; }
  .proc-desc { font-size: .68rem; }

  /* Supporters */
  .supporters-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .supporter-card { height: 68px; }
  .supporter-icon { font-size: 1.2rem; }
  .supporter-name { font-size: .5rem; }

  /* Reviews */
  .review-text { font-size: .86rem; }
  .reviews-grid { gap: 1rem; }

  /* Video */
  .video-embed-wrap iframe { height: 220px; }
  .step-icon { width: 30px; height: 30px; font-size: .82rem; }
  .step-text { font-size: .76rem; }

  /* Story */
  .story-main-img { height: 260px; }
  .story-heading { font-size: 1.6rem; }
  .pull-quote p { font-size: .9rem; }

  /* PDP */
  .pdp-main-img { height: 280px; }
  .pdp-thumbnails { grid-template-columns: repeat(4, 1fr); gap: .4rem; }
  .pdp-title { font-size: 1.4rem; }
  .pdp-price-curr { font-size: 1.6rem; }
  .pdp-price-orig { font-size: .9rem; }
  .pdp-action-row { flex-direction: column; gap: .6rem; }
  .pdp-action-row .btn { width: 100%; text-align: center; justify-content: center; }
  .pdp-perks-grid { grid-template-columns: 1fr; gap: .6rem; }
  .pdp-perk { padding: .7rem; }
  .pp-txt { font-size: .72rem; }
  .option-btn { padding: .42rem .85rem; font-size: .75rem; }
  .option-label { font-size: .68rem; }
  .pdp-video-link { padding: 1rem; }
  .pdp-video-link strong { font-size: .78rem; }
  .pdp-video-link span { font-size: .66rem; }
  .accordion-trigger { font-size: .82rem; }

  /* Cart */
  .cart-item { grid-template-columns: 70px 1fr; gap: .8rem; }
  .cart-item-img-link img { width: 70px; height: 70px; }
  .cart-item-title { font-size: .84rem; }
  .cart-summary { padding: 1.5rem; }
  .cart-summary-title { font-size: 1.1rem; }

  /* CTA banner */
  .cta-heading { font-size: 1.8rem; }
  .cta-sub { font-size: .82rem; }

  /* Footer */
  .footer-body { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2.5rem 4%; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.2rem 4%; flex-direction: column; gap: .5rem; }
  .footer-col h4 { font-size: .65rem; }
  .footer-col a, .footer-col li { font-size: .76rem; }
  .footer-copy { font-size: .65rem; }
  .f-policy-links a { font-size: .65rem; }

  /* About */
  .about-hero-inner { padding: 4rem 4% 5rem; }
  .about-hero-heading { font-size: 2rem; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .as-n { font-size: 2.2rem; }
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cert-card { padding: 1.5rem 1rem; }

  /* Announcement bar */
  .ticker-inner span { font-size: .62rem; padding: 0 1.5rem; }

  /* Breadcrumb */
  .breadcrumb { padding: .8rem 4%; }
  .breadcrumb-list { font-size: .72rem; }
}

/* ── 360px: Small phones (iPhone SE, Galaxy A series) ── */
@media (max-width: 360px) {
  .section-padding { padding: 3rem 4%; }
  
  
  .product-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .product-card-image { height: 155px; }
  .product-title { font-size: .78rem; }
  .trust-bar-inner { grid-template-columns: 1fr; text-align: center; }
  .trust-item { justify-content: center; }
  .supporters-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .stats-grid { gap: .7rem; }
  .pdp-main-img { height: 240px; }
  .pdp-thumbnails { grid-template-columns: repeat(4, 1fr); }
  .pdp-action-row .btn { padding: .75rem 1rem; font-size: .8rem; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-policy-links { flex-direction: column; gap: .3rem; }
}

/* ── Touch / hover improvements ── */
@media (hover: none) {
  /* Always show wishlist button on touch devices */
  .wishlist-btn { opacity: 1; }
  /* Disable hover transforms on touch */
  .product-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .supporter-card:hover { transform: none; }
  .review-card:hover { transform: none; }
}

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-main-img, 
  .reveal { opacity: 1; transform: none; }
}

/* ── SKIP TO CONTENT (accessibility) ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-primary);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: .85rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-to-content:focus { top: 0; }

/* ── HAMBURGER ANIMATION ── */
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU SLIDE ── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  display: none;
}
.mobile-menu.open { max-height: 100vh; }


/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
══════════════════════════════════════════════════════════════ */

/* Hero */
.about-hero-section { background: var(--clr-primary-deep); position: relative; overflow: hidden; padding: 7rem 0; }
.about-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(61,125,53,.3) 0%, transparent 60%); pointer-events: none; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.about-hero-content .section-tag { margin-bottom: 1.1rem; }
.about-hero-heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 4vw, 4rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 1.3rem; }
.about-hero-heading em { font-style: italic; color: #7ac97a; font-weight: 400; }
.about-hero-sub { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 2rem; max-width: 46ch; }
.about-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-hero-image { position: relative; }
.about-hero-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
.about-hero-badge { position: absolute; bottom: -1.2rem; left: 2rem; background: #fff; border-radius: var(--radius-lg); padding: 1.1rem 1.6rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .9rem; }
.ab-icon { font-size: 1.8rem; }
.about-hero-badge strong { display: block; font-size: .84rem; font-weight: 700; color: var(--clr-primary-deep); }
.about-hero-badge span { font-size: .68rem; color: var(--clr-muted); }

/* Stats bar */
.about-stats-bar { background: var(--clr-primary); padding: 3rem 0; }
.about-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.about-stat { }
.as-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; display: block; margin-bottom: .3rem; }
.as-lbl { font-size: .68rem; color: rgba(255,255,255,.7); letter-spacing: .12em; text-transform: uppercase; display: block; }

/* Story section */
.about-story-section { }
.about-story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-story-text p { font-size: .88rem; color: var(--clr-muted); line-height: 1.9; margin-bottom: 1rem; }

/* Vision */
.about-vision-section { }
.about-vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.vision-box { background: var(--clr-primary-deep); border-radius: var(--radius-xl); padding: 3rem; color: #fff; position: sticky; top: 90px; }
.vision-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.vision-box h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.vision-box p { font-size: .85rem; line-height: 1.85; color: rgba(255,255,255,.7); }
.vision-cert-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.vcert-tag { background: rgba(122,201,122,.2); color: #7ac97a; font-size: .62rem; font-weight: 600; padding: .3rem .75rem; border-radius: var(--radius-full); letter-spacing: .06em; }
.about-pillars { display: flex; flex-direction: column; gap: 1.4rem; }
.about-pillar { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.6rem; border-radius: var(--radius-lg); border: 1px solid var(--clr-border); transition: all var(--transition); background: #fff; }
.about-pillar:hover { border-color: var(--clr-primary); box-shadow: 0 6px 24px rgba(61,125,53,.1); }
.pillar-icon { width: 46px; height: 46px; background: var(--clr-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.pillar-title { font-size: .88rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .3rem; }
.pillar-desc { font-size: .78rem; color: var(--clr-muted); line-height: 1.65; }

/* Timeline */
.about-timeline-section { }
.about-timeline { position: relative; padding: 2rem 0; margin-top: 2rem; }
.about-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--clr-primary-soft), var(--clr-primary), var(--clr-primary-soft)); transform: translateX(-50%); }
.tl-row { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; align-items: center; margin-bottom: 3rem; }
.tl-row:last-child { margin-bottom: 0; }
.tl-box { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.tl-box.tl-empty { background: transparent; border: none; box-shadow: none; }
.tl-dot { width: 48px; height: 48px; background: var(--clr-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .95rem; margin: 0 auto; box-shadow: 0 0 0 6px var(--clr-primary-soft); z-index: 2; position: relative; flex-shrink: 0; }
.tl-year { font-size: .63rem; font-weight: 700; color: var(--clr-primary); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .35rem; }
.tl-title { font-size: .92rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .4rem; }
.tl-text { font-size: .78rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }

/* Farm section */
.about-farm-section { }
.about-farm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-farm-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-farm-images img { border-radius: var(--radius-lg); object-fit: cover; height: 260px; width: 100%; display: block; }
.about-farm-images img:last-child { margin-top: 2rem; }
.about-farm-text p { font-size: .88rem; color: var(--clr-muted); line-height: 1.9; margin-bottom: 1rem; }
.farm-detail-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1.8rem; }
.farm-detail-card { display: flex; gap: .7rem; align-items: flex-start; background: var(--clr-cream); border-radius: var(--radius-md); padding: 1rem; border: 1px solid var(--clr-border); }
.fdc-icon { font-size: 1.1rem; flex-shrink: 0; }
.farm-detail-card strong { display: block; font-size: .78rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .2rem; }
.farm-detail-card p { font-size: .73rem; color: var(--clr-muted); margin: 0; line-height: 1.5; }

/* Values grid */
.about-values-section { }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.about-value-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--clr-border); transition: transform var(--transition), box-shadow var(--transition); }
.about-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.avc-top { padding: 2rem 2rem 1.2rem; background: var(--clr-primary-light); }
.avc-ico { font-size: 2rem; display: block; margin-bottom: .7rem; }
.avc-title { font-size: .95rem; font-weight: 700; color: var(--clr-primary-deep); margin: 0; }
.avc-body { padding: 1.3rem 2rem 1.8rem; background: #fff; font-size: .8rem; color: var(--clr-muted); line-height: 1.7; }

/* Certifications */
.about-cert-section { }

/* Supporters */
.about-supporters-section { }
.supporters-footnote { text-align: center; margin-top: 2rem; font-size: .74rem; color: var(--clr-muted); font-style: italic; }


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
══════════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero-section { background: var(--clr-primary-deep); position: relative; overflow: hidden; padding: 5.5rem 0 4rem; }
.contact-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(61,125,53,.25) 0%, transparent 55%); pointer-events: none; }
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero-content .section-tag { margin-bottom: 1rem; }
.contact-hero-heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 4vw, 3.8rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem; }
.contact-hero-heading em { font-style: italic; color: #7ac97a; font-weight: 400; }
.contact-hero-sub { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.85; max-width: 52ch; margin-bottom: 1.8rem; }
.contact-hero-chips { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-chip { display: flex; align-items: center; gap: .45rem; font-size: .74rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* Body layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

/* Info card */
.contact-info-card { background: var(--clr-cream); border: 1px solid var(--clr-border); border-radius: var(--radius-xl); padding: 2rem; margin-bottom: 1.5rem; }
.contact-info-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--clr-primary-deep); margin-bottom: 1.8rem; font-weight: 700; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.3rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--clr-border); }
.contact-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cdi-icon { width: 42px; height: 42px; background: var(--clr-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cdi-content strong { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clr-muted); margin-bottom: .35rem; }
.cdi-content p { font-size: .84rem; color: var(--clr-text); margin: 0; line-height: 1.6; }
.cdi-content a { display: block; font-size: .84rem; color: var(--clr-primary-deep); transition: color var(--transition); }
.cdi-content a:hover { color: var(--clr-primary); }
.cdi-link { font-size: .75rem !important; color: var(--clr-primary) !important; font-weight: 600; margin-top: .4rem; }

/* Quick action buttons */
.contact-quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: 1.5rem; }
.cqa-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem .8rem; border-radius: var(--radius-md); font-size: .78rem; font-weight: 700; letter-spacing: .04em; transition: all var(--transition); }
.cqa-call { background: var(--clr-primary); color: #fff; }
.cqa-call:hover { background: var(--clr-primary-dark); transform: translateY(-2px); }
.cqa-whatsapp { background: #25d366; color: #fff; }
.cqa-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.cqa-email { background: var(--clr-orange); color: #fff; }
.cqa-email:hover { background: #b84f18; transform: translateY(-2px); }

/* Coupon box */
.contact-coupons-box { background: var(--clr-primary-deep); border-radius: var(--radius-xl); padding: 1.8rem; margin-bottom: 1.5rem; }
.ccb-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.ccb-sub { font-size: .75rem; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; }
.coupon-list { display: flex; flex-direction: column; gap: .6rem; }
.coupon-item { background: rgba(255,255,255,.07); border: 1.5px dashed rgba(200,155,60,.45); border-radius: var(--radius-md); padding: .9rem 1.1rem; cursor: pointer; transition: all var(--transition); }
.coupon-item:hover { background: rgba(255,255,255,.14); border-color: rgba(200,155,60,.8); }
.coupon-code { display: block; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: #f5d060; letter-spacing: .08em; }
.coupon-desc { display: block; font-size: .7rem; color: rgba(255,255,255,.55); margin-top: .15rem; }
.coupon-copy-hint { display: block; font-size: .6rem; color: rgba(255,255,255,.3); margin-top: .2rem; letter-spacing: .06em; text-transform: uppercase; }

/* Social box */
.contact-social-box { background: var(--clr-cream); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; }
.csb-title { font-size: .78rem; font-weight: 700; color: var(--clr-primary-deep); margin-bottom: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.contact-socials { display: flex; gap: .6rem; }
.contact-soc-btn { width: 40px; height: 40px; border: 1.5px solid var(--clr-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--clr-muted); transition: all var(--transition); }
.contact-soc-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: var(--clr-primary-light); transform: translateY(-2px); }

/* Contact form */
.contact-form-card { background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.contact-form-title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--clr-primary-deep); margin-bottom: .4rem; font-weight: 700; }
.contact-form-sub { font-size: .82rem; color: var(--clr-muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .7rem; font-weight: 700; color: var(--clr-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .45rem; }
.required { color: var(--clr-orange); }
.form-input { width: 100%; background: var(--clr-cream); border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); padding: .8rem 1rem; font-size: .88rem; font-family: inherit; color: var(--clr-text); outline: none; transition: border-color var(--transition); }
.form-input:focus { border-color: var(--clr-primary); background: #fff; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-submit-btn { width: 100%; font-size: .88rem; margin-top: .5rem; }
.form-success-msg { background: var(--clr-primary-light); border: 1px solid var(--clr-primary-soft); border-radius: var(--radius-md); padding: 1.1rem 1.3rem; margin-bottom: 1.5rem; font-size: .85rem; color: var(--clr-primary-deep); display: flex; align-items: center; gap: .6rem; }
.form-error-msg { background: #fff0f0; border: 1px solid #ffd0d0; border-radius: var(--radius-md); padding: 1.1rem 1.3rem; margin-bottom: 1.5rem; font-size: .85rem; color: #c00; }

/* FAQ */
.contact-faq-section { }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item .accordion-body p { font-size: .82rem; color: var(--clr-muted); line-height: 1.8; margin: 0; }

/* Map */
.contact-map-section { }
.contact-map-header { padding: 4rem 0 2rem; }
.contact-map-embed { line-height: 0; }
.contact-map-embed iframe { filter: grayscale(15%) contrast(1.05); }


/* ══════════════════════════════════════════════════════════════
   ABOUT + CONTACT RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero-image { display: none; }
  .about-story-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-vision-inner { grid-template-columns: 1fr; }
  .vision-box { position: static; }
  .about-farm-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-timeline::before { left: 24px; }
  .tl-row { grid-template-columns: 48px 1fr; gap: 1rem; }
  .tl-box.tl-empty { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-section, .contact-hero-section { padding: 4.5rem 0 3.5rem; }
  .about-hero-heading, .contact-hero-heading { font-size: clamp(2rem, 7vw, 2.8rem); }
  .about-hero-btns { flex-direction: column; }
  .about-hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .contact-hero-chips { flex-direction: column; gap: .6rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-farm-images { grid-template-columns: 1fr; }
  .about-farm-images img { height: 220px; }
  .about-farm-images img:last-child { margin-top: 0; }
  .farm-detail-cards { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-quick-actions { grid-template-columns: 1fr 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.8rem; }
  .faq-grid { gap: 0; }
}

@media (max-width: 480px) {
  .about-hero-heading, .contact-hero-heading { font-size: 2rem; }
  .as-num { font-size: 2.2rem; }
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cert-card { padding: 1.5rem 1rem; }
  .contact-quick-actions { grid-template-columns: 1fr; gap: .6rem; }
  .contact-form-card { padding: 1.4rem; }
  .contact-map-embed iframe { height: 300px; }
  .about-story-split .story-main-img { height: 260px; }
  .about-story-split .story-accent-img { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   COW DUNG PRODUCT PAGE — product.cow-dung.liquid
   Earthy green palette: deeper greens, terracotta accents
══════════════════════════════════════════════════════════════ */

/* Colour overrides specific to this template */
.cow-dung-pdp {
  --cd-green:      #3d7d35;
  --cd-green-dark: #2b5a24;
  --cd-earth:      #8B5E3C;
  --cd-terracotta: #C4622D;
  --cd-cream:      #faf7f0;
  --cd-sand:       #f0ebe0;
  --cd-tag-bg:     #e8f5e6;
  --cd-tag-clr:    #2b5a24;
}

/* ── GALLERY eco badge ── */
.cd-image-wrap { position: relative; }

.cd-eco-seal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 54px;
  height: 54px;
  background: var(--cd-green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(43,90,36,.4);
  z-index: 3;
}
.cd-eco-icon { font-size: .9rem; line-height: 1; }
.cd-eco-text { font-size: .42rem; color: #fff; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center; line-height: 1.2; margin-top: .1rem; }

/* ── Trust chips ── */
.cd-trust-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.cd-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--cd-tag-bg);
  color: var(--cd-tag-clr);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 999px;
}

/* ── Tags ── */
.tag-eco {
  background: #e8f5e6;
  color: #2b5a24;
}

/* ── Story section ── */
.cd-story-section { background: #fff; }

.cd-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cd-story-text p {
  font-size: .88rem;
  color: var(--clr-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.cd-story-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
}

.cd-benefit {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--cd-cream);
  border-radius: 10px;
  border: 1px solid rgba(61,125,53,.12);
  transition: border-color .2s, box-shadow .2s;
}
.cd-benefit:hover {
  border-color: var(--cd-green);
  box-shadow: 0 4px 16px rgba(61,125,53,.1);
}

.cd-benefit-icon {
  width: 38px;
  height: 38px;
  background: var(--cd-tag-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.cd-benefit strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-primary-deep);
  margin-bottom: .2rem;
}
.cd-benefit p {
  font-size: .74rem;
  color: var(--clr-muted);
  line-height: 1.5;
  margin: 0 !important;
}

/* Story visual */
.cd-story-visual { position: relative; }

.cd-story-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
  display: block;
}

.cd-story-placeholder {
  width: 100%;
  height: 500px;
  background: var(--cd-sand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: .9rem 1.3rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  text-align: center;
  z-index: 3;
}
.cd-stat-1 { bottom: 2rem; left: -1.5rem; }
.cd-stat-2 { top: 2rem;    right: -1.5rem; }

.cd-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cd-green);
  line-height: 1;
}
.cd-stat-lbl {
  display: block;
  font-size: .62rem;
  color: var(--clr-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* ── Category Guide ── */
.cd-guide-section { }

.cd-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cd-cat-card {
  background: #fff;
  border: 1px solid rgba(61,125,53,.12);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.cd-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cd-green), #7ac97a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.cd-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(61,125,53,.12);
  border-color: transparent;
}
.cd-cat-card:hover::before { transform: scaleX(1); }

.cd-cat-icon {
  font-size: 2.2rem;
  margin-bottom: .9rem;
  display: block;
}
.cd-cat-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-primary-deep);
  margin-bottom: .6rem;
}
.cd-cat-desc {
  font-size: .78rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cd-cat-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.cd-cat-tags span {
  background: var(--cd-tag-bg);
  color: var(--cd-tag-clr);
  font-size: .6rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 999px;
  letter-spacing: .05em;
}

/* ── Reviews section ── */
.cd-reviews-section { background: var(--cd-cream); }

.cd-reviews-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 1.4rem;
  margin-top: 3rem;
  align-items: stretch;
}

.cd-review-overall {
  background: linear-gradient(135deg, var(--cd-green-dark), var(--cd-green));
  border-radius: 14px;
  padding: 2rem 1.2rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.cd-overall-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.cd-overall-stars { font-size: 1rem; color: #f5d060; letter-spacing: .15em; }
.cd-overall-count { font-size: .66rem; opacity: .65; letter-spacing: .08em; text-transform: uppercase; }
.cd-overall-tag {
  font-size: .62rem;
  background: rgba(255,255,255,.15);
  padding: .25rem .7rem;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: .3rem;
}

/* ── Mission banner ── */
.cd-mission-banner {
  background: var(--clr-primary-deep);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cd-mission-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(61,125,53,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cd-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cd-mission-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin: .8rem 0 1.2rem;
}
.cd-mission-heading em {
  font-style: italic;
  color: #7ac97a;
  font-weight: 400;
}
.cd-mission-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.cd-mission-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.cd-mission-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .76rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.cd-mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.cd-mstat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background .25s;
}
.cd-mstat:hover { background: rgba(255,255,255,.1); }
.cd-mstat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #7ac97a;
  line-height: 1;
  margin-bottom: .3rem;
}
.cd-mstat-lbl {
  font-size: .66rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   COW DUNG PDP — RESPONSIVE
══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .cd-story-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .cd-mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cd-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-reviews-grid { grid-template-columns: 1fr 1fr; }
  .cd-review-overall { grid-column: 1 / -1; flex-direction: row; gap: 1.5rem; padding: 1.5rem 2rem; justify-content: center; }
  .cd-stat-1 { left: -.5rem; }
  .cd-stat-2 { right: -.5rem; }
}

@media (max-width: 768px) {
  .cd-categories-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cd-reviews-grid { grid-template-columns: 1fr; }
  .cd-review-overall { flex-direction: column; text-align: center; }
  .cd-mission-chips { grid-template-columns: 1fr; }
  .cd-mission-stats { grid-template-columns: 1fr 1fr; }
  .cd-story-img, .cd-story-placeholder { height: 320px; }
  .cd-stat-1 { bottom: 1rem; left: 0; }
  .cd-stat-2 { top: 1rem; right: 0; }
  .cd-trust-chips { gap: .4rem; }
  .cd-chip { font-size: .6rem; padding: .25rem .6rem; }
}

@media (max-width: 480px) {
  .cd-categories-grid { grid-template-columns: 1fr; }
  .cd-story-benefits { gap: .8rem; }
  .cd-mission-stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .cd-mstat { padding: 1.5rem 1rem; }
  .cd-mstat-num { font-size: 1.8rem; }
  .cd-stat-1, .cd-stat-2 { display: none; }
  .cd-eco-seal { width: 44px; height: 44px; }
}


/* ══════════════════════════════════════════════════════════════
   RAZORPAY PAYMENT SECTION
══════════════════════════════════════════════════════════════ */
.razorpay-section {
  margin: 1.4rem 0;
  padding: 1.2rem;
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.rzp-secure-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  color: var(--clr-muted);
  font-weight: 500;
  margin-bottom: .9rem;
}

.rzp-payment-methods { }
.rzp-method-label {
  display: block;
  font-size: .65rem;
  color: var(--clr-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .6rem;
}
.rzp-methods-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.rzp-method-badge {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: 6px;
  padding: .4rem .75rem;
  font-size: .66rem;
  color: var(--clr-text);
  font-weight: 600;
  cursor: default;
  transition: border-color .2s;
  white-space: nowrap;
}
.rzp-method-badge:hover { border-color: #2F80ED; }
.rzp-m-icon { font-size: .85rem; }

.razorpay-trust { }

/* Footer payment badges */
.footer-payments { margin-top: .8rem; }
.footer-payments-label {
  display: block;
  font-size: .58rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 600;
}
.footer-payment-icons {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  align-items: center;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: .28rem .55rem;
  font-size: .58rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  white-space: nowrap;
}
.pay-badge .pay-icon { font-size: .72rem; }

@media (max-width: 480px) {
  .rzp-methods-row { gap: .35rem; }
  .rzp-method-badge { font-size: .6rem; padding: .35rem .6rem; }
  .footer-payment-icons { gap: .3rem; }
}


/* ══════════════════════════════════════════════════════════════
   AK PREFIX — HEADER (replaces old site-header styles)
══════════════════════════════════════════════════════════════ */
.ak-site-header { background: #fff; border-bottom: 1px solid #e2ddd5; position: sticky; top: 0; z-index: 9999; transition: box-shadow .3s; }
.ak-site-header.scrolled { box-shadow: 0 8px 32px rgba(0,0,0,.10); }
.ak-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 4%; max-width: 1400px; margin: 0 auto; }
.ak-header-logo img { height: 50px; object-fit: contain; display: block; }
.ak-header-logo-text { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: #1a3617; }

/* NAV */
.ak-header-nav { display: flex; }
.ak-nav-menu { display: flex; gap: 0; align-items: center; list-style: none; margin: 0; padding: 0; }
.ak-nav-item { position: relative; }
.ak-nav-link { display: block; padding: 0 1rem; font-size: .77rem; font-weight: 500; color: #6b6b6b; text-transform: uppercase; letter-spacing: .07em; line-height: 72px; transition: color .2s; white-space: nowrap; text-decoration: none; }
.ak-nav-link:hover, .ak-nav-link.active { color: #3d7d35; }
.ak-nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px; background: #3d7d35; border-radius: 2px 2px 0 0; }

/* DROPDOWN — fixed z-index, no overflow clipping */
.ak-nav-drop { display: none; position: absolute; top: 100%; left: 0; width: 220px; background: #fff; border: 1px solid #e2ddd5; border-top: 2px solid #3d7d35; border-radius: 0 0 8px 8px; box-shadow: 0 8px 32px rgba(0,0,0,.10); padding: .4rem 0; z-index: 10000; }
.ak-nav-item:hover .ak-nav-drop { display: block; }
.ak-nav-drop a { display: block; padding: .6rem 1.1rem; font-size: .77rem; color: #6b6b6b; transition: all .18s; text-decoration: none; }
.ak-nav-drop a:hover { color: #3d7d35; background: #edf7eb; padding-left: 1.4rem; }

/* ACTIONS */
.ak-nav-actions { display: flex; align-items: center; gap: .5rem; }
.ak-nav-icon-btn { background: none; border: none; font-size: 1rem; color: #6b6b6b; padding: .45rem; border-radius: 4px; transition: all .2s; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.ak-nav-icon-btn:hover { color: #3d7d35; background: #edf7eb; }
.ak-cart-bubble { position: absolute; top: 0; right: 0; background: #d95f1e; color: #fff; font-size: .5rem; font-weight: 700; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ak-nav-cta { margin-left: .6rem; }

/* MOBILE MENU BUTTON — hidden on desktop */
.ak-mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: .5rem; background: none; border: none; cursor: pointer; }
.ak-mobile-menu-btn span { display: block; width: 22px; height: 2px; background: #1e1e1e; border-radius: 2px; transition: all .3s; }
.ak-mobile-menu { display: none; background: #fff; border-top: 1px solid #e2ddd5; padding: 1rem 4%; }
.ak-mobile-menu.open { display: block; }
.ak-mobile-menu-inner { display: flex; flex-direction: column; }
.ak-mobile-nav-link { display: block; padding: .75rem 0; font-size: .88rem; font-weight: 500; color: #1e1e1e; border-bottom: 1px solid #e2ddd5; text-decoration: none; }
.ak-mobile-nav-child { padding-left: 1.5rem; font-size: .82rem; color: #6b6b6b; }

/* SEARCH OVERLAY */
.ak-search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 99999; align-items: flex-start; justify-content: center; padding-top: 10vh; }
.ak-search-overlay.open { display: flex; }
.ak-search-overlay-inner { background: #fff; border-radius: 12px; padding: 2.5rem; width: 90%; max-width: 600px; position: relative; display: flex; gap: 1rem; align-items: center; }
.ak-search-input { flex: 1; padding: .9rem 1.2rem; border: 2px solid #e2ddd5; border-radius: 4px; font-size: 1rem; font-family: inherit; outline: none; }
.ak-search-input:focus { border-color: #3d7d35; }
.ak-search-submit { background: #3d7d35; color: #fff; border: none; padding: .9rem 1.5rem; border-radius: 4px; font-size: .9rem; font-weight: 600; cursor: pointer; }
.ak-search-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: #6b6b6b; }

/* ══════════════════════════════════════════════════════════════
   AK SHARED TOKENS
══════════════════════════════════════════════════════════════ */
.ak-tag { display: inline-flex; align-items: center; gap: .4rem; background: #edf7eb; color: #3d7d35; font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .32rem .85rem; border-radius: 999px; }
.ak-tag--dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.ak-tag--or   { background: #fff3ec; color: #d95f1e; }
.ak-tag--hot  { background: #d95f1e; color: #fff; }
.ak-hdg { font-family: 'Fraunces', serif; line-height: 1.12; font-weight: 700; color: #1a3617; }
.ak-hdg em { font-style: italic; color: #3d7d35; font-weight: 400; }

/* BUTTONS */
.ak-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .78rem 1.9rem; border-radius: 4px; font-size: .8rem; font-weight: 600; letter-spacing: .04em; border: none; transition: all .22s; text-decoration: none; cursor: pointer; font-family: inherit; }
.ak-btn--lg { padding: 1rem 2.6rem; font-size: .88rem; }
.ak-btn--g { background: #3d7d35; color: #fff; } .ak-btn--g:hover { background: #2b5a24; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(61,125,53,.3); }
.ak-btn--or { background: #d95f1e; color: #fff; } .ak-btn--or:hover { background: #b84f18; transform: translateY(-2px); }
.ak-btn--ghost { border: 1.5px solid rgba(255,255,255,.4); color: #fff; background: transparent; } .ak-btn--ghost:hover { background: rgba(255,255,255,.15); }
.ak-btn--white { background: #fff; color: #3d7d35; font-weight: 700; } .ak-btn--white:hover { background: #edf7eb; }
.ak-btn--cart { background: #3d7d35; color: #fff; } .ak-btn--cart:hover { background: #2b5a24; }
.ak-btn--buy  { background: #d95f1e; color: #fff; } .ak-btn--buy:hover  { background: #b84f18; }

/* SECTIONS */
.ak-sec { padding: 6.5rem 8%; }
.ak-sec--cream { background: #faf7f0; }
.ak-sec--sand  { background: #f0ebe0; }
.ak-sec--dark  { background: #1a3617; }
.ak-sec-hdr { text-align: center; margin-bottom: 3.5rem; }
.ak-sec-title { font-size: clamp(1.9rem,3vw,2.9rem); margin-bottom: .6rem; }
.ak-sec-sub { font-size: .88rem; color: #6b6b6b; max-width: 52ch; margin: .6rem auto 0; line-height: 1.8; }
.ak-pull-quote { border-left: 3px solid #3d7d35; background: #edf7eb; border-radius: 0 8px 8px 0; padding: .9rem 1.4rem; margin: 1.6rem 0; }
.ak-pull-quote p { font-family: 'Fraunces', serif; font-size: 1rem; font-style: italic; color: #1a3617; line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   ABOUT HERO
══════════════════════════════════════════════════════════════ */
.ak-about-hero { background: #1a3617; padding: 7rem 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; overflow: hidden; }
.ak-about-hero__before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(61,125,53,.3) 0%, transparent 60%); pointer-events: none; }
.ak-ah-content { position: relative; z-index: 1; }
.ak-ah-content .ak-tag { margin-bottom: 1.1rem; }
.ak-ah-h1 { font-family: 'Fraunces', serif; font-size: clamp(2.4rem,4vw,4rem); color: #fff; margin-bottom: 1.3rem; font-weight: 700; line-height: 1.12; }
.ak-ah-h1 em { color: #7ac97a; font-style: italic; font-weight: 400; }
.ak-ah-p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 2rem; max-width: 46ch; }
.ak-ah-img-wrap { position: relative; z-index: 1; }
.ak-ah-img { width: 100%; height: 440px; object-fit: cover; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.14); }
.ak-ah-badge { position: absolute; bottom: -1.2rem; left: 2rem; background: #fff; border-radius: 12px; padding: 1.1rem 1.6rem; box-shadow: 0 8px 32px rgba(0,0,0,.10); display: flex; align-items: center; gap: .9rem; }
.ak-ah-badge-ico { font-size: 1.8rem; }
.ak-ah-badge-strong { display: block; font-size: .84rem; font-weight: 700; color: #1a3617; }
.ak-ah-badge-sub { font-size: .68rem; color: #6b6b6b; }

/* ABOUT STATS */
.ak-about-stats { background: #3d7d35; padding: 3rem 8%; }
.ak-about-stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.ak-as-n { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: .3rem; }
.ak-as-l { font-size: .68rem; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; }

/* STORY SPLIT */
.ak-story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.ak-story-split--flip { direction: rtl; }
.ak-story-split--flip > * { direction: ltr; }
.ak-story-text .ak-tag { margin-bottom: 1.1rem; }
.ak-story-h2 { font-size: clamp(1.8rem,3vw,2.7rem); margin: 0 0 1.4rem; }
.ak-story-p { font-size: .88rem; color: #6b6b6b; line-height: 1.9; margin-bottom: 1rem; }
.ak-story-img-stack { position: relative; }
.ak-story-main-img { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.14); display: block; }
.ak-story-accent-img--br { position: absolute; width: 190px; height: 150px; object-fit: cover; border-radius: 12px; border: 4px solid #fff; box-shadow: 0 8px 32px rgba(0,0,0,.10); bottom: -1.5rem; right: -1.5rem; }
.ak-yr-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: #d95f1e; color: #fff; border-radius: 12px; padding: .9rem 1.3rem; text-align: center; box-shadow: 0 8px 24px rgba(217,95,30,.4); }
.ak-yr-n { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.ak-yr-l { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .1rem; }

/* TIMELINE */
.ak-timeline { position: relative; padding: 2rem 0; }
.ak-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #d4edd0, #3d7d35, #d4edd0); transform: translateX(-50%); }
.ak-tl-row { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; align-items: center; margin-bottom: 3rem; }
.ak-tl-row:last-child { margin-bottom: 0; }
.ak-tl-box { background: #fff; border: 1px solid #e2ddd5; border-radius: 12px; padding: 1.8rem; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.ak-tl-box--empty { background: transparent; border: none; box-shadow: none; }
.ak-tl-dot { width: 44px; height: 44px; background: #3d7d35; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; margin: 0 auto; box-shadow: 0 0 0 6px #d4edd0; z-index: 2; position: relative; flex-shrink: 0; }
.ak-tl-yr { font-size: .63rem; font-weight: 700; color: #3d7d35; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .35rem; }
.ak-tl-title { font-size: .9rem; font-weight: 700; color: #1a3617; margin-bottom: .4rem; }
.ak-tl-text { font-size: .76rem; color: #6b6b6b; line-height: 1.7; }

/* CERTIFICATIONS */
.ak-cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.ak-cert-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 2rem 1.5rem; text-align: center; transition: all .3s; }
.ak-cert-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.ak-cert-ico { font-size: 2.2rem; margin-bottom: .9rem; }
.ak-cert-title { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.ak-cert-desc { font-size: .7rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* SUPPORTERS */
.ak-supporters-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1.2rem; }
.ak-supp-card { background: #fff; border: 1px solid #e2ddd5; border-radius: 8px; height: 80px; display: flex; align-items: center; justify-content: center; padding: .8rem; transition: all .25s; }
.ak-supp-card:hover { border-color: #3d7d35; box-shadow: 0 6px 20px rgba(61,125,53,.12); transform: translateY(-3px); }
.ak-supp-inner-wrap { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.ak-supp-ico { font-size: 1.4rem; }
.ak-supp-lbl { font-size: .56rem; font-weight: 700; color: #6b6b6b; letter-spacing: .08em; text-transform: uppercase; }
.ak-supp-img { max-width: 100px; max-height: 50px; width: auto; height: auto; object-fit: contain; filter: grayscale(30%); transition: filter .25s; }
.ak-supp-card:hover .ak-supp-img { filter: grayscale(0%); }

/* CTA BAND */
.ak-cta-band { background: linear-gradient(135deg, #2b5a24 0%, #3d7d35 55%, #6ab85f 100%); padding: 6rem 8%; text-align: center; position: relative; overflow: hidden; }
.ak-cta-band__before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.ak-cta-band h2 { font-family: 'Fraunces', serif; font-size: clamp(2rem,4vw,3.4rem); color: #fff; font-weight: 700; margin-bottom: .9rem; position: relative; }
.ak-cta-band h2 em { font-style: italic; color: #b5e5a8; font-weight: 400; }
.ak-cta-band p { font-size: .9rem; color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto 2.4rem; line-height: 1.8; position: relative; }
.ak-cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════════════════════════════
   PRODUCT PAGE (PDP)
══════════════════════════════════════════════════════════════ */
.ak-pdp { padding: 3rem 8% 6rem; }
.ak-pdp-breadcrumb { font-size: .72rem; color: #6b6b6b; margin-bottom: 2rem; display: flex; align-items: center; gap: .5rem; }
.ak-pdp-breadcrumb a { color: #3d7d35; text-decoration: none; }
.ak-pdp-breadcrumb span { color: #ccc; }
.ak-pdp-main { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* Gallery */
.ak-pdp-gallery { position: sticky; top: 90px; }
.ak-pdp-main-img-wrap { border-radius: 20px; overflow: hidden; background: #f0ebe0; margin-bottom: 1rem; position: relative; }
.ak-pdp-main-img { width: 100%; height: 520px; object-fit: cover; transition: transform .4s; display: block; }
.ak-pdp-main-img-wrap:hover .ak-pdp-main-img { transform: scale(1.03); }
.ak-pdp-gallery-badge { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .5rem; z-index: 2; }
.ak-pdp-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: .7rem; }
.ak-pdp-thumb { border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; aspect-ratio: 1; }
.ak-pdp-thumb.active, .ak-pdp-thumb:hover { border-color: #3d7d35; }
.ak-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info */
.ak-pdp-brand { font-size: .68rem; font-weight: 700; color: #3d7d35; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; }
.ak-pdp-title { font-family: 'Fraunces', serif; font-size: clamp(1.8rem,2.5vw,2.5rem); font-weight: 700; color: #1a3617; line-height: 1.15; margin-bottom: .8rem; }
.ak-pdp-rating-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ak-pdp-stars { color: #f5a623; font-size: .88rem; letter-spacing: .08em; }
.ak-pdp-rev-count { font-size: .75rem; color: #3d7d35; font-weight: 600; text-decoration: underline; cursor: pointer; }
.ak-pdp-verified { font-size: .68rem; color: #6b6b6b; }
.ak-pdp-price-row { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.6rem; padding: 1.2rem; background: #edf7eb; border-radius: 8px; flex-wrap: wrap; }
.ak-pdp-price-curr { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: #1a3617; }
.ak-pdp-price-orig { font-size: 1.1rem; color: #bbb; text-decoration: line-through; font-family: 'Fraunces', serif; }
.ak-pdp-save-chip { background: #d95f1e; color: #fff; font-size: .68rem; font-weight: 700; padding: .3rem .75rem; border-radius: 999px; }
.ak-pdp-tax-note { font-size: .68rem; color: #6b6b6b; }
.ak-pdp-variants { margin-bottom: 1.6rem; }
.ak-pdp-var-label { font-size: .72rem; font-weight: 700; color: #6b6b6b; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.ak-pdp-var-options { display: flex; gap: .6rem; flex-wrap: wrap; }
.ak-var-btn { border: 1.5px solid #e2ddd5; background: #fff; border-radius: 4px; padding: .5rem 1.1rem; font-size: .8rem; font-weight: 600; color: #1a3617; cursor: pointer; transition: all .2s; font-family: inherit; }
.ak-var-btn.active, .ak-var-btn:hover:not(:disabled):not(.sold-out) { border-color: #3d7d35; background: #edf7eb; color: #3d7d35; }
.ak-var-btn:disabled, .ak-var-btn.sold-out { opacity: .45; cursor: not-allowed; text-decoration: line-through; background: #f5f5f5; border-color: #ddd; color: #999; }
.ak-var-btn.sold-out::after { content: ' — Sold Out'; font-size: .65rem; font-weight: 500; }
.ak-pdp-qty { margin-bottom: 1.6rem; }
.ak-qty-ctrl { display: flex; align-items: center; border: 1.5px solid #e2ddd5; border-radius: 4px; width: fit-content; }
.ak-qty-btn { background: none; border: none; width: 40px; height: 40px; font-size: 1.2rem; cursor: pointer; color: #1a3617; transition: background .2s; font-family: inherit; }
.ak-qty-btn:hover { background: #edf7eb; }
.ak-qty-val { width: 50px; text-align: center; border: none; border-left: 1.5px solid #e2ddd5; border-right: 1.5px solid #e2ddd5; height: 40px; font-size: .9rem; font-weight: 600; color: #1a3617; font-family: inherit; background: transparent; }
.ak-pdp-actions { display: flex; gap: .8rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.ak-pdp-actions .ak-btn { flex: 1; min-width: 140px; }
.ak-pdp-perks { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin-bottom: 1.8rem; }
.ak-pdp-perk { display: flex; align-items: center; gap: .6rem; background: #faf7f0; border-radius: 8px; padding: .8rem; }
.ak-pp-ico { font-size: 1rem; flex-shrink: 0; }
.ak-pp-txt { font-size: .75rem; color: #6b6b6b; font-weight: 500; }
.ak-pdp-video-link { background: #1a3617; border-radius: 12px; padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; cursor: pointer; text-decoration: none; }

/* Accordion */
.ak-pdp-accordion { border-top: 1px solid #e2ddd5; }
.ak-acc-item { border-bottom: 1px solid #e2ddd5; }
.ak-acc-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; cursor: pointer; font-size: .84rem; font-weight: 600; color: #1a3617; }
.ak-acc-arrow { font-size: .7rem; color: #6b6b6b; transition: transform .25s; }
.ak-acc-item--open .ak-acc-arrow { transform: rotate(180deg); }
.ak-acc-body { padding: 0 0 1.1rem; }
.ak-acc-body p, .ak-acc-body li { font-size: .8rem; color: #6b6b6b; line-height: 1.8; }
.ak-acc-body ul { padding-left: 1rem; }
.ak-acc-body li { list-style: disc; margin-bottom: .3rem; }

/* PDP STORY */
.ak-pdp-story { background: #faf7f0; padding: 5rem 8%; }
.ak-pdp-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ak-pdp-story-img { border-radius: 20px; height: 420px; object-fit: cover; width: 100%; box-shadow: 0 24px 64px rgba(0,0,0,.14); display: block; }
.ak-benefit-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.ak-benefit { display: flex; align-items: flex-start; gap: .9rem; }
.ak-ben-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.ak-ben-title { font-size: .84rem; font-weight: 700; color: #1a3617; margin-bottom: .2rem; }
.ak-ben-desc { font-size: .76rem; color: #6b6b6b; line-height: 1.6; }

/* VIDEO SECTION */
.ak-video-section { background: #1a3617; padding: 6.5rem 8%; position: relative; overflow: hidden; }
.ak-video-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.ak-video-text .ak-tag { margin-bottom: 1.1rem; }
.ak-video-h2 { font-size: clamp(2rem,3vw,3rem); color: #fff; margin-bottom: 1.3rem; }
.ak-video-h2 em { color: #7ac97a; font-style: italic; font-weight: 400; }
.ak-video-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 2rem; }
.ak-video-steps { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.ak-vstep { display: flex; align-items: center; gap: .8rem; }
.ak-vstep-ico { width: 34px; height: 34px; background: rgba(122,201,122,.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.ak-vstep-txt { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 500; }
.ak-video-frame-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.ak-video-frame-wrap iframe { display: block; width: 100%; height: 360px; border: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ak-about-hero, .ak-story-split, .ak-pdp-main, .ak-pdp-story-inner, .ak-video-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ak-story-split--flip { direction: ltr; }
  .ak-header-nav { display: none; }
  .ak-mobile-menu-btn { display: flex; }
  .ak-nav-cta { display: none; }
  .ak-cert-grid { grid-template-columns: repeat(2,1fr); }
  .ak-about-stats-inner { grid-template-columns: repeat(2,1fr); }
  .ak-supporters-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .ak-sec { padding: 4.5rem 5%; }
  .ak-about-hero { padding: 4.5rem 5%; }
  .ak-about-stats { padding: 2rem 5%; }
  .ak-pdp { padding: 2rem 5% 4rem; }
  .ak-pdp-story { padding: 3.5rem 5%; }
  .ak-video-section { padding: 4rem 5%; }
  .ak-cta-band { padding: 4rem 5%; }
  .ak-story-split { grid-template-columns: 1fr; }
  .ak-timeline::before { left: 22px; }
  .ak-tl-row { grid-template-columns: 44px 1fr; }
  .ak-tl-box--empty { display: none; }
  .ak-supporters-grid { grid-template-columns: repeat(2,1fr); }
  .ak-cert-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .ak-about-stats-inner { grid-template-columns: repeat(2,1fr); }
  .ak-pdp-perks { grid-template-columns: 1fr 1fr; }
}

/* Mobile menu button open state */
.ak-mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ak-mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ak-mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   SHARED PDP BASE STYLES — used by cow-dung, milk, oil templates
   All classes prefixed-free (legacy system used across templates)
══════════════════════════════════════════════════════════════ */

/* Price block */
.pdp-price-row { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.6rem; padding: 1.2rem; background: #edf7eb; border-radius: 8px; flex-wrap: wrap; }
.pdp-price-curr { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: #1a3617; line-height: 1; }
.pdp-price-orig { font-size: 1.1rem; color: #bbb; text-decoration: line-through; font-family: 'Fraunces', serif; }
.pdp-save-chip { background: #d95f1e; color: #fff; font-size: .68rem; font-weight: 700; padding: .3rem .75rem; border-radius: 999px; align-self: center; }

/* Rating row */
.pdp-rating-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.pdp-rev-count { font-size: .75rem; color: #3d7d35; font-weight: 600; text-decoration: underline; cursor: pointer; }

/* Variants */
.pdp-variants { margin-bottom: 1.4rem; }
.pdp-var-label { font-size: .72rem; font-weight: 700; color: #6b6b6b; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.pdp-var-options { display: flex; gap: .6rem; flex-wrap: wrap; }
.var-btn { border: 1.5px solid #e2ddd5; background: #fff; border-radius: 4px; padding: .5rem 1.1rem; font-size: .8rem; font-weight: 600; color: #1a3617; cursor: pointer; transition: all .2s; font-family: inherit; }
.var-btn.active, .var-btn:hover { border-color: #3d7d35; background: #edf7eb; color: #3d7d35; }

/* Quantity control */
.pdp-qty { margin-bottom: 1.6rem; }
.qty-control { display: flex; align-items: center; border: 1.5px solid #e2ddd5; border-radius: 4px; width: fit-content; }
.qty-btn { background: none; border: none; width: 40px; height: 40px; font-size: 1.2rem; cursor: pointer; color: #1a3617; transition: background .2s; font-family: inherit; }
.qty-btn:hover { background: #edf7eb; }
.qty-input { width: 50px; text-align: center; border: none; border-left: 1.5px solid #e2ddd5; border-right: 1.5px solid #e2ddd5; height: 40px; font-size: .9rem; font-weight: 600; color: #1a3617; font-family: inherit; background: transparent; }

/* Action buttons */
.btn-cart { background: #3d7d35; color: #fff; } .btn-cart:hover { background: #2b5a24; }
.btn-buy  { background: #d95f1e; color: #fff; } .btn-buy:hover  { background: #b84f18; }

/* Perk icons */
.pp-ico { font-size: 1rem; flex-shrink: 0; }
.pp-txt { font-size: .75rem; color: #6b6b6b; font-weight: 500; line-height: 1.4; }

/* Product badges */
.product-badge { display: inline-block; font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .28rem .65rem; border-radius: 999px; }
.badge-sale    { background: #d95f1e; color: #fff; }
.badge-hot     { background: #d95f1e; color: #fff; }
.badge-organic { background: #3d7d35; color: #fff; }
.badge-eco     { background: #2b5a24; color: #fff; }
.badge-new     { background: #1a3617; color: #fff; }
.badge-fresh   { background: #1d6fa4; color: #fff; }
.badge-pure    { background: #3d7d35; color: #fff; }

/* Review cards (used by cow-dung, milk, oil templates) */
.rev-card { background: #fff; border: 1px solid #e2ddd5; border-radius: 14px; padding: 1.8rem; }
.rev-stars { color: #f5a623; font-size: .9rem; letter-spacing: .1em; margin-bottom: .7rem; }
.rev-text { font-size: .8rem; color: #6b6b6b; line-height: 1.75; margin-bottom: 1.1rem; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: .7rem; }
.rev-av { width: 34px; height: 34px; background: #3d7d35; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .82rem; font-weight: 700; flex-shrink: 0; }
.rev-name { font-size: .78rem; font-weight: 700; color: #1a3617; }
.rev-via  { font-size: .64rem; color: #6b6b6b; margin-top: .1rem; }

/* Section utilities */
.section-padding    { padding: 6rem 8%; }
.section-padding-lg { padding: 7rem 8%; }
.section-container  { max-width: 1400px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: .4rem; background: #edf7eb; color: #3d7d35; font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .32rem .85rem; border-radius: 999px; margin-bottom: .9rem; }
.tag-dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.section-heading { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: #1a3617; line-height: 1.15; margin-bottom: .6rem; }
.section-heading em { font-style: italic; color: #3d7d35; font-weight: 400; }
.section-sub { font-size: .88rem; color: #6b6b6b; line-height: 1.8; max-width: 52ch; }
.section-header-center { text-align: center; margin-bottom: 3.5rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.bg-cream { background: #faf7f0; }

/* ══════════════════════════════════════════════════════════════
   MILK PRODUCT PAGE — product.milk.liquid
   Fresh, clean palette: white, soft blues, green accents
══════════════════════════════════════════════════════════════ */

.milk-pdp {
  --milk-blue:    #1d6fa4;
  --milk-blue-dk: #155a87;
  --milk-green:   #3d7d35;
  --milk-cream:   #faf7f0;
  --milk-tag-bg:  #e8f4fc;
  --milk-tag-clr: #155a87;
}

/* Fresh seal badge */
.milk-image-wrap { position: relative; }
.milk-fresh-seal {
  position: absolute; top: 1rem; right: 1rem;
  width: 54px; height: 54px; background: var(--milk-blue);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(29,111,164,.4); z-index: 3;
}
.milk-seal-icon { font-size: .9rem; line-height: 1; }
.milk-seal-text { font-size: .42rem; color: #fff; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center; line-height: 1.2; margin-top: .1rem; }

/* Trust chips */
.milk-trust-chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.milk-chip { display: inline-flex; align-items: center; gap: .3rem; background: var(--milk-tag-bg); color: var(--milk-tag-clr); font-size: .65rem; font-weight: 700; letter-spacing: .08em; padding: .3rem .75rem; border-radius: 999px; }

/* Story section */
.milk-story-section { background: #fff; }
.milk-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.milk-story-text p { font-size: .88rem; color: #6b6b6b; line-height: 1.9; margin-bottom: 1rem; }
.milk-benefits { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.milk-benefit { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 1.2rem; background: var(--milk-cream); border-radius: 10px; border: 1px solid rgba(29,111,164,.12); transition: border-color .2s, box-shadow .2s; }
.milk-benefit:hover { border-color: var(--milk-blue); box-shadow: 0 4px 16px rgba(29,111,164,.1); }
.milk-benefit-icon { width: 38px; height: 38px; background: var(--milk-tag-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.milk-benefit strong { display: block; font-size: .82rem; font-weight: 700; color: #1a3617; margin-bottom: .2rem; }
.milk-benefit p { font-size: .74rem; color: #6b6b6b; line-height: 1.5; margin: 0 !important; }

/* Story visual */
.milk-story-visual { position: relative; }
.milk-story-img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.14); display: block; }
.milk-story-placeholder { width: 100%; height: 500px; background: #e8f4fc; border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.milk-stat-card { position: absolute; background: #fff; border-radius: 12px; padding: .9rem 1.3rem; box-shadow: 0 8px 28px rgba(0,0,0,.14); text-align: center; z-index: 3; }
.milk-stat-1 { bottom: 2rem; left: -1.5rem; }
.milk-stat-2 { top: 2rem; right: -1.5rem; }
.milk-stat-num { display: block; font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--milk-blue); line-height: 1; }
.milk-stat-lbl { display: block; font-size: .62rem; color: #6b6b6b; letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }

/* Range grid */
.milk-range-section { }
.milk-range-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.milk-range-card { background: #fff; border: 1px solid rgba(29,111,164,.12); border-radius: 14px; padding: 2rem 1.6rem; transition: all .3s; position: relative; overflow: hidden; }
.milk-range-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--milk-blue), #7ab8d9); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.milk-range-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(29,111,164,.12); border-color: transparent; }
.milk-range-card:hover::before { transform: scaleX(1); }
.milk-range-icon { font-size: 2.2rem; margin-bottom: .9rem; display: block; }
.milk-range-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: #1a3617; margin-bottom: .6rem; }
.milk-range-desc { font-size: .78rem; color: #6b6b6b; line-height: 1.7; margin-bottom: 1rem; }
.milk-range-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.milk-range-tags span { background: var(--milk-tag-bg); color: var(--milk-tag-clr); font-size: .6rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; letter-spacing: .05em; }

/* Reviews */
.milk-reviews-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 1.4rem; margin-top: 3rem; align-items: stretch; }
.milk-review-overall { background: linear-gradient(135deg, var(--milk-blue-dk), var(--milk-blue)); border-radius: 14px; padding: 2rem 1.2rem; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; }
.milk-overall-num { font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; }
.milk-overall-stars { font-size: 1rem; color: #f5d060; letter-spacing: .15em; }
.milk-overall-count { font-size: .66rem; opacity: .65; letter-spacing: .08em; text-transform: uppercase; }
.milk-overall-tag { font-size: .62rem; background: rgba(255,255,255,.15); padding: .25rem .7rem; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-top: .3rem; }

/* Mission banner */
.milk-mission-banner { background: #155a87; position: relative; overflow: hidden; padding: 6rem 0; }
.milk-mission-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.07) 0%, transparent 60%); pointer-events: none; }
.milk-mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.milk-mission-heading { font-family: 'Fraunces', serif; font-size: clamp(1.8rem,3vw,2.8rem); color: #fff; font-weight: 700; line-height: 1.15; margin: .8rem 0 1.2rem; }
.milk-mission-heading em { font-style: italic; color: #7ab8d9; font-weight: 400; }
.milk-mission-sub { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 2rem; }
.milk-mission-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.milk-mission-chip { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: .65rem 1rem; font-size: .76rem; color: rgba(255,255,255,.75); font-weight: 500; }
.milk-mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.milk-mstat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 2rem 1.5rem; text-align: center; transition: background .25s; }
.milk-mstat:hover { background: rgba(255,255,255,.12); }
.milk-mstat-num { display: block; font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: #7ab8d9; line-height: 1; margin-bottom: .3rem; }
.milk-mstat-lbl { font-size: .66rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }

/* Milk responsive */
@media (max-width: 1024px) {
  .milk-story-inner, .milk-mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .milk-range-grid { grid-template-columns: repeat(2,1fr); }
  .milk-reviews-grid { grid-template-columns: 1fr 1fr; }
  .milk-review-overall { grid-column: 1 / -1; flex-direction: row; gap: 1.5rem; padding: 1.5rem 2rem; justify-content: center; }
  .milk-stat-1 { left: -.5rem; }
  .milk-stat-2 { right: -.5rem; }
}
@media (max-width: 768px) {
  .milk-range-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .milk-reviews-grid { grid-template-columns: 1fr; }
  .milk-review-overall { flex-direction: column; text-align: center; }
  .milk-mission-chips { grid-template-columns: 1fr; }
  .milk-mission-stats { grid-template-columns: 1fr 1fr; }
  .milk-story-img, .milk-story-placeholder { height: 320px; }
  .milk-stat-1 { bottom: 1rem; left: 0; }
  .milk-stat-2 { top: 1rem; right: 0; }
}
@media (max-width: 480px) {
  .milk-range-grid { grid-template-columns: 1fr; }
  .milk-mission-stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
}

/* ══════════════════════════════════════════════════════════════
   WOOD PRESSED OIL PAGE — product.oil.liquid
   Warm golden palette: amber, terracotta, deep greens
══════════════════════════════════════════════════════════════ */

.oil-pdp {
  --oil-amber:    #b8860b;
  --oil-gold:     #d4a017;
  --oil-gold-lt:  #fdf6e3;
  --oil-terra:    #c4622d;
  --oil-green:    #3d7d35;
  --oil-tag-bg:   #fdf0d5;
  --oil-tag-clr:  #8b6000;
}

/* Wood press seal */
.oil-image-wrap { position: relative; }
.oil-press-seal {
  position: absolute; top: 1rem; right: 1rem;
  width: 54px; height: 54px; background: var(--oil-amber);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(184,134,11,.4); z-index: 3;
}
.oil-seal-icon { font-size: .9rem; line-height: 1; }
.oil-seal-text { font-size: .42rem; color: #fff; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center; line-height: 1.2; margin-top: .1rem; }

/* Trust chips */
.oil-trust-chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.oil-chip { display: inline-flex; align-items: center; gap: .3rem; background: var(--oil-tag-bg); color: var(--oil-tag-clr); font-size: .65rem; font-weight: 700; letter-spacing: .08em; padding: .3rem .75rem; border-radius: 999px; }

/* Story section */
.oil-story-section { background: #fff; }
.oil-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.oil-story-text p { font-size: .88rem; color: #6b6b6b; line-height: 1.9; margin-bottom: 1rem; }

/* Process steps */
.oil-process-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.oil-step { display: flex; gap: 1rem; align-items: flex-start; }
.oil-step-num { width: 34px; height: 34px; background: var(--oil-amber); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.oil-step strong { display: block; font-size: .82rem; font-weight: 700; color: #1a3617; margin-bottom: .2rem; }
.oil-step p { font-size: .74rem; color: #6b6b6b; line-height: 1.5; margin: 0; }

/* Story visual */
.oil-story-visual { position: relative; }
.oil-story-img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.14); display: block; }
.oil-story-placeholder { width: 100%; height: 500px; background: var(--oil-gold-lt); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.oil-stat-card { position: absolute; background: #fff; border-radius: 12px; padding: .9rem 1.3rem; box-shadow: 0 8px 28px rgba(0,0,0,.14); text-align: center; z-index: 3; }
.oil-stat-1 { bottom: 2rem; left: -1.5rem; }
.oil-stat-2 { top: 2rem; right: -1.5rem; }
.oil-stat-num { display: block; font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--oil-amber); line-height: 1; }
.oil-stat-lbl { display: block; font-size: .62rem; color: #6b6b6b; letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }

/* Comparison table */
.oil-compare-section { }
.oil-compare-table { margin-top: 3rem; border-radius: 14px; overflow: hidden; border: 1px solid #e2ddd5; }
.oil-compare-header, .oil-compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.oil-compare-header { background: #1a3617; padding: 1.2rem 1.5rem; }
.oil-compare-header .oil-compare-feature { color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.oil-compare-header .oil-compare-col { font-size: .82rem; font-weight: 700; color: #fff; text-align: center; line-height: 1.4; }
.oil-compare-header .oil-compare-col small { display: block; font-size: .66rem; opacity: .65; font-weight: 400; margin-top: .2rem; }
.oil-compare-row { padding: 1rem 1.5rem; border-bottom: 1px solid #e2ddd5; align-items: center; }
.oil-compare-row:last-child { border-bottom: none; }
.oil-compare-row:nth-child(even) { background: #faf7f0; }
.oil-compare-feature { font-size: .8rem; font-weight: 600; color: #1a3617; }
.oil-compare-col { font-size: .78rem; text-align: center; padding: 0 .5rem; }
.oil-good { color: #2b5a24; font-weight: 600; }
.oil-bad  { color: #c4622d; }
.oil-compare-ours { background: rgba(61,125,53,.06); }

/* Range grid */
.oil-range-section { }
.oil-range-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.oil-range-card { background: #fff; border: 1px solid rgba(184,134,11,.15); border-radius: 14px; padding: 2rem 1.6rem; transition: all .3s; position: relative; overflow: hidden; }
.oil-range-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--oil-amber), var(--oil-gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.oil-range-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(184,134,11,.15); border-color: transparent; }
.oil-range-card:hover::before { transform: scaleX(1); }
.oil-range-icon { font-size: 2.2rem; margin-bottom: .9rem; display: block; }
.oil-range-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: #1a3617; margin-bottom: .6rem; }
.oil-range-desc { font-size: .78rem; color: #6b6b6b; line-height: 1.7; margin-bottom: 1rem; }
.oil-range-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.oil-range-tags span { background: var(--oil-tag-bg); color: var(--oil-tag-clr); font-size: .6rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; letter-spacing: .05em; }

/* Reviews */
.oil-reviews-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 1.4rem; margin-top: 3rem; align-items: stretch; }
.oil-review-overall { background: linear-gradient(135deg, #8b6000, var(--oil-amber)); border-radius: 14px; padding: 2rem 1.2rem; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; }
.oil-overall-num { font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; }
.oil-overall-stars { font-size: 1rem; color: #f5d060; letter-spacing: .15em; }
.oil-overall-count { font-size: .66rem; opacity: .65; letter-spacing: .08em; text-transform: uppercase; }
.oil-overall-tag { font-size: .62rem; background: rgba(255,255,255,.18); padding: .25rem .7rem; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-top: .3rem; }

/* Mission banner */
.oil-mission-banner { background: #1a3617; position: relative; overflow: hidden; padding: 6rem 0; }
.oil-mission-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(184,134,11,.15) 0%, transparent 55%); pointer-events: none; }
.oil-mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.oil-mission-heading { font-family: 'Fraunces', serif; font-size: clamp(1.8rem,3vw,2.8rem); color: #fff; font-weight: 700; line-height: 1.15; margin: .8rem 0 1.2rem; }
.oil-mission-heading em { font-style: italic; color: #d4a017; font-weight: 400; }
.oil-mission-sub { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 2rem; }
.oil-mission-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.oil-mission-chip { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: .65rem 1rem; font-size: .76rem; color: rgba(255,255,255,.75); font-weight: 500; }
.oil-mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.oil-mstat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 2rem 1.5rem; text-align: center; transition: background .25s; }
.oil-mstat:hover { background: rgba(255,255,255,.1); }
.oil-mstat-num { display: block; font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: #d4a017; line-height: 1; margin-bottom: .3rem; }
.oil-mstat-lbl { font-size: .66rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }

/* Oil responsive */
@media (max-width: 1024px) {
  .oil-story-inner, .oil-mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .oil-range-grid { grid-template-columns: repeat(2,1fr); }
  .oil-reviews-grid { grid-template-columns: 1fr 1fr; }
  .oil-review-overall { grid-column: 1 / -1; flex-direction: row; gap: 1.5rem; padding: 1.5rem 2rem; justify-content: center; }
  .oil-compare-header, .oil-compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .oil-stat-1 { left: -.5rem; }
  .oil-stat-2 { right: -.5rem; }
}
@media (max-width: 768px) {
  .oil-range-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .oil-reviews-grid { grid-template-columns: 1fr; }
  .oil-review-overall { flex-direction: column; text-align: center; }
  .oil-mission-chips { grid-template-columns: 1fr; }
  .oil-mission-stats { grid-template-columns: 1fr 1fr; }
  .oil-story-img, .oil-story-placeholder { height: 320px; }
  .oil-compare-header, .oil-compare-row { grid-template-columns: 1fr 1fr; }
  .oil-compare-feature { display: none; }
  .oil-stat-1 { bottom: 1rem; left: 0; }
  .oil-stat-2 { top: 1rem; right: 0; }
}
@media (max-width: 480px) {
  .oil-range-grid { grid-template-columns: 1fr; }
  .oil-mission-stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .oil-compare-header, .oil-compare-row { grid-template-columns: 1fr 1fr; font-size: .72rem; }
}

/* ── Footer Newsletter ── */
.footer-newsletter { background: #1a3617; padding: 2.5rem 8%; }
.footer-newsletter-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-nl-heading { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.footer-nl-sub { font-size: .78rem; color: rgba(255,255,255,.65); }
.footer-nl-form { display: flex; gap: .5rem; }
.footer-nl-input { padding: .75rem 1rem; border: 1.5px solid rgba(255,255,255,.25); border-radius: 4px; background: rgba(255,255,255,.1); color: #fff; font-size: .84rem; font-family: inherit; outline: none; width: 280px; }
.footer-nl-input::placeholder { color: rgba(255,255,255,.5); }
.footer-nl-input:focus { border-color: #7ac97a; }
.footer-nl-btn { padding: .75rem 1.4rem; background: #d95f1e; color: #fff; border: none; border-radius: 4px; font-size: .84rem; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; transition: background .2s; }
.footer-nl-btn:hover { background: #b84f18; }
.footer-nl-success { color: #7ac97a; font-size: .84rem; font-weight: 600; }
@media (max-width: 768px) {
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .footer-nl-form { flex-direction: column; }
  .footer-nl-input { width: 100%; }
  .footer-nl-btn { width: 100%; }
}

/* ── Collection Tag Filters ── */
.collection-filters-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.collection-tag-filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-tag-btn { padding: .35rem .85rem; border: 1.5px solid #e2ddd5; border-radius: 999px; font-size: .75rem; font-weight: 600; color: #6b6b6b; text-decoration: none; transition: all .2s; background: #fff; }
.filter-tag-btn:hover, .filter-tag-btn.active { border-color: #3d7d35; color: #3d7d35; background: #edf7eb; }
