/* ════════════════════════════════════════════════════════════════════
   home-v8.css — The Pure Harvest Group
   Premium homepage · matches brand brief
   ─────────────────────────────────────────────────────────────────
   Sections covered:
   - Hero with Hindi tagline
   - Trust badge bar (6 badges)
   - Round category icons
   - Premium product card (used everywhere)
   - Best Sellers slider
   - Story (Govind Kaka + Bhavesh)
   - Comparison (Market vs Pure Harvest)
   - Traceability QR
   - Packaging showcase
   - Testimonials
   - WhatsApp CTA banner
   ════════════════════════════════════════════════════════════════════ */

/* ── HERO V8 ─────────────────────────────────────────────────── */
.hero-v8 {
  position: relative;
  margin: 0 0 18px;
  background:
    linear-gradient(135deg, rgba(11, 79, 47, 0.97) 0%, rgba(6, 53, 31, 0.99) 100%),
    radial-gradient(circle at 75% 25%, rgba(172, 147, 98, 0.18) 0%, transparent 55%);
  color: #FAF7EF;
  overflow: hidden;
  isolation: isolate;
}

/* SLIDER — track + slides + dots */
.hero-v8-slider {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-v8-track {
  display: flex;
  width: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.hero-v8-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 28px 18px 46px;
  display: flex;
  flex-direction: column;
}
.hero-v8-slide .hero-v8-inner {
  width: 100%;
}
.hero-v8-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.hv8-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 247, 239, 0.32);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
  border: 0;
  padding: 0;
}
.hv8-dot.active {
  width: 18px;
  border-radius: 100px;
  background: #AC9362;
}
.hv8-dot:hover {
  background: rgba(250, 247, 239, 0.55);
}
.hv8-dot.active:hover {
  background: #AC9362;
}

/* Mini-trust now sits in its own row inside hero, below the slider */
.hero-v8 > .hero-v8-mini-trust {
  position: relative;
  z-index: 2;
  padding: 16px 18px 22px;
  border-top: 1px solid rgba(250, 247, 239, 0.14);
  background: transparent;
}

.hero-v8::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 147, 98, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-v8::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-v8-inner {
  position: relative;
  z-index: 2;
}

.hero-v8-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(172, 147, 98, 0.18);
  border: 1px solid rgba(172, 147, 98, 0.45);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #AC9362;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-v8-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #AC9362;
  display: inline-block;
  animation: hero-v8-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-v8-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.45); }
}

.hero-v8-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: #FAF7EF;
}

.hero-v8-title em {
  font-style: italic;
  color: #AC9362;
  font-weight: 500;
}

.hero-v8-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(250, 247, 239, 0.78);
  margin: 0 0 20px;
  max-width: 320px;
}

.hero-v8-btns {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-v8-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 18px;
  background: #AC9362;
  color: #06351F;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .15s, background .15s;
  box-shadow: 0 4px 14px rgba(172, 147, 98, 0.35);
}

.hero-v8-btn-primary:hover {
  transform: translateY(-1px);
  background: #BFA577;
}

.hero-v8-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 16px;
  background: rgba(250, 247, 239, 0.1);
  color: #FAF7EF;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(250, 247, 239, 0.3);
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .15s;
}

.hero-v8-btn-secondary:hover {
  background: rgba(250, 247, 239, 0.18);
}

.hero-v8-mini-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 247, 239, 0.14);
}

.hero-v8-mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.hero-v8-mini-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(172, 147, 98, 0.18);
  border-radius: 50%;
  color: #AC9362;
}

.hero-v8-mini-icon svg {
  width: 13px;
  height: 13px;
  stroke: #AC9362;
}

.hero-v8-mini-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(250, 247, 239, 0.85);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════════════
   F2 PREMIUM HERO (hero-v9) — 2026-05-22
   Single static premium D2C hero. Replaces the old hero-v8 carousel on
   the homepage (old CSS retained for any other page still using it /
   for admin to re-enable in future).

   Mobile-first. Standard breakpoints:
     <=767px  mobile   → stacked, text on top, image below
     768-1023 tablet   → tighter 2-col split
     >=1024   desktop  → 2-col split, generous spacing
   ════════════════════════════════════════════════════════════════════ */

.hero-v9 {
  position: relative;
  margin: 0 0 18px;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(172, 147, 98, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 6% 88%, rgba(11, 79, 47, 0.06) 0%, transparent 55%),
    #FAF7EF;
  overflow: hidden;
  isolation: isolate;
}

.hero-v9-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 18px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── TEXT COLUMN ──────────────────────────────────────────── */
.hero-v9-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;          /* prevents grid/flex overflow */
}

.hero-v9-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0B4F2F;
  padding: 6px 12px;
  background: rgba(11, 79, 47, 0.07);
  border: 1px solid rgba(11, 79, 47, 0.14);
  border-radius: 999px;
}

.hero-v9-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #AC9362;
  flex-shrink: 0;
}

.hero-v9-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 6.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: #0B4F2F;
  margin: 4px 0 0;
}

.hero-v9-title em {
  font-style: italic;
  font-weight: 400;
  color: #AC9362;
}

.hero-v9-sub {
  font-size: 15px;
  line-height: 1.55;
  color: #5A5043;
  max-width: 460px;
  margin: 0;
}

/* ── CTAs ─────────────────────────────────────────────────── */
.hero-v9-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-v9-cta-primary,
.hero-v9-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}

.hero-v9-cta-primary {
  background: #0B4F2F;
  color: #FAF7EF;
  box-shadow: 0 6px 20px rgba(11, 79, 47, 0.22);
}

.hero-v9-cta-primary:hover {
  background: #06351F;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 79, 47, 0.28);
}

.hero-v9-cta-secondary {
  background: transparent;
  color: #0B4F2F;
  border: 1.5px solid rgba(11, 79, 47, 0.35);
}

