/* ═══════════════════════════════════════════
   NATURE'S NOOK — PRODUCT PAGE
   Template: Nature's First (Kids Blend)
   Layout inspired by MUD\WTR PDP
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ivory: #F7F3ED;
  --cream: #EDE8DF;
  --forest: #2C4A30;
  --forest-deep: #1A3420;
  --forest-dark: #0F2016;
  --gold: #C49A3C;
  --gold-soft: rgba(196,154,60,0.12);
  --gold-glow: rgba(196,154,60,0.4);
  --charcoal: #1C1C1C;
  --warm-gray: #8B8579;
  --light-gray: #F0ECE4;
  --border: rgba(44,74,48,0.08);

  /* This product's accent */
  --accent: #D4A030;
  --accent-soft: rgba(212,160,48,0.1);
  --accent-medium: rgba(212,160,48,0.2);

  /* All blend colors */
  --kids: #D4A030;
  --focus: #4A7450;
  --professional: #6B4F3A;
  --mama: #C47878;
  --menopause: #8B5E7D;
  --golden: #B08830;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0.05, 0, 1);
  --duration: 0.9s;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { background: var(--ivory); color: var(--charcoal); font-family: var(--font-body); line-height: 1.6; cursor: none; overflow-x: hidden; }

/* ═══ GRAIN OVERLAY ═══ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}

/* ═══ CUSTOM CURSOR ═══ */
.cursor { position: fixed; width: 24px; height: 24px; border: 1.5px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%,-50%); transition: transform 0.2s var(--ease-smooth), background 0.3s, border-color 0.3s; mix-blend-mode: difference; }
.cursor.hover { transform: translate(-50%,-50%) scale(2.5); background: var(--gold); border-color: transparent; }
.cursor-dot { position: fixed; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 10001; transform: translate(-50%,-50%); }

/* ═══ PAGE LOADER ═══ */
.loader { position: fixed; inset: 0; background: var(--forest-deep); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; transition: opacity 0.8s var(--ease-smooth), visibility 0.8s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); letter-spacing: 0.15em; opacity: 0; animation: fadeIn 0.6s 0.3s forwards; }
.loader-bar { width: 100px; height: 2px; background: rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.loader-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--gold); animation: loadBar 1.8s var(--ease-smooth) 0.5s forwards; }
@keyframes loadBar { to { width: 100%; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══ PROMO BANNER ═══ */
.promo-banner {
  background: var(--forest-deep);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.promo-banner strong { color: var(--gold); font-weight: 700; }

/* ═══ NAVIGATION ═══ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,237,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  transition: all 0.4s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-center { display: flex; gap: 2rem; align-items: center; }
.nav-center a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-center a:hover { color: var(--forest); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cart {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}
.nav-cart:hover { transform: scale(1.05); }
.nav-cart svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 3rem;
  font-size: 0.75rem;
  color: var(--warm-gray);
}
.breadcrumb a { color: var(--warm-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.4; }

/* ═══ PRODUCT HERO — SPLIT LAYOUT ═══ */
.product-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left: Image gallery */
.gallery { position: sticky; top: 80px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main-inner {
  width: 55%;
  transition: transform 0.5s var(--ease-out);
}
.gallery-main:hover .gallery-main-inner {
  transform: scale(1.05) rotate(-2deg);
}
.gallery-main .video-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-main .video-badge:hover { background: rgba(0,0,0,0.9); }
.gallery-main .video-badge svg { width: 14px; height: 14px; fill: white; }

.gallery-thumbs { display: flex; gap: 0.6rem; }
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}
.gallery-thumb.active { border-color: var(--accent); opacity: 1; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb-pouch { width: 55%; }

/* Right: Product info */
.product-info { padding-top: 0.5rem; }

.product-info .life-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-soft);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.life-stage-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.product-info .product-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.product-info .product-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: #5a5650;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Stars */
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.rating-text { font-size: 0.8rem; color: var(--warm-gray); }
.rating-text a { color: var(--forest); text-decoration: underline; cursor: pointer; }

/* Choose your blend */
.blend-selector { margin-bottom: 2rem; }
.blend-selector-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.8rem;
}
.blend-options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.blend-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  min-width: 80px;
}
.blend-option:hover { border-color: rgba(44,74,48,0.2); }
.blend-option.active { border-color: var(--forest); background: rgba(44,74,48,0.03); }
.blend-option-swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.blend-option-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}
.blend-option-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
}

