/* ===== OnlyKale V5 — Premium DTC Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --olive: #3B4A2A;
  --olive-light: #4A5A2B;
  --olive-dark: #2A3A1A;
  --cream: #FAFAF2;
  --cream-dark: #F0EFE4;
  --text: #2A2A20;
  --text-light: #555545;
  --white: #FFFFFF;
  --accent: #8B9A3A;
  --neon: #D4E94B;
  --neon-glow: rgba(212,233,75,0.3);
  --gold: #C5A55A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }

/* ===== TYPOGRAPHY ===== */
h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.08; font-weight: 900; }
h3, h4, h5 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(0.85rem, 1.4vw, 1.05rem); }
p { font-size: 1rem; line-height: 1.75; color: var(--text-light); }
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--neon);
  margin-bottom: 12px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-neon {
  background: var(--neon);
  color: var(--olive-dark);
  border-color: var(--neon);
  font-weight: 700;
  /* Task 1: Subtle default green ambient glow */
  box-shadow: 0 0 18px rgba(212,233,75,0.28), 0 0 36px rgba(212,233,75,0.10);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.btn-neon:hover {
  background: #e0f55a;
  transform: translateY(-3px);
  /* Task 1: Slightly brighter glow on hover */
  box-shadow: 0 8px 28px rgba(212,233,75,0.50), 0 0 60px rgba(212,233,75,0.22);
}
.btn-ghost {
  background: rgba(250,250,242,0.08);
  color: var(--cream);
  border-color: rgba(250,250,242,0.5);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }
.btn-olive {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}
.btn-olive:hover {
  background: var(--olive-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59,74,42,0.25);
}
.btn-outline-olive {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn-outline-olive:hover { background: var(--olive); color: var(--cream); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(42,58,26,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(42,58,26,0.99);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.header-logo {
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.header-logo img {
  height: 82px;
  filter: grayscale(1) brightness(10) drop-shadow(0 0 10px rgba(212,233,75,0.5)) drop-shadow(0 0 25px rgba(212,233,75,0.25));
  transition: all 0.3s ease;
}
.scrolled .header-logo img {
  height: 62px;
  filter: grayscale(1) brightness(10) drop-shadow(0 0 15px rgba(212,233,75,0.8)) drop-shadow(0 0 40px rgba(212,233,75,0.4));
}
.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(250,250,242,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-nav a:hover { color: var(--neon); }
.header-cart { color: rgba(250,250,242,0.8); text-decoration: none; transition: color 0.3s ease; }
.header-cart:hover { color: var(--neon); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.8rem; color: var(--cream); cursor: pointer; }
.mobile-nav { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--olive-dark);
}

/* Right-side radial spotlight */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%,
      rgba(100, 160, 40, 0.22) 0%,
      rgba(60, 110, 20, 0.10) 45%,
      transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 80px 10px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero eyebrow */
.hero .eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--neon);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease forwards;
  animation-delay: 0.1s;
}

/* Headline */
.headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(64px, 6vw, 90px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 22px;
}
.headline .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease forwards;
}
.headline .line-1 { animation-delay: 0.22s; }
.headline .line-2 { animation-delay: 0.36s; }
.headline .line-3 { animation-delay: 0.50s; }
.headline em {
  font-style: italic;
  color: var(--neon);
}

/* Review row */
.review-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-bottom: 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease forwards;
  animation-delay: 0.64s;
}
.review-row .stars { color: var(--neon); }
.review-row .review-text { color: var(--cream); }
.review-row .dot { color: rgba(250,250,242,0.4); margin: 0 2px; }
.review-row .attr { color: var(--neon); letter-spacing: 0.06em; }

/* Sub text */
.subtext {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 250, 242, 0.70);
  margin-bottom: 22px;
  max-width: 460px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease forwards;
  animation-delay: 0.78s;
}

/* CTA Buttons row */
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease forwards;
  animation-delay: 1.06s;
}
.ctas .btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0 32px;
  height: 54px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  border: 2px solid var(--neon);
}
.ctas .btn:hover { transform: translateY(-2px); }
.ctas .btn-primary {
  background: var(--neon);
  color: var(--olive-dark);
  border-color: var(--neon);
  box-shadow: 0 4px 24px rgba(212, 233, 75, 0.25);
}
.ctas .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(212, 233, 75, 0.40);
}
.ctas .btn-outline {
  background: transparent;
  color: var(--neon);
}
.ctas .btn-outline:hover {
  background: rgba(212, 233, 75, 0.08);
}