.hero-v9-cta-secondary:hover {
  background: rgba(11, 79, 47, 0.06);
  border-color: rgba(11, 79, 47, 0.6);
}

/* ── TRUST PILLS ──────────────────────────────────────────── */
.hero-v9-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 0;
  margin: 10px 0 0;
}

.hero-v9-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #0B4F2F;
  padding: 5px 11px;
  background: #fff;
  border: 1px solid rgba(11, 79, 47, 0.16);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(11, 79, 47, 0.04);
}

.hero-v9-pill svg {
  color: #AC9362;
  flex-shrink: 0;
}

/* ── MEDIA (image) ────────────────────────────────────────── */
.hero-v9-media {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(11, 79, 47, 0.04);
  box-shadow:
    0 18px 40px -12px rgba(11, 79, 47, 0.22),
    0 4px 12px rgba(11, 79, 47, 0.08);
}

.hero-v9-media picture,
.hero-v9-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v9-media img {
  aspect-ratio: 4 / 3;        /* mobile default */
}

/* ── TABLET (768-1023) ───────────────────────────────────── */
@media (min-width: 768px) {
  .hero-v9-inner {
    padding: 40px 28px 44px;
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }
  .hero-v9-text { flex: 1 1 50%; }
  .hero-v9-media {
    flex: 1 1 50%;
    max-width: 460px;
  }
  .hero-v9-media img { aspect-ratio: 5 / 4; }
}

/* ── DESKTOP (>=1024) ────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero-v9-inner {
    padding: 56px 32px 60px;
    gap: 56px;
  }
  .hero-v9-text { flex: 1 1 56%; gap: 18px; }
  .hero-v9-media {
    flex: 0 1 44%;
    max-width: 520px;
  }
  .hero-v9-media img { aspect-ratio: 1 / 1; }
  .hero-v9-sub  { font-size: 17px; }
  .hero-v9-pill { font-size: 12px; padding: 6px 12px; }
}

/* ── ULTRA-WIDE (>=1280) ─────────────────────────────────── */
@media (min-width: 1280px) {
  .hero-v9-inner { padding: 64px 40px 72px; }
}

/* ── REDUCED MOTION — disable transform animations ───────── */
@media (prefers-reduced-motion: reduce) {
  .hero-v9-cta-primary,
  .hero-v9-cta-secondary { transition: none; }
  .hero-v9-cta-primary:hover { transform: none; }
}

/* ── TRUST BADGE BAR ──────────────────────────────────────── */
.trust-bar-v8 {
  background: linear-gradient(135deg, #06351F 0%, #0B4F2F 100%);
  padding: 18px 12px;
  margin: 0 0 18px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.trust-bar-v8::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 50%, rgba(172, 147, 98, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.trust-bar-v8-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 6px;
}

.trust-badge-v8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 6px;
}

.trust-badge-v8-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(172, 147, 98, 0.18);
  border: 1px solid rgba(172, 147, 98, 0.4);
  border-radius: 50%;
  margin-bottom: 6px;
  color: #AC9362;
}

.trust-badge-v8-icon svg {
  width: 18px;
  height: 18px;
  stroke: #AC9362;
  fill: none;
}

.trust-badge-v8-title {
  font-size: 10px;
  font-weight: 700;
  color: #FAF7EF;
  margin-bottom: 2px;
  line-height: 1.2;
}

.trust-badge-v8-desc {
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(250, 247, 239, 0.65);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* ── ROUND CATEGORY ICONS (overrides existing .cats-row) ──── */
.cats-row {
  gap: 14px !important;
  padding: 6px 16px 14px !important;
}

.cats-row .cat-pill {
  width: 64px !important;
  flex-shrink: 0 !important;
}

.cats-row .cat-ico {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%) !important;
  border: 1.5px solid rgba(172, 147, 98, 0.35) !important;
  box-shadow: 0 2px 8px rgba(11, 79, 47, 0.06) !important;
  transition: all 0.2s !important;
}

.cats-row .cat-ico svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #0B4F2F !important;
  fill: none !important;
}

.cats-row .cat-pill:hover .cat-ico {
  border-color: #AC9362 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(172, 147, 98, 0.22) !important;
}

.cats-row .cat-pill.on .cat-ico {
  background: linear-gradient(135deg, #0B4F2F 0%, #06351F 100%) !important;
  border-color: #0B4F2F !important;
  box-shadow: 0 4px 12px rgba(11, 79, 47, 0.32) !important;
}

.cats-row .cat-pill.on .cat-ico svg {
  stroke: #AC9362 !important;
}

.cats-row .cat-nm {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #555 !important;
  margin-top: 6px !important;
}

.cats-row .cat-pill.on .cat-nm {
  color: #06351F !important;
  font-weight: 700 !important;
}

/* ── STORY SECTION (Govind Kaka + Bhavesh) ────────────────── */
.story-v8 {
  margin: 0 0 18px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #0B4F2F 0%, #06351F 100%);
  color: #FAF7EF;
  position: relative;
  overflow: hidden;
}

.story-v8::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 147, 98, 0.15) 0%, transparent 70%);
}

.story-v8-inner {
  position: relative;
  z-index: 1;
}

.story-v8-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #AC9362;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.story-v8-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #FAF7EF;
  font-style: italic;
}

.story-v8-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(250, 247, 239, 0.78);
  margin-bottom: 18px;
}

.story-v8-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(250, 247, 239, 0.14);
  border-bottom: 1px solid rgba(250, 247, 239, 0.14);
}

.story-v8-stat-n {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: #AC9362;
  line-height: 1;
}

.story-v8-stat-l {
  font-size: 10px;
  font-weight: 500;
  color: rgba(250, 247, 239, 0.7);
  margin-top: 4px;
  line-height: 1.3;
}