/* Pricing options — Subscribe vs One-Time */
.pricing-options { margin-bottom: 1.5rem; }
.pricing-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem 1.3rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.6rem;
  position: relative;
  background: white;
}
.pricing-option:hover { border-color: rgba(44,74,48,0.15); }
.pricing-option.selected { border-color: var(--forest); background: rgba(44,74,48,0.02); }

.pricing-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(44,74,48,0.2);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-option.selected .pricing-radio {
  border-color: var(--forest);
}
.pricing-option.selected .pricing-radio::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px; right: 3px; bottom: 3px;
  border-radius: 50%;
  background: var(--forest);
}
.pricing-details { flex: 1; }
.pricing-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.3rem; }
.pricing-label { font-size: 0.92rem; font-weight: 600; color: var(--charcoal); }
.pricing-save {
  padding: 0.15rem 0.6rem;
  background: var(--accent-soft);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.pricing-row { display: flex; align-items: baseline; gap: 0.6rem; }
.pricing-current {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
}
.pricing-original {
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-decoration: line-through;
}
.pricing-per-serving {
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-weight: 400;
}
.pricing-meta {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.3rem;
  line-height: 1.5;
}
.pricing-meta strong { color: var(--forest); font-weight: 600; }

/* Frequency selector */
.frequency {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.frequency-option {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}
.frequency-option:hover { border-color: rgba(44,74,48,0.2); }
.frequency-option.active { background: var(--forest); color: white; border-color: var(--forest); }

/* Add to Cart button */
.add-to-cart {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--forest);
  color: var(--ivory);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: none;
  transition: all 0.4s var(--ease-smooth);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}
.add-to-cart::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-101%); transition: transform 0.5s var(--ease-smooth); }
.add-to-cart:hover::before { transform: translateX(0); }
.add-to-cart span { position: relative; z-index: 1; }
.add-to-cart:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(44,74,48,0.3); color: var(--forest-deep); }
.add-to-cart svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.add-to-cart-sub {
  text-align: center;
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--radius);
}
.benefit-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.benefit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.benefit-text .benefit-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.benefit-text .benefit-desc {
  font-size: 0.7rem;
  color: var(--warm-gray);
  line-height: 1.4;
}

/* Kit contents */
.kit-contents { margin-bottom: 2rem; }
.kit-contents-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.8rem;
}
.kit-items { display: flex; flex-direction: column; gap: 0.5rem; }
.kit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.kit-item .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kit-item .check svg { width: 10px; height: 10px; stroke: var(--accent); stroke-width: 3; fill: none; }
.kit-item strong { font-weight: 600; }
.kit-item .bonus { font-size: 0.72rem; color: var(--gold); font-weight: 600; margin-left: 0.3rem; }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 3rem;
  background: white;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.trust-text .trust-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.trust-text .trust-desc {
  font-size: 0.72rem;
  color: var(--warm-gray);
  line-height: 1.3;
}

/* ═══ SECTION SHARED ═══ */
.section { padding: 5rem 3rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.section-header p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.section.dark { background: var(--forest-deep); }
.section.dark .section-header h2 { color: var(--ivory); }
.section.dark .section-header p { color: rgba(255,255,255,0.5); }
.section.cream { background: var(--cream); }

/* ═══ HOW IT WORKS ═══ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--border);
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.how-step-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.how-step p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ═══ INGREDIENT DEEP-DIVE ═══ */
.ingredient-deep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.ingredient-deep-card {
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.ingredient-deep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: rgba(44,74,48,0.15);
}
/* Photo that melts into the card */
.ingredient-photo {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ingredient-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, white 0%, rgba(255,255,255,0.8) 40%, transparent 100%);
}
.ingredient-deep-card.hero-card .ingredient-photo::after {
  background: linear-gradient(to top, rgba(212,160,48,0.03) 0%, rgba(255,255,255,0.8) 40%, transparent 100%);
}
.ingredient-deep-card:hover .ingredient-photo {
  height: 130px;
}
.ingredient-photo { transition: height 0.5s var(--ease-out); }
.ingredient-card-body { padding: 0 1.5rem 1.5rem; position: relative; z-index: 1; margin-top: -20px; }
.ingredient-deep-card.hero-card { border-color: var(--accent-medium); background: rgba(212,160,48,0.03); }
.ingredient-deep-card.hero-card::before {
  content: 'HERO';
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.15rem 0.5rem;
  background: var(--accent);
  color: white;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 100px;
  z-index: 2;
}
.ingredient-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.ingredient-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.2rem;
}
.ingredient-origin {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ingredient-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.ingredient-amount small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--warm-gray);
}
.ingredient-benefit-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.6rem; }
.ingredient-tag {
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  background: rgba(44,74,48,0.05);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--forest);
}
.ingredient-desc {
  font-size: 0.78rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-top: 0.6rem;
}