/* Why Kale link */
.why-link {
  display: inline-block;
  font-size: 14px;
  color: rgba(250, 250, 242, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(250, 250, 242, 0.35);
  cursor: pointer;
  transition: color 0.18s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease forwards;
  animation-delay: 1.20s;
}
.why-link:hover { color: var(--cream); }

/* Product column */
.hero-product {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* Glow circle behind product */
.hero-product::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(160, 210, 60, 0.18) 0%,
    rgba(100, 160, 30, 0.10) 50%,
    transparent 75%);
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-product img {
  position: relative;
  z-index: 1;
  height: clamp(550px, 65vw, 850px);
  width: auto;
  object-fit: contain;
  transform: rotate(4deg);
  filter:
    drop-shadow(0 20px 60px rgba(212, 233, 75, 0.20))
    drop-shadow(0 0 30px rgba(212, 233, 75, 0.12));
  animation: imgGlow 3s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
}

@keyframes imgGlow {
  0%, 100% { filter: drop-shadow(0 20px 60px rgba(212,233,75,0.20)) drop-shadow(0 0 30px rgba(212,233,75,0.12)); }
  50% { filter: drop-shadow(0 20px 80px rgba(212,233,75,0.35)) drop-shadow(0 0 50px rgba(212,233,75,0.25)); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ─── Hero Marquee Bar ───────────────────────────────────── */
.marquee-bar {
  background: #1C2810;
  border-top: 1px solid rgba(212, 233, 75, 0.15);
  border-bottom: 1px solid rgba(212, 233, 75, 0.08);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-bar::before {
  left: 0;
  background: linear-gradient(to right, #1C2810, transparent);
}
.marquee-bar::after {
  right: 0;
  background: linear-gradient(to left, #1C2810, transparent);
}
.marquee-bar-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  padding: 0 28px;
  position: relative;
}
.marquee-item::after {
  content: '•';
  position: absolute;
  right: 0;
  transform: translateX(50%);
  color: rgba(212, 233, 75, 0.35);
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--olive);
  padding: 18px 0;
  border-bottom: 2px solid rgba(212,233,75,0.12);
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon-svg {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(212,233,75,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon-svg svg { width: 16px; height: 16px; stroke: var(--neon); }
.trust-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250,250,242,0.75);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; position: relative; }
.section-cream { background: var(--cream); }
.section-cream.science-texture {
  background: var(--cream);
  background-image: radial-gradient(circle at 20% 50%, rgba(59,74,42,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(212,233,75,0.05) 0%, transparent 50%);
}
/* Task 4: Research section — clean solid background, pattern removed */
.section-olive.research-texture {
  position: relative;
  background: var(--olive);
  /* Checkerboard pattern removed for premium clean look */
}
.section-white { background: var(--white); }
.section-olive { background: var(--olive); color: var(--cream); }
.section-olive p { color: rgba(250,250,242,0.85); }
.section-olive h2, .section-olive h3 { color: var(--cream); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow { display: block; text-align: center; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 550px; margin: 0 auto; }

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { margin-bottom: 16px; }
.two-col-image img { border-radius: 20px; display: block; }
.nutrition-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(59,74,42,0.08);
}

/* ===== BENEFITS GRID ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card {
  padding: 40px 24px;
  text-align: center;
  border-radius: 16px;
  background: rgba(250,250,242,0.06);
  border: 1px solid rgba(250,250,242,0.08);
  transition: all 0.35s ease;
}
.benefit-card:hover { transform: translateY(-8px); background: rgba(250,250,242,0.1); }
.benefit-card h3 { color: var(--cream); margin-bottom: 8px; }
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(212,233,75,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--neon); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card p { font-size: 0.88rem; }

/* ===== HOW IT WORKS ===== */

/* Parallax background for the How It Works section */
#how-it-works {
  position: relative;
  background-image: url('../images/simple-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Semi-transparent white overlay — keeps image at ~0.23 visible */
#how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.77);
  pointer-events: none;
  z-index: 0;
}

/* All direct children sit above the overlay */
#how-it-works > * {
  position: relative;
  z-index: 1;
}

/* iOS / mobile: background-attachment: fixed doesn't work on most mobile browsers */
@media (max-width: 768px) {
  #how-it-works {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }
  #how-it-works::before {
    background: rgba(255, 255, 255, 0.80); /* slightly more opaque on small screens */
  }
}

/* @supports fallback for browsers that don't support fixed attachment properly */
@supports (-webkit-overflow-scrolling: touch) {
  #how-it-works {
    background-attachment: scroll;
  }
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
  flex: 1;
  max-width: 320px;
}
.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #2A3A1A;
  line-height: 1;
  opacity: 1;
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  letter-spacing: -2px;
}
.step-icon-wrap {
  width: 108px; height: 108px;
  margin: 52px auto 20px;
  position: relative;
  z-index: 1;
  background: #D4E94B;
  border-radius: 50%;
  padding: 22px;
  box-sizing: border-box;
  box-shadow: 0 6px 24px rgba(212,233,75,0.45), 0 2px 8px rgba(42,58,26,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-icon-wrap:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(212,233,75,0.6), 0 4px 12px rgba(42,58,26,0.2);
}
.step-icon-wrap svg { width: 100%; height: 100%; }
.step-card h3 {
  color: var(--olive);
  margin-bottom: 10px;
  font-size: 1rem;
}
.step-card p { font-size: 0.9rem; }
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 50px;
  flex-shrink: 0;
  width: 60px;
}
.step-connector svg { width: 100%; height: 24px; }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(59,74,42,0.06);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(59,74,42,0.12); }
/* Card flip */
.product-card-flip {
  perspective: 900px;
  position: relative;
  overflow: hidden;
}
.product-card-flip-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}
.product-card-front,
.product-card-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.product-card-front { position: relative; }
.product-card-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}
.product-card-back .product-card-img { height: 100%; }
/* Desktop: hover on the flip area triggers the flip */
.product-card-flip:hover .product-card-flip-inner { transform: rotateY(180deg); }
/* Mobile: tap toggles .flipped class via JS */
.product-card-flip.flipped .product-card-flip-inner { transform: rotateY(180deg); }

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
}
.product-card-body { padding: 24px 28px 28px; }
.product-card-body h3 { font-size: 0.88rem; margin-bottom: 4px; color: var(--olive); }
.product-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-style: italic;
}
.product-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 4px;
}
.product-card-price .price-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-bottom: 16px;
}
.product-card .btn { width: 100%; text-align: center; padding: 14px 20px; }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--olive);
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
}
.product-badge.best {
  background: var(--neon);
  color: var(--olive-dark);
}