.story-v8-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  background: #AC9362;
  color: #06351F;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .15s, background .15s;
}

.story-v8-cta:hover {
  transform: translateY(-1px);
  background: #BFA577;
}

/* ── COMPARISON SECTION ───────────────────────────────────── */
.compare-v8 {
  margin: 0 16px 18px;
  padding: 8px 0;
}

.compare-v8-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #06351F;
  margin-bottom: 6px;
  font-style: italic;
}

.compare-v8-sub {
  font-size: 12px;
  text-align: center;
  color: #666;
  margin-bottom: 18px;
}

.compare-v8-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compare-v8-col {
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(172, 147, 98, 0.3);
}

.compare-v8-col.bad {
  background: #FCEFEF;
  border-color: #E5C5C5;
}

.compare-v8-col.good {
  background: linear-gradient(135deg, #F0F7F2 0%, #E0EEDF 100%);
  border-color: #0B4F2F;
}

.compare-v8-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  opacity: 0.85;
}

.compare-v8-col.bad .compare-v8-col-title {
  color: #A12020;
}

.compare-v8-col.good .compare-v8-col-title {
  color: #0B4F2F;
}

.compare-v8-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.compare-v8-item:last-child {
  margin-bottom: 0;
}

.compare-v8-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  margin-top: 1px;
}

.compare-v8-col.bad .compare-v8-icon {
  background: #E5C5C5;
  color: #A12020;
}

.compare-v8-col.good .compare-v8-icon {
  background: #0B4F2F;
  color: #FAF7EF;
}

.compare-v8-col.bad .compare-v8-item { color: #6B3535; }
.compare-v8-col.good .compare-v8-item { color: #06351F; }

/* ── TRACEABILITY QR SECTION ─────────────────────────────── */
.trace-v8 {
  margin: 0 0 18px;
  padding: 26px 20px;
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%);
  border-top: 1px solid rgba(172, 147, 98, 0.3);
  border-bottom: 1px solid rgba(172, 147, 98, 0.3);
  position: relative;
}

.trace-v8-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #AC9362;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-align: center;
}

.trace-v8-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #06351F;
  margin-bottom: 18px;
  line-height: 1.25;
  font-style: italic;
}

.trace-v8-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.trace-v8-step {
  background: #FAF7EF;
  border: 1px solid rgba(172, 147, 98, 0.3);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.trace-v8-step-n {
  width: 24px;
  height: 24px;
  background: #0B4F2F;
  color: #AC9362;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.trace-v8-step-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B4F2F;
}

.trace-v8-step-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #06351F;
  line-height: 1.3;
}

.trace-v8-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: #0B4F2F;
  color: #AC9362;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .15s;
  box-shadow: 0 4px 14px rgba(11, 79, 47, 0.25);
}

.trace-v8-cta:hover {
  background: #06351F;
}

/* ════════════════════════════════════════════════════════════════════
   F4 TRACEABILITY BRIDGE (trace-v9) — 2026-05-24
   Replaces .trace-v8 markup on homepage. Old .trace-v8 CSS retained
   for rollback safety; harmless if no matching markup exists.

   Premium "Try It Now" bridge into /trace.php. Customer scans steps,
   feels invited to click the CTA.

   Layout:
     mobile  (<=767px)   → 4 vertical-stacked horizontal cards
                           (narrative order top→bottom)
     tablet  (768-1023)  → same vertical stack, tighter padding
     desktop (>=1024)    → 4 cards in one row with subtle connectors

   Contrast fix vs trace-v8:
     - Step numerals: deep-green on cream (was gold on green, ~3.6:1)
     - CTA text:      cream on deep-green (was gold on green)
     - Both now well above WCAG AA 4.5:1.
   ════════════════════════════════════════════════════════════════════ */

.trace-v9 {
  margin: 0 0 22px;
  padding: 28px 18px 32px;
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%);
  border-top: 1px solid rgba(172, 147, 98, 0.3);
  border-bottom: 1px solid rgba(172, 147, 98, 0.3);
  position: relative;
}

.trace-v9-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── HEADING ─────────────────────────────────────────────── */
.trace-v9-head {
  text-align: center;
  margin-bottom: 22px;
}

.trace-v9-eyebrow {
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #AC9362;
  margin-bottom: 10px;
}

.trace-v9-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #06351F;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── STEPS GRID ──────────────────────────────────────────── */
.trace-v9-grid {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ── STEP CARD ───────────────────────────────────────────── */
.trace-v9-step {
  background: #fff;
  border: 1px solid rgba(172, 147, 98, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 32px 36px 1fr;
  align-items: center;
  gap: 12px;
}

.trace-v9-step-n {
  width: 28px;
  height: 28px;
  background: #FAF7EF;
  border: 1.5px solid rgba(11, 79, 47, 0.18);
  color: #0B4F2F;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
}

.trace-v9-step-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0B4F2F;
  background: rgba(11, 79, 47, 0.06);
  border-radius: 10px;
}

.trace-v9-step-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #06351F;
  line-height: 1.4;
  min-width: 0;
}

/* ── CTA ─────────────────────────────────────────────────── */
.trace-v9-cta-wrap {
  text-align: center;
}

.trace-v9-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: #0B4F2F;
  color: #FAF7EF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(11, 79, 47, 0.22);
  transition: background .15s ease, transform .15s ease, box-shadow .2s ease;
}

.trace-v9-cta:hover {
  background: #06351F;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(11, 79, 47, 0.28);
}

.trace-v9-cta-help {
  font-size: 11.5px;
  color: #6B6157;
  margin: 10px 0 0;
  letter-spacing: 0.01em;
}