/* ═══ COMPARISON TABLE ═══ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
}
.comparison-table thead th {
  padding: 1.2rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  background: var(--forest);
  color: var(--ivory);
}
.comparison-table thead th:first-child {
  text-align: left;
  background: var(--forest-deep);
}
.comparison-table thead th.highlight {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
}
.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--forest);
}
.comparison-table tbody td.highlight {
  background: rgba(212,160,48,0.04);
  font-weight: 600;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.check-icon { color: var(--forest); font-weight: 700; font-size: 1.1rem; }
.x-icon { color: #c9675e; font-weight: 400; font-size: 1.1rem; }

/* ═══ BRAND STORY ═══ */
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-story-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.brand-story-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.cert-badges {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cert-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  transition: border-color 0.2s;
}
.cert-badge:hover { border-color: rgba(255,255,255,0.3); }
.cert-badge-top {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
}
.cert-badge-bottom {
  font-size: 0.42rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}
.brand-story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.brand-story-visual .story-pouch {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: transform 0.5s var(--ease-out);
}
.brand-story-visual:hover .story-pouch {
  transform: translateY(-10px) rotate(-2deg);
}

/* ═══ REVIEWS ═══ */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.reviews-stars { display: flex; flex-direction: column; gap: 0.3rem; }
.reviews-stars .stars-row { display: flex; gap: 3px; }
.reviews-stars .stars-row svg { width: 20px; height: 20px; fill: var(--gold); }
.reviews-stars .review-count { font-size: 0.82rem; color: var(--warm-gray); }
.reviews-breakdown { display: flex; flex-direction: column; gap: 0.4rem; }
.review-bar-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--warm-gray); }
.review-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; min-width: 80px; }
.review-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--light-gray);
  border: 1px solid var(--border);
}
.review-card-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 0.6rem; }
.review-card-stars { display: flex; gap: 2px; }
.review-card-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-card-date { font-size: 0.7rem; color: var(--warm-gray); }
.review-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.review-card-body { font-size: 0.82rem; color: #5a5650; line-height: 1.6; margin-bottom: 0.6rem; }
.review-card-author { font-size: 0.72rem; font-weight: 600; color: var(--warm-gray); }
.review-card-verified {
  font-size: 0.6rem;
  color: var(--forest);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* Pre-launch reviews placeholder */
.reviews-prelaunch {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.reviews-prelaunch h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.reviews-prelaunch p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}
.reviews-prelaunch .btn-early {
  display: inline-flex;
  padding: 0.8rem 1.8rem;
  background: var(--forest);
  color: var(--ivory);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.reviews-prelaunch .btn-early:hover { background: var(--forest-deep); transform: translateY(-2px); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--forest); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-soft); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--charcoal); stroke-width: 2; fill: none; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.3rem; }
.faq-answer p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ═══ RELATED PRODUCTS ═══ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(44,74,48,0.12);
}
.related-pouch-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.related-card .pouch { width: 100px; }
.related-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.2rem;
}
.related-card-type {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.related-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.related-card-price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--warm-gray);
}

/* ═══ NEWSLETTER CTA ═══ */
.newsletter-cta {
  text-align: center;
  padding: 5rem 3rem;
  background: var(--forest-deep);
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}
.newsletter-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 0.9rem 1.8rem;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: none;
  white-space: nowrap;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.newsletter-form button::before { content: ''; position: absolute; inset: 0; background: var(--ivory); transform: translateX(-101%); transition: transform 0.4s var(--ease-smooth); }
.newsletter-form button:hover::before { transform: translateX(0); }
.newsletter-form button span { position: relative; z-index: 1; }
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,154,60,0.3); }
.newsletter-incentive {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.8rem;
  font-weight: 500;
}