/* ===== COST COMPARISON ===== */
.cost-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.cost-compare .cost-card { flex: 1; min-width: 0; }
.cost-card {
  flex: 1;
  padding: 40px 32px;
  border-radius: 20px;
  position: relative;
}
.cost-old {
  background: rgba(250,250,242,0.06);
  border: 1px solid rgba(250,250,242,0.1);
}
.cost-new {
  background: rgba(212,233,75,0.08);
  border: 2px solid var(--neon);
}
.cost-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(250,250,242,0.3);
  padding: 0 20px;
  flex-shrink: 0;
}
.cost-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250,250,242,0.7);
  margin-bottom: 8px;
}
.cost-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 24px;
}
.cost-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(250,250,242,0.5);
}
.cost-new .cost-price { color: var(--neon); }
.cost-list { list-style: none; }
.cost-list li {
  font-size: 0.88rem;
  color: rgba(250,250,242,0.85);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}
.cost-con::before { content: '✗'; position: absolute; left: 0; color: #e05555; font-size: 0.85rem; }
.cost-pro::before { content: '✓'; position: absolute; left: 0; color: var(--neon); font-weight: 700; font-size: 0.85rem; }
.cost-neon-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: var(--olive-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== EDUCATION GRID ===== */
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.edu-card {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(59,74,42,0.06);
  border-bottom: 1px solid rgba(59,74,42,0.06);
  transition: all 0.3s ease;
}
.edu-card:nth-child(3n) { border-right: none; }
.edu-card:nth-child(n+4) { border-bottom: none; }
.edu-card:hover { background: var(--white); box-shadow: inset 0 -3px 0 var(--neon); }
.edu-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.35s ease;
}
.edu-icon svg { width: 28px; height: 28px; stroke: var(--cream); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.edu-card:hover .edu-icon { transform: scale(1.08) rotate(5deg); border-radius: 50%; box-shadow: 0 8px 25px rgba(59,74,42,0.2); }
.edu-card h3 { font-size: 0.88rem; color: var(--olive); margin-bottom: 8px; }
.edu-card p { font-size: 0.85rem; line-height: 1.6; }
.edu-source {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.65rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.edu-source:hover { opacity: 1; }

/* ===== COMPARE TABLE ===== */
.compare-wrap { max-width: 750px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 20px;
  background: var(--olive);
  color: var(--cream);
}
.compare-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
.compare-table th:nth-child(2) { background: var(--neon); color: var(--olive-dark); }
.compare-table th:last-child { border-radius: 0 12px 0 0; }
.compare-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid rgba(59,74,42,0.12); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--olive); font-size: 0.88rem; }
.compare-table td:nth-child(2) { background: rgba(212,233,75,0.06); }
.compare-table tr:hover td { background: rgba(59,74,42,0.02); }
.compare-table tr:hover td:nth-child(2) { background: rgba(212,233,75,0.1); }
.compare-check {
  color: var(--neon); font-weight: 700; font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.compare-table tr:hover .compare-check { transform: scale(1.3); }
.compare-x { color: #d9534f; font-size: 1.1rem; font-weight: 700; }
.compare-table tbody tr {
  opacity: 1;
  transform: none;
}
.compare-table tr:nth-child(even) td { background: rgba(59,74,42,0.02); }
.compare-table tr:nth-child(even) td:nth-child(2) { background: rgba(212,233,75,0.08); }

/* ===== TESTIMONIALS CAROUSEL — Task 5: Full Reformat ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  /* Side masks for elegant fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.testimonial-track {
  display: flex;
  gap: 24px;
  align-items: stretch;   /* All cards same height in a row */
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}
/* Nav row */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.testimonial-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(59,74,42,0.18);
  background: var(--white);
  color: var(--olive);
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(59,74,42,0.06);
}
.testimonial-arrow:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: var(--olive-dark);
  box-shadow: 0 4px 14px rgba(212,233,75,0.3);
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(59,74,42,0.18);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active { background: var(--neon); width: 26px; border-radius: 4px; }

/* ===== CARD — fixed consistent sizing ===== */
.testimonial-card {
  /* Consistent dimensions */
  min-width: calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  flex-shrink: 0;
  box-sizing: border-box;

  /* Fixed height — overflow fades gracefully */
  height: 290px;
  overflow: hidden;
  position: relative;

  /* Visual design */
  background: var(--white);
  border-radius: 20px;
  padding: 28px 28px 60px; /* extra bottom padding for fade area */
  border: 1px solid rgba(59,74,42,0.08);
  box-shadow: 0 2px 14px rgba(59,74,42,0.05);
  transition: all 0.3s ease;

  /* Column layout so author sticks to bottom-ish */
  display: flex;
  flex-direction: column;
}
/* Bottom fade-out for overflowing text */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 68px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(59,74,42,0.10);
}

/* Star rating */
.testimonial-stars {
  color: var(--neon);
  font-size: 0.88rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* Quote text — fills available space */
.testimonial-text {
  flex: 1;
  font-size: 0.93rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 16px;
  overflow: hidden;
  min-height: 0;
}

/* Author name */
.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--olive);
  flex-shrink: 0;
  position: relative;
  z-index: 2; /* Above the fade */
  margin-top: auto;
}

/* Platform badge */
.testimonial-meta {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ===== INSTAGRAM GRID ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-card {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
  transition: all 0.3s ease;
}
.insta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-card:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(59,74,42,0.15); }
.insta-card:hover img { transform: scale(1.08); }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(42,58,26,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-card:hover .insta-hover { opacity: 1; }

/* ===== MARQUEE ===== */
.marquee-strip {
  overflow: hidden;
  padding: 20px 0;
  background: var(--cream);
  border-top: 1px solid rgba(59,74,42,0.06);
  border-bottom: 1px solid rgba(59,74,42,0.06);
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--olive);
  padding: 0 24px;
  opacity: 0.06;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FAQ ===== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(59,74,42,0.1); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--olive); background: none; border: none;
  width: 100%; text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(212,233,75,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400;
  transition: all 0.3s ease; flex-shrink: 0; margin-left: 16px;
  color: var(--olive);
}
.faq-item.active .faq-toggle { background: var(--neon); color: var(--olive-dark); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 22px; font-size: 0.92rem; line-height: 1.75; color: var(--text-light); }
.faq-item.active .faq-answer { max-height: 500px; }