/* ── TABLET (768-1023): same stack, more breathing room ──── */
@media (min-width: 768px) {
  .trace-v9 {
    margin: 0 24px 30px;
    padding: 36px 32px 40px;
    border-radius: 20px;
  }
  .trace-v9-head { margin-bottom: 28px; }
  .trace-v9-grid { gap: 12px; margin-bottom: 28px; }
  .trace-v9-step {
    padding: 16px 18px;
    grid-template-columns: 36px 40px 1fr;
    gap: 14px;
  }
  .trace-v9-step-n { width: 32px; height: 32px; font-size: 14px; }
  .trace-v9-step-icon { width: 40px; height: 40px; }
  .trace-v9-step-title { font-size: 14px; }
}

/* ── DESKTOP (>=1024): 4-up row with chevron connectors ──── */
@media (min-width: 1024px) {
  .trace-v9 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 52px 48px 56px;
    border-radius: 20px;
  }
  .trace-v9-head { margin-bottom: 36px; }
  .trace-v9-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 32px;
    position: relative;
  }
  .trace-v9-step {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 10px;
    position: relative;
  }
  /* Subtle chevron connectors between cards (desktop only) */
  .trace-v9-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 1.5px solid rgba(172, 147, 98, 0.55);
    border-right: 1.5px solid rgba(172, 147, 98, 0.55);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
  }
  .trace-v9-step-n {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .trace-v9-step-icon {
    width: 48px;
    height: 48px;
  }
  .trace-v9-step-icon svg {
    width: 26px;
    height: 26px;
  }
  .trace-v9-step-title { font-size: 13.5px; max-width: 180px; }
  .trace-v9-cta { padding: 14px 30px; font-size: 14.5px; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .trace-v9-cta { transition: none; }
  .trace-v9-cta:hover { transform: none; }
}

/* ════════════════════════════════════════════════════════════════════
   F5 PURE HARVEST CIRCLE CALLOUT (circle-cta-v8) — 2026-05-24
   Polishes the existing homepage membership callout. Class name kept
   for backward compat; CSS replaces what was previously inline-only.

   Wrapping PHP gating logic (show to logged-out + seed-tier users only)
   is unchanged in index.php.

   Layout (vertical-centered all breakpoints):
     mobile  (<=767)   → 40px vertical padding, H2 ~26px
     tablet  (768-1023)→ 56px padding, H2 ~32px
     desktop (>=1024)  → 72px padding, H2 ~40px, max-width 720
   ════════════════════════════════════════════════════════════════════ */

.circle-cta-v8 {
  position: relative;
  margin: 0 0 22px;
  padding: 44px 22px 48px;
  background:
    radial-gradient(ellipse at 85% 12%, rgba(201, 162, 74, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #0B4F2F 0%, #06351F 100%);
  color: #FAF7EF;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.circle-cta-v8-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

/* ── HEAD ─────────────────────────────────────────────────── */
.circle-cta-v8-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #C9A24A;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.circle-cta-v8-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 5.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: #FAF7EF;
  margin: 0 0 14px;
}

.circle-cta-v8-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 247, 239, 0.78);
  margin: 0 0 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BENEFITS LIST ────────────────────────────────────────── */
.circle-cta-v8-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  text-align: left;
}

.circle-cta-v8-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(250, 247, 239, 0.92);
  line-height: 1.4;
}

.circle-cta-v8-benefit svg {
  color: #C9A24A;
  flex-shrink: 0;
}

/* ── CTA ─────────────────────────────────────────────────── */
.circle-cta-v8-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: #C9A24A;
  color: #06351F;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(201, 162, 74, 0.32);
  transition: background .15s ease, transform .15s ease, box-shadow .2s ease;
}

.circle-cta-v8-cta:hover {
  background: #D8B25F;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201, 162, 74, 0.42);
}

.circle-cta-v8-foot {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 239, 0.62);
  margin: 14px 0 0;
}

/* ── TABLET (768-1023) ───────────────────────────────────── */
@media (min-width: 768px) {
  .circle-cta-v8 {
    margin: 0 24px 30px;
    padding: 56px 36px 60px;
    border-radius: 20px;
  }
  .circle-cta-v8-inner { max-width: 640px; }
  .circle-cta-v8-eyebrow { font-size: 11px; margin-bottom: 16px; }
  .circle-cta-v8-sub { font-size: 15px; margin-bottom: 26px; }
  .circle-cta-v8-benefits { gap: 10px; margin-bottom: 30px; }
  .circle-cta-v8-benefit { font-size: 14px; }
  .circle-cta-v8-cta { padding: 14px 32px; font-size: 14.5px; }
  .circle-cta-v8-foot { font-size: 12px; margin-top: 16px; }
}

/* ── DESKTOP (>=1024) ────────────────────────────────────── */
@media (min-width: 1024px) {
  .circle-cta-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 72px 56px 76px;
    border-radius: 20px;
  }
  .circle-cta-v8-inner { max-width: 720px; }
  .circle-cta-v8-eyebrow { font-size: 12px; letter-spacing: 2.4px; margin-bottom: 18px; }
  .circle-cta-v8-sub { font-size: 16px; line-height: 1.6; max-width: 520px; margin-bottom: 30px; }
  .circle-cta-v8-benefits { gap: 11px; margin-bottom: 34px; }
  .circle-cta-v8-benefit { font-size: 14.5px; }
  .circle-cta-v8-cta { padding: 14px 34px; font-size: 15px; }
  .circle-cta-v8-foot { font-size: 12.5px; margin-top: 18px; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .circle-cta-v8-cta { transition: none; }
  .circle-cta-v8-cta:hover { transform: none; }
}

/* ── PACKAGING SHOWCASE ──────────────────────────────────── */
.pack-v8 {
  margin: 0 16px 18px;
}

.pack-v8-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #06351F;
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.25;
}