/* ═══ FOOTER ═══ */
footer { padding: 4rem 3rem 2rem; background: var(--charcoal); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 3rem; }
.footer-col h5 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ═══ POUCH COMPONENT (shared) ═══ */
.pouch { flex-shrink: 0; }
.pouch-body {
  width: 100%;
  aspect-ratio: 2/3.1;
  position: relative;
  border-radius: 6px 6px 18px 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 8px 16px rgba(0,0,0,0.12);
}
.pouch-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.12) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.08) 100%);
  z-index: 5;
  pointer-events: none;
}
.pouch-seal { position: absolute; top: 0; left: 0; right: 0; height: 5%; background: rgba(0,0,0,0.2); z-index: 4; }
.pouch-zip { position: absolute; top: 5%; left: 0; right: 0; height: 2.5%; background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(0,0,0,0.1); z-index: 4; }
.pouch-window { position: absolute; bottom: 8%; left: 12%; right: 12%; height: 18%; border-radius: 6px; z-index: 2; opacity: 0.35; }
.pouch-window::after { content: ''; position: absolute; inset: 0; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); }
.pouch-label { position: absolute; top: 12%; left: 0; right: 0; bottom: 28%; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 8%; text-align: center; }
.pouch-brand { font-family: var(--font-body); font-size: 0.4em; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.3em; }
.pouch-name { font-family: var(--font-display); font-size: 0.85em; font-weight: 600; color: white; line-height: 1.15; margin: 0.3em 0 0.15em; }
.pouch-type { font-size: 0.35em; font-weight: 400; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.pouch-tagline { font-size: 0.32em; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.4); margin-top: 0.4em; }
.pouch-certs { display: flex; gap: 0.5em; margin-top: 0.6em; }
.pouch-cert { width: 1.6em; height: 1.6em; border-radius: 50%; border: 0.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.22em; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.4); text-align: center; line-height: 1; }
.pouch-weight { position: absolute; bottom: 3%; left: 0; right: 0; text-align: center; font-size: 0.3em; font-weight: 400; color: rgba(255,255,255,0.3); z-index: 3; letter-spacing: 0.05em; }

/* Pouch color variants */
.pouch-kids .pouch-body { background: linear-gradient(160deg, #8B6914, #A67C1A 30%, #BF9020 50%, #A67C1A 70%, #7A5C10); }
.pouch-kids .pouch-window { background: #D4A030; }
.pouch-focus .pouch-body { background: linear-gradient(160deg, #1E3A22, #2C5232 30%, #356339 50%, #2C5232 70%, #1A3420); }
.pouch-focus .pouch-window { background: #6B8F4E; }
.pouch-pro .pouch-body { background: linear-gradient(160deg, #3A2810, #503A1E 30%, #604828 50%, #503A1E 70%, #2E1E0C); }
.pouch-pro .pouch-window { background: #8B7355; }
.pouch-mama .pouch-body { background: linear-gradient(160deg, #6B2D3A, #8B3D4A 30%, #A04D58 50%, #8B3D4A 70%, #5C2430); }
.pouch-mama .pouch-window { background: #D4888E; }
.pouch-meno .pouch-body { background: linear-gradient(160deg, #3E2240, #553558 30%, #654368 50%, #553558 70%, #341C38); }
.pouch-meno .pouch-window { background: #A87AAE; }
.pouch-golden .pouch-body { background: linear-gradient(160deg, #5A3E10, #755218 30%, #886020 50%, #755218 70%, #4A340C); }
.pouch-golden .pouch-window { background: #C49A3C; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .product-hero { grid-template-columns: 1fr; gap: 2rem; padding: 0 2rem 3rem; }
  .gallery { position: static; }
  .ingredient-deep-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-center { display: none; }
  .breadcrumb { padding: 0.8rem 1.5rem; }
  .product-hero { padding: 0 1.5rem 2rem; }
  .section { padding: 3.5rem 1.5rem; }
  .how-it-works-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how-it-works-grid::before { display: none; }
  .ingredient-deep-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.75rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 0.7rem 0.8rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 1.5rem; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .newsletter-form { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .blend-options { gap: 0.4rem; }
  .blend-option { min-width: 64px; padding: 0.4rem 0.5rem; }
  .ingredient-deep-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
}
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .add-to-cart, .newsletter-form button, .btn-early, a, button { cursor: auto; }
}