/* ===== CONTACT ===== */
.contact-form label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250,250,242,0.5);
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid rgba(250,250,242,0.15);
  border-radius: 12px;
  background: rgba(250,250,242,0.05);
  color: var(--cream);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--neon); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(250,250,242,0.35); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
.site-footer { background: var(--olive-dark); color: var(--cream); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img {
  height: 55px;
  filter: grayscale(1) brightness(10) drop-shadow(0 0 10px rgba(212,233,75,0.5)) drop-shadow(0 0 25px rgba(212,233,75,0.25));
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(250,250,242,0.6); font-size: 0.88rem; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.78rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.5px; margin-bottom: 20px; color: var(--cream);
}
.footer-col a { display: block; color: rgba(250,250,242,0.6); text-decoration: none; font-size: 0.88rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--neon); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(250,250,242,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: all 0.2s;
}
.footer-social a:hover { background: var(--neon); border-color: var(--neon); color: var(--olive-dark); }
.footer-email-form { display: flex; gap: 8px; margin-top: 12px; }
.footer-email-form input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 12px 16px;
  border: 1px solid rgba(250,250,242,0.15);
  border-radius: 10px;
  background: rgba(250,250,242,0.05);
  color: var(--cream);
  outline: none;
}
.footer-email-form input::placeholder { color: rgba(250,250,242,0.35); }
.footer-email-form button {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: var(--neon);
  color: var(--olive-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.footer-email-form button:hover { background: #e0f55a; }
.footer-bottom { border-top: 1px solid rgba(250,250,242,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { color: rgba(250,250,242,0.4); font-size: 0.75rem; }
.footer-disclaimer { max-width: 650px; margin: 10px auto 0; font-size: 0.68rem; color: rgba(250,250,242,0.3); line-height: 1.5; }

/* ===== WAVE ===== */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; margin-top: -1px; }
.wave-divider svg { display: block; width: 100%; height: 35px; }
.wave-divider.flip { transform: rotate(180deg); margin-top: 0; margin-bottom: -1px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { flex-wrap: wrap; gap: 20px; }
  .step-arrow, .step-connector { display: none; }
  .step-card { max-width: 100%; flex-basis: 100%; }
  .cost-compare { flex-direction: column; gap: 20px; }
  .cost-vs { padding: 10px 0; }
}
@media (max-width: 768px) {
  /* Hero V4 mobile */
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 110px 24px 48px;
    gap: 32px;
  }
  .hero-product {
    order: -1;
    margin-bottom: -80px;
    position: relative;
    z-index: 0;
  }
  .hero-product img { height: 300px; }
  .hero-product::before { width: 260px; height: 260px; }
  .hero-text {
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .headline { font-size: 48px; }
  .review-row { justify-content: center; }
  .subtext { max-width: 100%; text-align: center; }
  .ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .ctas .btn { width: 100%; min-width: unset; }
  .why-link { text-align: center; }

  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav {
    display: none; position: fixed; inset: 0;
    background: var(--olive-dark); z-index: 9999;
    padding: 80px 24px 40px;
    flex-direction: column; align-items: center; gap: 28px;
  }
  .mobile-nav.active { display: flex; }
  .mobile-nav a { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 600; text-transform: uppercase; letter-spacing: 4px; color: var(--cream); text-decoration: none; }
  .mobile-nav a:hover { color: var(--neon); }
  .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 2rem; color: var(--cream); cursor: pointer; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse-mobile > :first-child { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-card { border-right: none !important; }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RETAILER STRIP ===== */
/* retailer-strip removed */

/* ===== RESEARCH GRID ===== */
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.research-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(250,250,242,0.06);
  border: 1px solid rgba(250,250,242,0.08);
  transition: all 0.3s ease;
}
.research-card:hover { transform: translateY(-4px); background: rgba(250,250,242,0.1); }
.research-journal {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--neon);
  margin-bottom: 10px;
  opacity: 0.8;
}
.research-card h3 { color: var(--cream); font-size: 0.85rem; margin-bottom: 10px; line-height: 1.4; }
.research-card p { font-size: 0.82rem; color: rgba(250,250,242,0.6); line-height: 1.6; margin-bottom: 14px; }
.research-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--neon);
  text-decoration: none;
  transition: opacity 0.2s;
}
.research-link:hover { opacity: 0.7; }

/* ===== SUSTAINABILITY GRID ===== */
.sustain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sustain-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(59,74,42,0.06);
  transition: all 0.3s ease;
}
.sustain-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(59,74,42,0.08); }
.sustain-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,233,75,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.sustain-icon svg { width: 30px; height: 30px; }
.sustain-card h3 { color: var(--olive); margin-bottom: 8px; font-size: 0.85rem; }
.sustain-card p { font-size: 0.85rem; }
/* sustain-highlight removed */

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--olive-dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,233,75,0.05) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--neon); text-align: center; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem,5vw,3.8rem); margin-bottom: 16px; }
.page-hero p { color: rgba(250,250,242,0.7); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59,74,42,0.06);
  transition: all 0.35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(59,74,42,0.1); }