.pack-v8-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pack-v8-card {
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%);
  border: 1px solid rgba(172, 147, 98, 0.3);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pack-v8-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%);
  border: 1px solid rgba(172, 147, 98, 0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 8px rgba(11, 79, 47, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B4F2F;
}

.pack-v8-icon svg {
  width: 44px;
  height: 44px;
}

.pack-v8-text {
  flex: 1;
  min-width: 0;
}

.pack-v8-name {
  font-size: 13px;
  font-weight: 700;
  color: #06351F;
  margin-bottom: 3px;
}

.pack-v8-desc {
  font-size: 11px;
  font-weight: 500;
  color: #666;
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════════════
   F3 PREMIUM PACKAGING SHOWCASE (pack-v9) — 2026-05-24
   Replaces .pack-v8 markup on homepage. Old .pack-v8 CSS retained for
   rollback safety; if no .pack-v8 markup exists, the rules harmlessly
   match nothing.

   Layout:
     mobile  (<=767px)   → 1 column, horizontal cards (icon left, text right)
     tablet  (768-1023)  → 2 cards per row, horizontal cards
     desktop (>=1024)    → 4 cards in one row, vertical cards (icon top)

   Style: cream-to-amber gradient cards, gold-tinted borders, premium SVG
   icons. Matches the broader brand palette (deep green / cream / gold).
   ════════════════════════════════════════════════════════════════════ */

.pack-v9 {
  margin: 0 16px 22px;
}

.pack-v9-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* ── HEADING BLOCK ────────────────────────────────────────── */
.pack-v9-head {
  text-align: center;
  margin-bottom: 18px;
}

.pack-v9-eyebrow {
  font-size: 10.5px;
  letter-spacing: 2.2px;
  color: #C9A24A;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pack-v9-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #06351F;
  margin: 0 0 8px;
}

.pack-v9-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: #5A5043;
  max-width: 540px;
  margin: 0 auto;
}

/* ── GRID (mobile-first: 1 column) ────────────────────────── */
.pack-v9-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ── CARD ─────────────────────────────────────────────────── */
.pack-v9-card {
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%);
  border: 1px solid rgba(172, 147, 98, 0.3);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
}

.pack-v9-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(11, 79, 47, 0.18);
  border-color: rgba(172, 147, 98, 0.55);
}

.pack-v9-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FAF7EF 0%, #F3E8D0 100%);
  border: 1px solid rgba(172, 147, 98, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 2px 8px rgba(11, 79, 47, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B4F2F;
}

.pack-v9-icon svg {
  width: 44px;
  height: 44px;
}

.pack-v9-text {
  flex: 1;
  min-width: 0;
}

.pack-v9-name {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  color: #06351F;
  margin-bottom: 3px;
  line-height: 1.25;
}

.pack-v9-desc {
  font-size: 12px;
  font-weight: 500;
  color: #5A5043;
  line-height: 1.45;
}

/* ── TABLET (768-1023): 2 columns, horizontal cards ──────── */
@media (min-width: 768px) {
  .pack-v9 {
    margin: 0 24px 30px;
  }
  .pack-v9-head {
    margin-bottom: 22px;
  }
  .pack-v9-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pack-v9-card {
    padding: 18px 18px;
    gap: 16px;
  }
  .pack-v9-icon {
    width: 68px;
    height: 68px;
  }
  .pack-v9-icon svg {
    width: 48px;
    height: 48px;
  }
  .pack-v9-name { font-size: 15.5px; }
  .pack-v9-desc { font-size: 12.5px; }
}

/* ── DESKTOP (>=1024): 4 columns, vertical cards ─────────── */
@media (min-width: 1024px) {
  .pack-v9 {
    margin: 0 auto 36px;
    padding: 0 24px;
  }
  .pack-v9-head {
    margin-bottom: 28px;
  }
  .pack-v9-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .pack-v9-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 26px 22px;
    gap: 16px;
  }
  .pack-v9-icon {
    width: 72px;
    height: 72px;
  }
  .pack-v9-icon svg {
    width: 50px;
    height: 50px;
  }
  .pack-v9-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .pack-v9-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .pack-v9-card { transition: none; }
  .pack-v9-card:hover { transform: none; }
}

/* ── WHATSAPP CTA BANNER ─────────────────────────────────── */
.wa-v8 {
  margin: 0 16px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.wa-v8::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  border-radius: 50%;
}

.wa-v8-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.wa-v8-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.wa-v8-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.wa-v8-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.wa-v8-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.wa-v8-btn {
  flex-shrink: 0;
  background: #fff;
  color: #128C7E;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: transform .15s;
}

.wa-v8-btn:hover {
  transform: translateY(-1px);
}

/* ── SECTION HEADERS (consistent across) ─────────────────── */
.sh-v8 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 16px 12px;
}

.sh-v8-l { flex: 1; }

.sh-v8-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #AC9362;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.sh-v8-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  color: #06351F;
  line-height: 1.2;
}

.sh-v8-title em {
  font-style: italic;
  color: #0B4F2F;
}

.sh-v8-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: transparent;
  color: #0B4F2F;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(11, 79, 47, 0.3);
  border-radius: 100px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sh-v8-btn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
}

/* ── DESKTOP UP-SIZING (only when wider than 430 mobile frame) ── */
@media (min-width: 431px) {
  .hero-v8 {
    padding: 36px 28px 30px;
  }
  .hero-v8-title {
    font-size: 30px;
  }
  .hero-v8-sub {
    font-size: 14px;
  }
  .compare-v8-title,
  .pack-v8-title,
  .story-v8-title,
  .trace-v8-title {
    font-size: 24px;
  }
  .pack-v8-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pack-v8-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 14px;
  }
}

/* ── TESTIMONIAL CARD ENHANCEMENTS (v8) ─────────────────── */
.tcard .tc-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.tcard .tc-meta {
  font-size: 11px;
  color: #AC9362;
  letter-spacing: 1px;
  margin-top: 2px;
}
.tcard .tc-vbadge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #0B4F2F;
  color: #FAF7EF;
  padding: 3px 6px;
  border-radius: 3px;
}
.tcard .tc-nm { font-size: 12.5px; font-weight: 700; color: #1A1A1A; }

/* ════════════════════════════════════════════════════════════════════
   DESKTOP LAYOUT FIX (768px+) — sections were stretching full-width
   because style.css turns off body max-width at 768px+.
   This block constrains each v8 section to a centered 1200px container
   and re-flows the internal layouts for desktop.
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* ── HERO (slider) ─────────────────────────────────── */
  .hero-v8 {
    max-width: 1100px;
    margin: 20px auto 28px;
    padding: 0;
    border-radius: 20px;
    /* No min-height here — let slide drive the size for image/video slides.
       Text-only slides will use the slide's own min-height (set below). */
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero-v8-slider {
    flex: 1;
    /* No min-height — auto-fit to slide */
  }
  .hero-v8-track {
    height: 100%;
  }
  .hero-v8-slide {
    padding: 56px 56px 56px;
    min-height: 360px;  /* Only for text-mode slides (no image/video) */
    justify-content: center;
  }
  /* Image-only / video-only slides on desktop.
     Previously locked to 4:1 (very slim banner, cropped non-4:1 images badly).
     Now: use min-aspect-ratio as a floor (won't shrink shorter than 4:1) and
     let the image's natural dimensions drive height up to a sensible cap.
     This means:
       • 4:1 banner (1920×480)        → ~275px tall (looks the same as before)
       • 16:9 image (1920×1080)       → ~620px tall (renders without crop)
       • 1:1 square (1200×1200)       → capped at 620px max-height (centered)
     Recommended: still 1920×480 for slim banner, but 16:9 also works now. */
  .hero-v8-slide.has-image,
  .hero-v8-slide.has-video {
    min-height: 240px;        /* floor — never shorter than this */
    max-height: 620px;        /* ceiling — never taller than this */
    height: auto;             /* let the image inside drive the height */
  }
  .hero-v8-dots {
    bottom: 16px;
  }
  .hero-v8-inner {
    max-width: 720px;
  }
  .hero-v8-title {
    font-size: 48px;
    line-height: 1.08;
  }
  .hero-v8-sub {
    font-size: 16px;
    max-width: 540px;
    line-height: 1.6;
  }
  .hero-v8 > .hero-v8-mini-trust {
    display: flex;
    gap: 36px;
    padding: 18px 56px 22px;
  }
  .hero-v8-mini-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
  }
  .hero-v8-mini-icon {
    width: 32px;
    height: 32px;
  }
  .hero-v8-mini-icon svg {
    width: 16px;
    height: 16px;
  }
  .hero-v8-mini-label {
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
  }
  .hero-v8-mini-label br {
    display: none;
  }

  /* ── TRUST BADGE BAR ──────────────────────────────── */
  .trust-bar-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    border-radius: 16px;
    padding: 32px 40px;
  }
  .trust-bar-v8-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .trust-badge-v8-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  .trust-badge-v8-icon svg {
    width: 24px;
    height: 24px;
  }
  .trust-badge-v8-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .trust-badge-v8-desc {
    font-size: 11px;
    line-height: 1.4;
  }

  /* ── SECTION HEADERS ──────────────────────────────── */
  .sh-v8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 18px;
  }
  .sh-v8-eyebrow {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .sh-v8-title {
    font-size: 30px;
    line-height: 1.2;
  }
  .sh-v8-btn {
    padding: 9px 18px;
    font-size: 12px;
  }
  .sh-v8-btn svg {
    width: 13px;
    height: 13px;
  }

  /* ── CATEGORIES (centered at desktop) ────────────── */
  .cats-row {
    max-width: 1200px !important;
    margin: 0 auto !important;
    justify-content: center !important;
    gap: 32px !important;
    padding: 8px 24px 28px !important;
    overflow-x: visible !important;
  }
  .cats-row .cat-pill {
    width: 88px !important;
  }
  .cats-row .cat-ico {
    width: 80px !important;
    height: 80px !important;
  }
  .cats-row .cat-ico svg {
    width: 30px !important;
    height: 30px !important;
  }
  .cats-row .cat-nm {
    font-size: 12px !important;
    margin-top: 8px !important;
  }

  /* ── PRODUCT SLIDERS — show as grid at desktop ──── */
  .hsc-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4px 24px 28px;
    gap: 20px;
    /* Keep horizontal scroll but constrained */
  }
  .hsc-row .pcard,
  .top-prod-slide {
    flex: 0 0 220px;
  }

  /* ── STORY SECTION ────────────────────────────────── */
  .story-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 64px 56px;
    border-radius: 20px;
  }
  .story-v8-inner {
    max-width: 800px;
  }
  .story-v8-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .story-v8-text {
    font-size: 15px;
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .story-v8-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 20px 0;
    margin-bottom: 28px;
  }
  .story-v8-stat-n {
    font-size: 32px;
  }
  .story-v8-stat-l {
    font-size: 12px;
  }
  .story-v8-cta {
    padding: 13px 26px;
    font-size: 13px;
  }

  /* ── COMPARISON SECTION ───────────────────────────── */
  .compare-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 32px 24px;
  }
  .compare-v8-title {
    font-size: 36px;
    margin-bottom: 8px;
  }
  .compare-v8-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .compare-v8-grid {
    max-width: 800px;
    margin: 0 auto;
    gap: 24px;
  }
  .compare-v8-col {
    padding: 28px 24px;
    border-radius: 16px;
  }
  .compare-v8-col-title {
    font-size: 13px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  .compare-v8-item {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .compare-v8-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
    margin-top: 2px;
  }

  /* ── TRACEABILITY ─────────────────────────────────── */
  .trace-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 56px 56px;
    border-radius: 20px;
  }
  .trace-v8-eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .trace-v8-title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .trace-v8-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
    margin: 0 auto 28px;
    gap: 20px;
  }
  .trace-v8-step {
    padding: 24px 16px;
  }
  .trace-v8-step-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }
  .trace-v8-step-icon svg {
    width: 28px;
    height: 28px;
  }
  .trace-v8-step-title {
    font-size: 12px;
  }
  .trace-v8-cta {
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 28px;
    font-size: 13px;
  }

  /* ── PACKAGING ────────────────────────────────────── */
  .pack-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 24px;
  }
  .pack-v8-title {
    font-size: 36px;
    margin-bottom: 28px;
    line-height: 1.2;
  }
  .pack-v8-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pack-v8-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    text-align: left;
    gap: 16px;
  }
  .pack-v8-icon {
    width: 56px;
    height: 56px;
  }
  .pack-v8-icon {
    width: 72px;
    height: 72px;
  }
  .pack-v8-icon svg {
    width: 50px;
    height: 50px;
  }
  .pack-v8-name {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .pack-v8-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* ── WHATSAPP CTA BANNER ──────────────────────────── */
  .wa-v8 {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 24px 28px;
    border-radius: 16px;
    gap: 18px;
  }
  .wa-v8-icon {
    width: 56px;
    height: 56px;
  }
  .wa-v8-icon svg {
    width: 28px;
    height: 28px;
  }
  .wa-v8-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .wa-v8-sub {
    font-size: 13px;
  }
  .wa-v8-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* ── TESTIMONIAL ROW ──────────────────────────────── */
  .testi-row {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 24px 24px;
    gap: 16px;
  }
  .tcard {
    min-width: 320px;
    flex: 0 0 320px;
  }

  /* ── SHOP PAGE PRODUCT GRID — remove legacy 60px top padding ── */
  .prod-grid {
    padding: 16px 24px 28px !important;
    gap: 20px !important;
  }
}