.blog-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--cream);
}
.blog-card-body { padding: 24px; }
.blog-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.blog-card-body h3 { color: var(--olive); margin-bottom: 8px; font-size: 0.88rem; }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--olive);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-link:hover { color: var(--neon); }

/* Blog category tags */
.blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--neon);
  color: var(--olive);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img-wrap .blog-card-img { display: block; width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img-wrap .blog-card-img { transform: scale(1.05); }

/* ===== AFFILIATE PAGE ===== */
.aff-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.aff-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(59,74,42,0.06);
}
.aff-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--neon);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.aff-step h3 { color: var(--olive); margin-bottom: 8px; }

/* ===== RESPONSIVE (new sections) ===== */
@media (max-width: 960px) {
  .research-grid { grid-template-columns: repeat(2, 1fr); }
  .sustain-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .aff-steps { grid-template-columns: 1fr; }
  /* Task 5: 2 cards at tablet */
  .testimonial-card {
    min-width: calc(50% - 12px);
    width: calc(50% - 12px);
    height: 300px;
  }
}
@media (max-width: 768px) {
  .research-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  /* retailer items removed */
  .blog-grid { grid-template-columns: 1fr; }
  /* Task 5: 1 card on mobile */
  .testimonial-card {
    min-width: calc(100% - 0px);
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: 320px;
  }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pdp-main-image { border-radius: 20px; overflow: hidden; background: var(--white); margin-bottom: 16px; }
.pdp-main-image img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: opacity 0.3s ease; }
.pdp-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.pdp-thumb {
  width: 72px; height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
  flex-shrink: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--neon); box-shadow: 0 0 0 2px rgba(212,233,75,0.4); }
.pdp-thumb:hover { border-color: var(--neon); opacity: 0.85; transform: scale(1.06); }

/* ===== SHOP PAGE PRODUCT THUMBNAIL GALLERY ===== */
.product-card-img-wrap { position: relative; overflow: hidden; }
.product-thumbs-row {
  display: flex;
  gap: 6px;
  padding: 10px 12px 8px;
  overflow-x: auto;
  background: var(--white);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-thumbs-row::-webkit-scrollbar { display: none; }
.product-thumbs-item {
  width: 54px; height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--cream-dark);
  flex-shrink: 0;
}
.product-thumbs-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumbs-item.active { border-color: var(--neon); box-shadow: 0 0 0 2px rgba(212,233,75,0.35); }
.product-thumbs-item:hover { border-color: var(--neon); opacity: 0.82; transform: scale(1.07); }
@media (max-width: 600px) {
  .pdp-thumbs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .pdp-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb { width: 60px; height: 60px; }
  .product-thumbs-item { width: 48px; height: 48px; }
}
.pdp-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pdp-price { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(59,74,42,0.1); }
.pdp-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--olive);
}
.pdp-price-note {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pdp-stars { color: var(--neon); font-size: 1rem; letter-spacing: 2px; }
.pdp-rating-text { font-size: 0.8rem; color: var(--text-light); }
.pdp-description { font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.pdp-buttons { display: flex; gap: 12px; margin: 28px 0; }
.pdp-badges { margin-bottom: 24px; padding: 16px 0; border-top: 1px solid rgba(59,74,42,0.08); border-bottom: 1px solid rgba(59,74,42,0.08); }
.pdp-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.pdp-trust-item { display: flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--olive); }

.pdp-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pdp-benefit { text-align: center; padding: 32px 20px; border-radius: 16px; background: var(--cream); border: 1px solid rgba(59,74,42,0.06); transition: all 0.3s ease; }
.pdp-benefit:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(59,74,42,0.08); }
.pdp-benefit-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pdp-benefit h3 { color: var(--olive); margin-bottom: 8px; font-size: 0.85rem; }
.pdp-benefit p { font-size: 0.85rem; }

.pdp-ingredient-box { background: var(--white); padding: 32px; border-radius: 16px; border: 2px solid rgba(212,233,75,0.3); margin-top: 20px; }
.pdp-nutrition-list { border-top: 2px solid var(--olive); }
.pdp-nutrition-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(59,74,42,0.08);
  font-size: 0.9rem;
}
.pdp-nutrition-row span:first-child { font-weight: 600; color: var(--olive); }
.pdp-nutrition-row span:last-child { color: var(--text-light); }

@media (max-width: 768px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-buttons { flex-direction: column; }
  .pdp-benefits-grid { grid-template-columns: 1fr; }
}

/* ===== TEAM GRID ===== */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream-dark);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 { color: var(--olive); font-size: 0.9rem; margin-bottom: 4px; }
.team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== SUSTAINABILITY PAGE ===== */
.journey-timeline { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 0; max-width: 900px; margin: 0 auto; }
.journey-step { flex: 0 0 160px; text-align: center; position: relative; }
.journey-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--neon); line-height: 1; margin-bottom: 12px; }
.journey-icon { width: 64px; height: 64px; background: var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.journey-icon svg { width: 32px; height: 32px; stroke: var(--cream); }
.journey-step h3 { font-size: 0.9rem; color: var(--olive); margin-bottom: 8px; }
.journey-step p { font-size: 0.8rem; line-height: 1.6; color: var(--text-light); }
.journey-connector { flex: 0 0 40px; display: flex; align-items: center; justify-content: center; padding-top: 52px; }
.journey-connector svg { width: 40px; height: 24px; }

.impact-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.impact-stat { text-align: center; padding: 32px 20px; border-radius: 16px; background: rgba(250,250,242,0.06); border: 1px solid rgba(250,250,242,0.1); }
.impact-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--neon); line-height: 1; margin-bottom: 12px; }
.impact-stat h3 { color: var(--cream); font-size: 0.95rem; margin-bottom: 8px; }
.impact-stat p { color: rgba(250,250,242,0.7); font-size: 0.85rem; line-height: 1.6; }