/* ── EXTRA-WIDE DESKTOP (1280px+) ─────────────────── */
@media (min-width: 1280px) {
  .hero-v8-title {
    font-size: 56px;
  }
  .story-v8-title,
  .compare-v8-title,
  .trace-v8-title,
  .pack-v8-title {
    font-size: 40px;
  }
  .sh-v8-title {
    font-size: 32px;
  }
}


/* ════════════════════════════════════════════════════════════════════
   TABLET FIX (431-767px) — same legacy padding issue
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 431px) and (max-width: 767px) {
  .prod-grid {
    padding: 16px 20px 16px !important;
  }
  .hsc-row {
    padding: 4px 20px 16px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   HERO MEDIA — Pack A v2 (May 3 PM 2026)
   
   Image-only / Video-only mode: when slide has image_path or video,
   ONLY show the media full-bleed, no text overlay, no buttons.
   Optionally clickable to btn1_url.
   
   Text mode (no media uploaded) — falls back to original v8 text layout.
   ════════════════════════════════════════════════════════════════════ */

/* Slide must be position:relative so absolute media fills it correctly */
.hero-v8-slide {
  position: relative;
  overflow: hidden;
}

/* When slide has image OR video — kill all padding so media fills edge-to-edge.
   Prelive Stabilization 2026-05-17: this block was previously UNSCOPED, so its
   `aspect-ratio: 5/4` (later in source, equal specificity) overrode the desktop
   @media(min-width:768px) rule defined earlier — forcing desktop slides into a
   tall 5:4 box instead of the wide banner. Scoped to ≤767px so mobile keeps
   5:4 and the desktop rule (min-height/max-height/height:auto) wins on ≥768px.
   Mobile (≤767px): 5/4 aspect ratio matches recommended 750×600 mobile image. */
.hero-v8-slide.has-image,
.hero-v8-slide.has-video {
  padding: 0;
  background: #06351F; /* dark fallback while media loads */
  isolation: isolate;
}
@media (max-width: 767px) {
  .hero-v8-slide.has-image,
  .hero-v8-slide.has-video {
    aspect-ratio: 5 / 4;
    min-height: 280px;
  }
}

/* Media container fills the entire slide */
.hero-v8-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-v8-media img,
.hero-v8-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Click-through link covers the whole slide */
.hero-v8-media-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

/* Make sure text mode (no image) keeps its z-index for content above bg */
.hero-v8-slide:not(.has-image):not(.has-video) .hero-v8-inner {
  position: relative;
  z-index: 2;
}

/* Emoji fallback (text mode with emoji set) — small floating circle */
.hero-v8-media-emoji {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  height: 64px;
  background: rgba(172, 147, 98, 0.12);
  border: 1px solid rgba(172, 147, 98, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero-v8-media-emoji span {
  font-size: 32px;
  line-height: 1;
}

/* Tag pills (text mode only) */
.hero-v8-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 18px;
}
.hero-v8-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(250, 247, 239, 0.14);
  border: 1px solid rgba(201, 162, 74, 0.4);
  color: #FAF7EF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Hide dots over media for cleaner look (optional — comment if you want dots) */
/* Keep dots visible but pull them above media with their own z-index */
.hero-v8-dots { z-index: 3; }

@media (min-width: 768px) {
  .hero-v8-tag {
    font-size: 12px;
    padding: 7px 14px;
  }
}
/* ══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════════════ */
.testimonials-v8 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 56px;
  text-align: center;
}
.testimonials-v8-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #C9A24A;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.testimonials-v8-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 500;
  color: #0B4F2F;
  line-height: 1.2;
  margin: 0 0 10px;
}
.testimonials-v8-sub {
  font-size: 14px;
  color: #6B6157;
  margin: 0 auto 36px;
  max-width: 540px;
}
.testimonials-v8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  gap: 18px;
  justify-content: center;
}
.testimonial-v8-card {
  background: #fff;
  border: 1px solid #E8DFCC;
  border-radius: 16px;
  padding: 22px 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(11, 79, 47, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-v8-card:hover {
  box-shadow: 0 6px 18px rgba(11, 79, 47, 0.08);
  transform: translateY(-2px);
}
.testimonial-v8-stars {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #DDD;
}
.testimonial-v8-stars .on {
  color: #F5A623;
}
.testimonial-v8-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2D2418;
  margin: 0 0 14px;
  font-style: italic;
}
.testimonial-v8-text::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 28px;
  color: #C9A24A;
  font-weight: 600;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}