.sus-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.sus-compare-col { background: var(--white); border-radius: 16px; padding: 40px 32px; border: 2px solid rgba(59,74,42,0.08); }
.sus-compare-col h3 { font-size: 1.2rem; margin-bottom: 20px; }
.sus-compare-col ul { list-style: none; padding: 0; }
.sus-compare-col li { padding: 10px 0; font-size: 0.92rem; color: var(--text-light); border-bottom: 1px solid rgba(59,74,42,0.06); }
.sus-compare-col li:last-child { border-bottom: none; }
.sus-compare-good { border-color: var(--neon); background: rgba(212,233,75,0.04); }

@media (max-width: 768px) {
  .journey-timeline { flex-direction: column; align-items: center; }
  .journey-step { flex: none; width: 100%; max-width: 300px; }
  .journey-connector { transform: rotate(90deg); padding: 0; margin: 8px 0; }
  .impact-stats-grid { grid-template-columns: 1fr 1fr; }
  .sus-compare { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .impact-stats-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG POST TEMPLATE ===== */

/* Hero */
.blog-post-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--olive-dark);
  padding-bottom: 0;
}
.blog-post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.blog-post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42,58,26,0.55) 0%,
    rgba(42,58,26,0.80) 60%,
    rgba(42,58,26,0.97) 100%
  );
}
.blog-post-hero-inner {
  position: relative; z-index: 2;
  padding: 140px 0 64px;
  max-width: 800px;
}
.blog-post-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250,250,242,0.5);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.blog-post-back-top:hover { color: var(--neon); }
.blog-post-category-pill {
  display: inline-block;
  background: var(--neon);
  color: var(--olive-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 20px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(250,250,242,0.5);
}
.blog-post-divider { opacity: 0.4; }

/* Article layout: main + sidebar */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Article body typography */
.blog-post-body {
  min-width: 0;
}
.blog-post-lead {
  font-size: 1.18rem !important;
  line-height: 1.8 !important;
  color: var(--text) !important;
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(59,74,42,0.08);
}
.blog-post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--olive);
  line-height: 1.2;
  margin: 40px 0 16px;
  padding-top: 8px;
}
.blog-post-body h2:first-of-type { margin-top: 28px; }
.blog-post-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}
.blog-post-body em { font-style: italic; color: var(--text); }
.blog-post-body strong { font-weight: 700; color: var(--text); }

/* Sources box */
.blog-post-sources {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 16px;
  border-left: 4px solid var(--neon);
  border: 1px solid rgba(59,74,42,0.08);
  border-left: 4px solid var(--neon);
}
.blog-post-sources h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--olive);
  margin-bottom: 14px;
}
.blog-post-sources ul {
  list-style: none;
  padding: 0; margin: 0;
}
.blog-post-sources ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(59,74,42,0.06);
}
.blog-post-sources ul li:last-child { border-bottom: none; }
.blog-post-sources ul li a {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.blog-post-sources ul li a:hover { color: var(--olive); }

/* Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-post-sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(59,74,42,0.08);
}
.blog-post-sidebar-cta {
  background: var(--olive);
}
.blog-post-sidebar-cta .eyebrow { color: var(--neon) !important; }
.blog-post-sidebar-cta p { color: rgba(250,250,242,0.75); font-size: 0.88rem; }
.blog-post-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
}
.blog-post-toc a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1.4;
}
.blog-post-toc a:hover {
  background: rgba(59,74,42,0.05);
  color: var(--olive);
  padding-left: 14px;
}

/* Bottom CTA section */
.blog-post-cta-section {
  background: var(--olive);
  padding: 80px 0;
}
.blog-post-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.blog-post-cta-inner p {
  color: rgba(250,250,242,0.75);
  font-size: 1rem;
  margin-bottom: 0;
}
.blog-post-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Back link in body (not hero) */
.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--olive);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.blog-post-back:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-post-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .blog-post-sidebar-card { flex: 1 1 260px; }
  .blog-post-toc { display: none; }
}
@media (max-width: 600px) {
  .blog-post-hero-inner { padding: 120px 0 48px; }
  .blog-post-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .blog-post-lead { font-size: 1.05rem !important; }
  .blog-post-body h2 { font-size: 1.3rem; }
  .blog-post-sidebar { flex-direction: column; }
  .blog-post-cta-buttons { flex-direction: column; align-items: stretch; text-align: center; }
  .blog-post-cta-buttons .btn { text-align: center; }
  .blog-post-sources { padding: 20px; }
}

/* ===== MOBILE OPTIMIZATION PASS V2 ===== */

/* Baseline: no horizontal scroll on any page */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }
* { min-width: 0; }

/* All images safe */
img, video, svg, embed, object { max-width: 100%; height: auto; }