.testimonial-v8-author {
  font-size: 12.5px;
  color: #5C4525;
}
.testimonial-v8-name {
  font-weight: 700;
}
.testimonial-v8-loc {
  color: #857A6B;
  font-weight: 400;
}

@media (min-width: 768px) {
  .testimonials-v8 {
    padding: 72px 40px 72px;
  }
  .testimonials-v8-title {
    font-size: 40px;
  }
  .testimonials-v8-grid {
    grid-template-columns: repeat(3, minmax(0, 340px));
    gap: 22px;
  }
}

/* Bilona badge color (used on Pure Desi Ghee card) */
.pc-badge.bd-bilona {
  background: linear-gradient(135deg, #C9A24A 0%, #B58932 100%);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   REELS SECTION (Push 4)
   ═══════════════════════════════════════════════════════════════════
   - Horizontal scroll of vertical 9:16 cards
   - Hidden scrollbar, snap-to-card
   - Modal opens on tap with autoplay, mute toggle, prev/next
   ═══════════════════════════════════════════════════════════════════ */
.reels-v8 {
  padding: 56px 20px 24px;
  text-align: center;
  background: var(--cream, #FAF7EF);
}
.reels-v8-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-dark, #8A6A2D);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.reels-v8-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  color: var(--green, #0B4F2F);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
@media (min-width: 720px) {
  .reels-v8 { padding: 80px 20px 40px; }
  .reels-v8-title { font-size: 38px; }
}

/* ═══════════════════════════════════════════════════════════════
   Reels carousel — Hotfix 1.1 (2026-05-12)
   ─────────────────────────────────────────────────────────────
   Mobile: horizontal scroll-snap. First reel ~80vw with ~20vw of
           next reel peeking on right.
   Desktop: centered carousel, cards capped at 320px.
   Single-reel mode: centered, no peek padding.
   ═══════════════════════════════════════════════════════════════ */
.reels-v8-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-top: 4px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20vw;        /* lets next reel peek on right (mobile, multi-reel) */
  margin: 0 -20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: flex-start;
}
.reels-v8-scroll::-webkit-scrollbar { display: none; }

/* Single-reel mode: center, no peek padding, no horizontal scroll overhead */
.reels-v8-scroll.reels-single {
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
}

.reel-card {
  flex: 0 0 80vw;
  width: 80vw;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  scroll-snap-align: start;
  box-shadow: 0 4px 14px rgba(31, 27, 22, 0.12);
  border: 0;
  padding: 0;
  font-family: inherit;
  text-align: left;
  /* Cards are not interactive (no popup) — no hover lift to imply otherwise */
}

.reel-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

.reel-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, .65) 100%);
  pointer-events: none;
}

.reel-card-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
/* When card also has a CTA pill, push the title above it to avoid overlap */
.reel-card.has-cta .reel-card-title {
  bottom: 54px;
}

.reel-card-cta {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green, #0B4F2F);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 3;
  transition: transform .15s, opacity .15s;
}
.reel-card-cta:hover { transform: translateY(-1px); opacity: .95; }

.reel-card-mute {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 4;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.reel-card-mute:hover,
.reel-card-mute:focus-visible {
  background: rgba(0, 0, 0, 0.75);
  outline: 0;
}

@media (min-width: 720px) {
  /* ─── Desktop multi-reel (default) ─────────────────────────────
     Constrain the scroll container to 1200px and center it via auto margins.
     Cards sit centered via flex justify-content. When content overflows
     (many reels), JS toggles .reels-overflow so flex switches to flex-start
     and horizontal scroll behaves normally. */
  .reels-v8-scroll:not(.reels-single) {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 4px;
    padding-bottom: 28px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 18px;
  }
  .reels-v8-scroll:not(.reels-single) .reel-card {
    flex: 0 0 clamp(220px, 22vw, 300px);
    width: clamp(220px, 22vw, 300px);
    max-width: 300px;
    border-radius: 22px;
  }
  /* When many reels overflow, switch to flex-start so first reel stays
     in the visible area and the user can scroll right. */
  .reels-v8-scroll.reels-overflow:not(.reels-single) {
    justify-content: flex-start;
  }

  /* ─── Desktop single-reel (strong override) ───────────────────
     Stronger than just justify-content:center: grid + place-items
     bypasses any flex-overflow quirks and centers in both axes. */
  .reels-v8-scroll.reels-single {
    display: grid;
    place-items: center;
    overflow: visible;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 4px;
    padding-bottom: 28px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .reels-v8-scroll.reels-single .reel-card {
    flex: none;
    width: clamp(240px, 22vw, 300px);
    max-width: 300px;
    border-radius: 22px;
  }

  /* Card-level text/cta sizing — applies in both single and multi modes */
  .reel-card-title { font-size: 15px; bottom: 16px; left: 16px; right: 16px; }
  .reel-card.has-cta .reel-card-title { bottom: 58px; }
  .reel-card-cta   { font-size: 13.5px; padding: 8px 16px; bottom: 16px; left: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-card-cta { transition: none; }
  .reel-card-cta:hover { transform: none; }
}