/* ===== 960px — Tablet (override inline styles with !important) ===== */
@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .products-grid  { grid-template-columns: repeat(2, 1fr) !important; }
  .sustain-grid   { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ===== 768px — Mobile ===== */
@media (max-width: 768px) {

  /* --- Global spacing --- */
  .section { padding: 48px 0; }
  .site-footer { padding: 52px 0 24px; }
  .page-hero { padding: 96px 0 48px; }
  .section-title { margin-bottom: 32px; }
  .container { padding: 0 16px; }

  /* --- Header logo --- */
  .header-logo img { height: 54px !important; }
  .scrolled .header-logo img { height: 44px !important; }

  /* --- Trust strip --- */
  .trust-items { gap: 10px 18px; justify-content: center; flex-wrap: wrap; }
  .trust-text { font-size: 0.65rem; letter-spacing: 1px; }

  /* --- Hero V4 (mobile overrides handled in first 768px block above) --- */

  /* --- Typography --- */
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .page-hero p { font-size: 0.95rem; }

  /* --- Buttons --- */
  .btn { padding: 14px 28px; }

  /* --- Marquee --- */
  .marquee-track span { font-size: 2rem; }

  /* --- Grids: override inline styles with !important --- */
  .benefits-grid   { grid-template-columns: 1fr !important; }
  .products-grid   { grid-template-columns: 1fr !important; }
  .sustain-grid    { grid-template-columns: 1fr !important; }
  .research-grid   { grid-template-columns: 1fr !important; }
  .edu-grid        { grid-template-columns: 1fr !important; }
  .blog-grid       { grid-template-columns: 1fr !important; }
  .aff-steps       { grid-template-columns: 1fr !important; }
  .impact-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* --- Compare table: scrollable wrapper --- */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 460px; }

  /* --- Cost compare --- */
  .cost-price { font-size: 2.2rem; }
  .cost-card  { padding: 28px 18px; }

  /* --- Impact stats --- */
  .impact-number { font-size: 2.8rem; }

  /* --- Footer email form: stack vertically --- */
  .footer-email-form { flex-direction: column; }
  .footer-email-form input  { width: 100%; }
  .footer-email-form button { width: 100%; }
  .footer-grid { gap: 24px; }

  /* --- Blog card images --- */
  .blog-card-img,
  .blog-card-img-wrap .blog-card-img { height: 180px; }

  /* --- PDP layout (already 1-col, but ensure buttons stack) --- */
  .pdp-buttons { flex-direction: column !important; }
}

/* ===== 480px — Small Mobile ===== */
@media (max-width: 480px) {

  /* --- Global spacing --- */
  .section { padding: 36px 0; }
  .site-footer { padding: 44px 0 18px; }
  .page-hero { padding: 86px 0 36px; }
  .section-title { margin-bottom: 24px; }
  .container { padding: 0 14px; }

  /* --- Header logo --- */
  .header-logo img { height: 46px !important; }
  .scrolled .header-logo img { height: 38px !important; }

  /* --- Hero V4 (mobile handled in 768px block) --- */

  /* --- Buttons --- */
  .btn { padding: 12px 22px; font-size: 0.78rem; }

  /* --- Trust strip --- */
  .trust-items { gap: 8px 12px; }
  .trust-icon-svg { width: 26px; height: 26px; }

  /* --- Grids: all single column --- */
  .benefits-grid   { grid-template-columns: 1fr !important; }
  .products-grid   { grid-template-columns: 1fr !important; }
  .sustain-grid    { grid-template-columns: 1fr !important; }
  .research-grid   { grid-template-columns: 1fr !important; }
  .edu-grid        { grid-template-columns: 1fr !important; }
  .blog-grid       { grid-template-columns: 1fr !important; }
  .aff-steps       { grid-template-columns: 1fr !important; }
  .impact-stats-grid { grid-template-columns: 1fr !important; }
  .pdp-benefits-grid { grid-template-columns: 1fr !important; }

  /* --- Marquee --- */
  .marquee-track span { font-size: 1.5rem; }

  /* --- Cost compare --- */
  .cost-price { font-size: 1.8rem; }
  .cost-card  { padding: 20px 14px; }

  /* --- Impact stats --- */
  .impact-number { font-size: 2.2rem; }

  /* --- Testimonials --- */
  .testimonial-card { padding: 20px 16px; }

  /* --- Edu cards --- */
  .edu-card { padding: 28px 16px; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-brand img { height: 44px; }
  .footer-bottom p { font-size: 0.68rem; }

  /* --- Compare table --- */
  .compare-table { font-size: 0.78rem; min-width: 360px; }
  .compare-table th,
  .compare-table td { padding: 10px 10px; }

  /* --- Page hero --- */
  .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* --- PDP --- */
  .pdp-buttons { flex-direction: column !important; }
  .pdp-benefits-grid { grid-template-columns: 1fr !important; }
  .pdp-price-main { font-size: 2.2rem; }

  /* --- Blog card images --- */
  .blog-card-img,
  .blog-card-img-wrap .blog-card-img { height: 150px; }

  /* --- Section padding for product pages --- */
  .section[style*="padding-top"] { padding-top: 40px !important; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--olive-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

/* ===== TASK 3: Global Text Sizing + Readability Pass ===== */

/* Base: eyebrow slightly larger (was 0.72rem) */
.eyebrow { font-size: 0.78rem; }

/* Section title body copy — good line-height */
.section-title p { line-height: 1.75; font-size: 1.05rem; }

/* Research cards — body text minimum readable */
.research-card p { font-size: 0.85rem; line-height: 1.65; }

/* Benefit cards — slightly more readable */
.benefit-card p { font-size: 0.9rem; line-height: 1.7; }

/* Edu cards */
.edu-card p { font-size: 0.88rem; line-height: 1.65; }

/* Sustain cards */
.sustain-card p { font-size: 0.88rem; line-height: 1.65; }

/* Footer disclaimer — min legibility */
.footer-disclaimer { font-size: 0.72rem; line-height: 1.6; }

/* Footer brand description */
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

/* Hero subtext readability */
.hero-sub { line-height: 1.8; }

/* FAQ answer inner */
.faq-answer-inner { font-size: 0.95rem; line-height: 1.8; }

/* === 768px — Mobile text readability === */
@media (max-width: 768px) {
  /* Eyebrow text — keep legible on mobile */
  .eyebrow { font-size: 0.75rem; letter-spacing: 3px; }

  /* Section heading body copy */
  .section-title p { font-size: 1rem; line-height: 1.75; }

  /* Paragraph global: enforce minimum 1rem / 16px */
  p { font-size: 1rem; }

  /* Benefit/research/edu card copy */
  .benefit-card p,
  .research-card p,
  .edu-card p,
  .sustain-card p { font-size: 0.9rem; line-height: 1.7; }

  /* Trust strip text legibility */
  .trust-text { font-size: 0.7rem; letter-spacing: 1.5px; }

  /* Hero sub copy */
  .hero-sub { font-size: 1rem; line-height: 1.8; }

  /* FAQ answers */
  .faq-answer-inner { font-size: 0.95rem; line-height: 1.78; }

  /* Two-col paragraph text */
  .two-col-text p { font-size: 1rem; line-height: 1.75; }

  /* Product descriptions */
  .product-desc { font-size: 0.85rem; }

  /* Cost list items */
  .cost-list li { font-size: 0.9rem; }

  /* Compare table text */
  .compare-table td { font-size: 0.88rem; }

  /* Footer link text */
  .footer-col a { font-size: 0.9rem; }
  .footer-brand p { font-size: 0.9rem; }

  /* Section headings: use clamp for responsive sizing */
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.6rem); }
  h3 { font-size: clamp(0.82rem, 2.5vw, 1rem); }
}

/* === 480px — Small mobile text readability === */
@media (max-width: 480px) {
  /* Eyebrow */
  .eyebrow { font-size: 0.72rem; letter-spacing: 2.5px; }

  /* Body copy — min 16px (1rem) */
  p { font-size: 1rem; line-height: 1.72; }

  /* Section title */
  .section-title p { font-size: 0.95rem; }

  /* Hero sub */
  .hero-sub { font-size: 0.95rem; }

  /* Card body copy — all minimum 0.88rem/14px */
  .benefit-card p,
  .research-card p,
  .edu-card p,
  .sustain-card p,
  .step-card p { font-size: 0.88rem; line-height: 1.68; }

  /* Caption/small text floor: 0.8rem = 12.8px */
  .product-desc,
  .blog-card-date,
  .testimonial-meta,
  .edu-source,
  .footer-bottom p { font-size: 0.8rem; }

  /* Trust strip */
  .trust-text { font-size: 0.7rem; }

  /* FAQ answers */
  .faq-answer-inner { font-size: 0.92rem; line-height: 1.75; }

  /* Headings responsive */
  h2 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  h3 { font-size: clamp(0.8rem, 3.5vw, 1rem); }

  /* Footer */
  .footer-col a { font-size: 0.88rem; }
  .footer-brand p { font-size: 0.88rem; }
}

/* ===== TASK: Testimonials Green Background ===== */
.testimonials-green {
  background: var(--olive-dark); /* #2A3A1A */
  color: var(--cream);
}
.testimonials-green .section-title h2 {
  color: var(--cream);
}
.testimonials-green .section-title p {
  color: rgba(250,250,242,0.75);
}
/* Stars visible on dark bg */
.testimonials-green .testimonial-stars {
  color: var(--neon);
}
/* Author name on dark bg */
.testimonials-green .testimonial-author {
  color: var(--olive);
}
/* Card keeps white background — excellent contrast against dark green */
.testimonials-green .testimonial-card {
  background: var(--cream);
  border-color: rgba(250,250,242,0.1);
}
/* Platform badge text color */
.testimonials-green .testimonial-meta {
  color: var(--text-light);
}
/* Dots: use light/neon on dark bg */
.testimonials-green .testimonial-dot {
  background: rgba(250,250,242,0.25);
}
.testimonials-green .testimonial-dot.active {
  background: var(--neon);
}
/* Arrows: keep white bg, olive text — works on dark */
.testimonials-green .testimonial-arrow {
  background: rgba(250,250,242,0.9);
  border-color: rgba(250,250,242,0.25);
  color: var(--olive-dark);
}
.testimonials-green .testimonial-arrow:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: var(--olive-dark);
}
/* Card fade should match card bg (#FAFAF2) not white */
.testimonials-green .testimonial-card::after {
  background: linear-gradient(to bottom, rgba(250,250,242,0), rgba(250,250,242,1));
}

/* ===== Quantity Selector ===== */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.qty-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  white-space: nowrap;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream-dark);
  border: 2px solid var(--olive);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--olive);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}
.qty-btn:hover {
  background: var(--olive);
  color: var(--neon);
}
.qty-btn:active {
  background: var(--olive-dark);
  color: var(--neon);
}
.qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.qty-btn:disabled:hover {
  background: none;
  color: var(--olive);
}
.qty-input {
  width: 42px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: var(--olive);
  font-family: inherit;
  -moz-appearance: textfield;
  pointer-events: none;
  padding: 0;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (max-width: 480px) {
  .qty-selector {
    gap: 12px;
  }
  .qty-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .qty-input {
    width: 36px;
    font-size: 0.95rem;
  }
}

/* ===== TASK: Marquee Banner Spacing Fix ===== */
/* Override existing marquee-track span to add proper spacing */
.marquee-track {
  display: flex;
  animation: marquee 40s linear infinite; /* slightly slower for readability */
  white-space: nowrap;
  will-change: transform;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 8px;       /* more letter spacing */
  color: var(--olive);
  padding: 0 48px;           /* wider padding between items */
  opacity: 0.07;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 2rem;
    padding: 0 32px;
    letter-spacing: 5px;
  }
}
@media (max-width: 375px) {
  .marquee-track span {
    font-size: 1.6rem;
    padding: 0 24px;
    letter-spacing: 4px;
  }
}
