/* DATE Superior Cola - Stylesheet */

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

:root {
  --magenta: #E61348;
  --magenta-light: #f0356a;
  --mid-purple: #633097;
  --deep-purple: #2E2870;
  --silver: #B3B3B3;
  --silver-light: #E8E8E8;
  --warm-amber: #D4A574;

  --bg: #F5F5F5;
  --bg-white: #FFFFFF;
  --bg-silver: #EDEDEE;
  --surface: #FFFFFF;
  --surface-alt: #F9F9FB;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);

  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #7a7a8a;
  --text-white: #FFFFFF;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --brand-gradient: linear-gradient(135deg, var(--magenta), var(--mid-purple), var(--deep-purple));
  --brand-gradient-warm: linear-gradient(135deg, var(--warm-amber), var(--magenta), var(--mid-purple));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.35s ease; border: none;
}
.btn-primary {
  background: var(--brand-gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(230, 19, 72, 0.2);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(230, 19, 72, 0.35); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--text-primary); color: var(--text-primary); background: transparent;
}
.btn-outline:hover { border-color: var(--magenta); color: var(--magenta); }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ========== PROMO BANNER ========== */
.promo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  background: var(--brand-gradient); color: #fff;
  padding: 10px 0; text-align: center;
  animation: promoSlideDown 0.5s ease;
}
.promo-banner.hidden { display: none; }
@keyframes promoSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.promo-container { display: flex; align-items: center; justify-content: center; gap: 12px; }
.promo-text {
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.05em;
}
.promo-text strong { font-weight: 700; }
.promo-code {
  display: inline-block; padding: 2px 10px; margin-left: 4px;
  background: rgba(255,255,255,0.2); border: 1px dashed rgba(255,255,255,0.5);
  border-radius: 4px; font-weight: 700; letter-spacing: 0.1em;
  cursor: pointer; transition: background 0.2s;
}
.promo-code:hover { background: rgba(255,255,255,0.3); }
.promo-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.3rem; cursor: pointer; padding: 0 4px; line-height: 1;
  transition: color 0.2s;
}
.promo-close:hover { color: #fff; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.4s ease; background: transparent;
}
.navbar.promo-hidden { top: 0; }
.navbar.scrolled {
  background: rgba(255, 255, 255, 1); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-container { display: flex; align-items: center; justify-content: center; padding: 0 24px; position: relative; }
.logo-link { display: flex; position: absolute; left: 24px; z-index: 1; }
.nav-logo { height: 48px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s; }
.navbar.scrolled .nav-logo { filter: none; }
.nav-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; align-items: center; white-space: nowrap; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color 0.25s;
}
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover { color: var(--magenta); }
.nav-actions { display: flex; align-items: center; gap: 12px; position: absolute; right: 24px; }
.nav-actions .btn { display: inline-flex; }
.cart-icon-btn { background: none; border: none; cursor: pointer; position: relative; padding: 4px; }
.cart-icon-btn svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5; transition: stroke 0.4s; }
.navbar.scrolled .cart-icon-btn svg { stroke: var(--text-primary); }
.cart-count { position: absolute; top: -4px; right: -6px; background: var(--magenta); color: #fff; font-size: 0.55rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-shop-short { display: none; }
.mobile-menu-actions { display: none; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .mobile-toggle span { background: var(--text-primary); }

/* ========== HERO ========== */
/* Section */

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--magenta) 0%, var(--mid-purple) 55%, var(--deep-purple) 100%);
  padding: 112px 0 0;
}
/* Amber Carbonation Bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(218,155,80,0.75), rgba(212,165,116,0.35));
  box-shadow: inset 0 -2px 4px rgba(218,155,80,0.35), 0 0 8px rgba(212,165,116,0.2);
  bottom: -20px;
  animation: bubbleRise linear infinite;
}
.b1  { width: 8px;  height: 8px;  left: 5%;  animation-duration: 7s;  animation-delay: 0s; }
.b2  { width: 5px;  height: 5px;  left: 12%; animation-duration: 9s;  animation-delay: 0.2s; }
.b3  { width: 10px; height: 10px; left: 20%; animation-duration: 8s;  animation-delay: 0s; }
.b4  { width: 6px;  height: 6px;  left: 30%; animation-duration: 10s; animation-delay: 0.4s; }
.b5  { width: 12px; height: 12px; left: 38%; animation-duration: 7.5s; animation-delay: 0s; }
.b6  { width: 4px;  height: 4px;  left: 45%; animation-duration: 11s; animation-delay: 0.1s; }
.b7  { width: 7px;  height: 7px;  left: 55%; animation-duration: 8.5s; animation-delay: 0.3s; }
.b8  { width: 9px;  height: 9px;  left: 62%; animation-duration: 7s;  animation-delay: 0s; }
.b9  { width: 5px;  height: 5px;  left: 70%; animation-duration: 9.5s; animation-delay: 0.5s; }
.b10 { width: 11px; height: 11px; left: 78%; animation-duration: 8s;  animation-delay: 0s; }
.b11 { width: 6px;  height: 6px;  left: 85%; animation-duration: 10s; animation-delay: 0.2s; }
.b12 { width: 4px;  height: 4px;  left: 92%; animation-duration: 7.5s; animation-delay: 0s; }
.b13 { width: 8px;  height: 8px;  left: 15%; animation-duration: 9s;  animation-delay: 1.5s; }
.b14 { width: 6px;  height: 6px;  left: 50%; animation-duration: 8s;  animation-delay: 1.8s; }
.b15 { width: 10px; height: 10px; left: 75%; animation-duration: 11s; animation-delay: 1s; }
.b16 { width: 7px;  height: 7px;  left: 8%;  animation-duration: 8.5s; animation-delay: 2s; }
.b17 { width: 5px;  height: 5px;  left: 18%; animation-duration: 7s;  animation-delay: 2.5s; }
.b18 { width: 9px;  height: 9px;  left: 25%; animation-duration: 9.5s; animation-delay: 0.8s; }
.b19 { width: 6px;  height: 6px;  left: 33%; animation-duration: 8s;  animation-delay: 1.2s; }
.b20 { width: 11px; height: 11px; left: 42%; animation-duration: 10s; animation-delay: 1.6s; }
.b21 { width: 4px;  height: 4px;  left: 48%; animation-duration: 7.5s; animation-delay: 2.2s; }
.b22 { width: 8px;  height: 8px;  left: 58%; animation-duration: 9s;  animation-delay: 0.4s; }
.b23 { width: 6px;  height: 6px;  left: 67%; animation-duration: 8.5s; animation-delay: 1.4s; }
.b24 { width: 10px; height: 10px; left: 82%; animation-duration: 7.5s; animation-delay: 2s; }
.b25 { width: 5px;  height: 5px;  left: 88%; animation-duration: 10s; animation-delay: 0.6s; }

@keyframes bubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.4);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
    transform: translateY(-10vh) translateX(2px) scale(0.7);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-50vh) translateX(-4px) scale(0.9);
  }
  80% {
    opacity: 0.45;
    transform: translateY(-80vh) translateX(3px) scale(1);
  }
  100% {
    transform: translateY(-110vh) translateX(-2px) scale(1);
    opacity: 0;
  }
}

.hero-split {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-text { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }

.hero-logo {
  display: block; height: 64px; width: auto; margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}
.hero-badge {
  display: inline-block; padding: 10px 28px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--warm-amber); background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--warm-amber); margin-bottom: 20px;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.hero-badge:hover { background: var(--warm-amber); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(212,165,116,0.3); }
.hero-tagline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 900;
  line-height: 1.05; color: #fff; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-logo-top {
  display: none;
}
.desktop-break { display: block; }
.hero-sub {
  font-size: 1.15rem; color: var(--warm-amber);
  margin-bottom: 12px; font-weight: 400;
}
.hero-sub-detail {
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-glow {
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(230,19,72,0.4); }
  50% { box-shadow: 0 0 30px rgba(230,19,72,0.7), 0 0 60px rgba(230,19,72,0.3); }
}
.btn-outline-light {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px; padding: 14px 32px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15); border-color: #fff;
}

.hero-photo {
  margin-top: 20px; width: 100%; max-width: 900px;
  border-radius: 20px 20px 0 0; overflow: hidden;
  box-shadow: 0 -10px 60px rgba(0,0,0,0.25);
}
.hero-photo-img {
  width: 100%; height: auto; display: block;
  object-fit: cover; max-height: 420px;
}

/* Hero entrance animations */
.anim-fade { opacity: 0; animation: animFadeIn 0.8s ease forwards; animation-delay: var(--delay, 0s); }
.anim-rise { opacity: 0; transform: translateY(30px); animation: animRiseIn 0.8s ease forwards; animation-delay: var(--delay, 0s); }
@keyframes animFadeIn { to { opacity: 1; } }
@keyframes animRiseIn { to { opacity: 1; transform: translateY(0); } }

/* Navbar on dark hero */
.nav-logo { filter: brightness(0) invert(1); transition: filter 0.3s ease; }
.navbar.scrolled .nav-logo { filter: none; }
.nav-link { color: #fff !important; transition: color 0.3s ease; }
.navbar.scrolled .nav-link { color: var(--text-primary) !important; }
.cart-icon svg { stroke: #fff; transition: stroke 0.3s ease; }
.navbar.scrolled .cart-icon svg { stroke: var(--text-primary); }
.nav-toggle span { background: #fff; transition: background 0.3s ease; }
.navbar.scrolled .nav-toggle span { background: var(--text-primary); }

.stats-bar { background: #0a0a12; border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.stats-bar-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat-pill { display: flex; align-items: baseline; gap: 8px; }
.stat-pill strong { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-pill span { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); font-family: 'Poppins', sans-serif; }

/* ========== PHOTO BANNER ========== */
.photo-banner {
  overflow: hidden; background: var(--bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.banner-scroll {
  display: flex; gap: 4px;
  animation: scrollBanner 14s linear infinite;
}
.banner-scroll img {
  height: 240px; width: auto; object-fit: cover; flex-shrink: 0; border-radius: 0;
}
@keyframes scrollBanner { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; padding: 8px 20px;
  background: linear-gradient(135deg, rgba(230,19,72,0.08), rgba(99,48,151,0.06));
  border: 1px solid rgba(230,19,72,0.1);
  border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--magenta); margin-bottom: 20px;
}
.section-header h2 { font-size: 2.6rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ========== TASTE ========== */
.taste-section { padding: 120px 0; background: var(--bg-white); }

/* -- Flavor Split (Profile + Reel) -- */
.flavor-split {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
  align-items: center; margin-bottom: 72px;
}
.flavor-split-text {
  padding: 40px; background: var(--surface-alt);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
}
.flavor-headline {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--warm-amber); margin-bottom: 14px;
}
.flavor-intro { font-size: 0.92rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; }
.flavor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.flavor-tag {
  padding: 8px 16px; background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(230,19,72,0.05));
  border: 1px solid rgba(212,165,116,0.2); border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--warm-amber);
}
.flavor-split-media {
  display: flex; justify-content: center; align-items: center;
  border-radius: var(--radius-xl); overflow: hidden;
}
.reel-video {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl);
}

/* -- Sense Cards (Taste / Mouthfeel / Aroma) -- */
.sense-cards { display: flex; flex-direction: column; gap: 32px; margin-bottom: 72px; }
.sense-card {
  display: grid; grid-template-columns: 0.45fr 0.55fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all 0.4s ease;
}
.sense-card:hover { border-color: rgba(230,19,72,0.15); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.sense-card-reverse { direction: rtl; }
.sense-card-reverse > * { direction: ltr; }

.sense-card-img { position: relative; overflow: hidden; min-height: 280px; }
.sense-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.sense-card:hover .sense-card-img img { transform: scale(1.06); }

.sense-card-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.sense-card-body h3 {
  font-size: 1.1rem; font-weight: 800; letter-spacing: 0.12em; margin-bottom: 12px;
  background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sense-card-body p { font-size: 0.88rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }

/* Animated meter bars */
.sense-meters { display: flex; flex-direction: column; gap: 10px; }
.sense-meter { display: flex; align-items: center; gap: 12px; }
.meter-label {
  font-family: 'Poppins', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--text-muted); min-width: 80px; text-transform: uppercase;
}
.meter-bar {
  flex: 1; height: 6px; background: rgba(0,0,0,0.05); border-radius: 3px; overflow: hidden;
}
.meter-fill {
  height: 100%; width: 0; border-radius: 3px;
  background: var(--brand-gradient);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.meter-fill.animated { width: var(--target-width); }

/* Section */
.journey-cinematic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.journey-left { padding: 48px 40px; }
.journey-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--warm-amber); margin-bottom: 36px;
}

.journey-timeline { position: relative; padding-left: 28px; }
.journey-timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--magenta), var(--mid-purple), var(--deep-purple));
  border-radius: 2px;
}
.journey-step-v {
  position: relative; margin-bottom: 28px;
  opacity: 0; transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.journey-step-v.revealed { opacity: 1; transform: translateX(0); }
.journey-step-v:last-child { margin-bottom: 0; }
.journey-dot {
  position: absolute; left: -24px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 4px rgba(230,19,72,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.journey-step-v:hover .journey-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(230,19,72,0.1), 0 0 20px rgba(230,19,72,0.2);
}
.journey-number {
  font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px; line-height: 1;
}
.journey-step-content h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 4px; }
.journey-step-content p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

.journey-right {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(230,19,72,0.03), rgba(99,48,151,0.03));
  overflow: hidden;
}
.journey-right .reel-video { border-radius: 0; height: 100%; min-height: 480px; }

/* ========== HERITAGE ========== */
.heritage-section { padding: 120px 0; background: var(--bg); }

.heritage-story-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: center; margin-bottom: 56px;
}
.heritage-text p { font-size: 0.92rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 14px; }
.heritage-bold { font-weight: 700; color: var(--text-primary) !important; font-size: 1rem !important; }
.heritage-stat-card {
  background: var(--brand-gradient); border-radius: var(--radius-xl); padding: 48px 32px; text-align: center;
}
.heritage-year {
  font-family: 'Poppins', sans-serif; font-size: 4.5rem; font-weight: 800; color: #fff; line-height: 1;
}
.heritage-label {
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.85); margin-top: 8px;
}

.heritage-imagery { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.heritage-img-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  height: 320px; cursor: pointer;
}
.heritage-img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.heritage-img-card:hover img { transform: scale(1.08); }
.heritage-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; transition: padding-bottom 0.4s ease;
}
.heritage-img-card:hover .heritage-img-overlay { padding-bottom: 32px; }
.heritage-img-overlay h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; color: #fff; margin-bottom: 4px;
}
.heritage-img-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ========== PARALLAX BREAK ========== */
.parallax-break {
  height: 400px; background-attachment: fixed; background-position: center;
  background-size: cover; background-repeat: no-repeat; position: relative;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,19,72,0.6), rgba(99,48,151,0.6), rgba(46,40,112,0.7));
  display: flex; align-items: center; justify-content: center;
}
.parallax-content { text-align: center; }
.parallax-logo { height: 48px; width: auto; margin: 0 auto 12px; }
.parallax-content p {
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.9);
}

/* ========== INGREDIENTS ========== */
.ingredients-section { padding: 80px 0; background: var(--bg-white); }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ingredients-grid.compact .ingredient-card { padding: 24px 20px; text-align: center; }
.ingredient-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; transition: all 0.3s ease;
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.05); }
.ingredient-card.highlight-card {
  border-color: rgba(230,19,72,0.2);
  background: linear-gradient(180deg, rgba(230,19,72,0.03), var(--surface));
}
.ingredient-value {
  font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 2px;
}
.ingredient-name {
  font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 0;
}

/* ========== FLOW ========== */
.flow-section {
  padding: 120px 0;
  background: var(--brand-gradient); color: var(--text-white);
}
.flow-section .section-tag {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: #fff;
}
.flow-section .section-header h2 { color: #fff; }
.flow-section .section-desc { color: rgba(255,255,255,0.75); }
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flow-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.flow-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.flow-card h3 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; margin-bottom: 8px; }
.flow-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ========== REVERSE MARQUEE ========== */
.marquee-section {
  overflow: hidden; background: var(--bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex; gap: 4px; width: max-content;
}
.marquee-reverse {
  animation: marqueeReverse 30s linear infinite;
}
.marquee-track img {
  height: 200px; width: auto; object-fit: cover; flex-shrink: 0;
  border-radius: 8px;
}
@keyframes marqueeReverse {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== DIET SODA SWITCH CTA ========== */
.switch-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #0a0a12 0%, #1a1030 100%);
  text-align: center;
}
.switch-inner { max-width: 640px; }
.switch-headline {
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: #fff; margin-bottom: 12px; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.switch-sub {
  font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.switch-sub strong { color: var(--warm-amber); font-weight: 700; }

/* ========== SOCIAL PROOF / TESTIMONIALS ========== */
.testimonials-section { padding: 100px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.testimonial-stars {
  font-size: 1rem; color: var(--warm-amber); margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary);
  font-style: italic; margin-bottom: 16px;
}
.testimonial-author {
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--text-muted);
}

/* ========== SHOP ========== */
.shop-section { padding: 120px 0; background: var(--bg-white); }
.shop-card {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.shop-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; }
.shop-product-img {
  background: linear-gradient(180deg, rgba(230,19,72,0.04), rgba(99,48,151,0.04));
  padding: 48px; display: flex; justify-content: center;
}
.shop-can { max-height: 360px; width: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }
.shop-content { padding: 48px; }
.shop-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.shop-subtitle {
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--magenta); margin-bottom: 20px;
}
.shop-desc { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; }
.shop-promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(230,19,72,0.08), rgba(99,48,151,0.06));
  border: 1px solid rgba(230,19,72,0.15);
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: var(--magenta); letter-spacing: 0.04em;
}
.shop-promo-badge span {
  padding: 2px 8px; border-radius: 4px;
  background: var(--brand-gradient); color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
}
.shop-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.shop-price-original {
  font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--text-muted); text-decoration: line-through;
}
.shop-price {
  font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--text-primary);
}
.shop-per { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.shop-promo-code-row { margin-bottom: 20px; }
.shop-promo-code-row label {
  display: block; font-family: 'Poppins', sans-serif; font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.08em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 6px;
}
.shop-promo-input {
  display: inline-flex; border: 2px dashed rgba(230,19,72,0.3);
  border-radius: var(--radius); overflow: hidden;
}
.shop-promo-input input {
  border: none; background: rgba(230,19,72,0.04); padding: 10px 16px;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800;
  letter-spacing: 0.15em; color: var(--magenta); width: 120px; text-align: center;
  outline: none;
}
.shop-promo-copy {
  padding: 10px 16px; background: var(--brand-gradient); color: #fff;
  border: none; font-family: 'Poppins', sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.08em; cursor: pointer;
  transition: opacity 0.2s;
}
.shop-promo-copy:hover { opacity: 0.9; }
.shop-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }

/* ========== PRE-ORDER ========== */
/* ========== PRE-ORDER SECTION ========== */
.preorder-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #2E2870 100%);
  color: #fff;
}

/* Centered header above card */
.preorder-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.preorder-header .section-tag {
  color: var(--magenta-light);
}
.preorder-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.preorder-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-weight: 400;
}

/* Card container */
.preorder-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  max-width: 880px;
  margin: 0 auto;
}
.preorder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

/* Left: product visual */
.preorder-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.preorder-can {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Right: content */
.preorder-content {
  padding: 48px;
}

/* Pricing table */
.preorder-pricing {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.pricing-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-values {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-original {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.pricing-discounted {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.pricing-free {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.03em;
}
.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 4px 0;
}
.pricing-save-strip {
  text-align: center;
  margin-top: 12px;
}
.pricing-save-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--magenta);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  display: inline-block;
}

/* Perks */
.preorder-perks {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.preorder-perks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.preorder-perks li:last-child {
  margin-bottom: 0;
}
.preorder-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--magenta-light);
  font-weight: 700;
  font-size: 0.9rem;
}

/* CTA button */
.preorder-btn {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  padding: 18px 36px;
  box-shadow: 0 8px 32px rgba(230,19,72,0.3);
  transition: all 0.25s ease;
}
.preorder-btn:hover {
  box-shadow: 0 12px 48px rgba(230,19,72,0.45);
  transform: translateY(-2px);
}

/* Trust note */
.preorder-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

/* Nav preorder link */
.nav-preorder {
  color: var(--magenta) !important;
  font-weight: 700 !important;
}
.nav-preorder-btn {
  font-size: 0.75rem !important;
  padding: 8px 18px !important;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .preorder-section { padding: 80px 0; }
  .preorder-header { margin-bottom: 32px; }
  .preorder-header h2 { font-size: 1.75rem; }
  .preorder-lead { font-size: 0.95rem; }
  .preorder-grid { grid-template-columns: 1fr; }
  .preorder-visual { height: 360px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .preorder-can { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
  .preorder-content { padding: 32px; }
  .preorder-content h2 { font-size: 1.5rem; }
}

/* ========== FOOTER ========== */
.footer {
  padding: 64px 0 32px; background: var(--text-primary); color: rgba(255,255,255,0.6);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-img { height: 32px; width: auto; margin-bottom: 8px; }
.footer-tagline { font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--magenta-light); }
.footer-desc { font-size: 0.8rem; margin: 8px 0 16px; }
.social-links { display: flex; gap: 12px; margin-bottom: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.25s;
}
.social-links a:hover { border-color: var(--magenta); color: var(--magenta); }
.footer-hashtags { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.footer-links h4 { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; margin-bottom: 14px; text-transform: uppercase; }
.footer-links a { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); padding: 3px 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.fda-text { font-size: 0.65rem; color: rgba(255,255,255,0.3); line-height: 1.5; margin-bottom: 16px; max-width: 680px; }
.footer-legal-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal-links a:hover { color: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-tagline { font-size: 2.6rem; }
  .section-header h2 { font-size: 2.2rem; }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-badge { margin-top: 30px; }
  .hero-photo { margin: 12px -24px 0; width: calc(100% + 48px); border-radius: 0; box-shadow: none; overflow: hidden; }
  .hero-photo-img { max-height: none; object-fit: cover; object-position: 70% top; width: 100%; height: 50vh; }
  .hero-sub { margin-bottom: 18px; }
  .hero { padding: 100px 0 0; }
  .navbar { top: 62px; }
  .navbar.scrolled { padding-top: 18px; margin-top: -6px; }
  .nav-container { display: flex; align-items: center; padding-left: 16px; padding-right: 8px; position: relative; gap: 4px; justify-content: flex-end; }
  .promo-banner { font-size: 0.72rem; padding: 6px 16px; }
  .nav-links { display: none; }
  /* Center logo absolutely */
  .logo-link { display: flex !important; position: absolute; left: 50%; transform: translateX(-50%); z-index: 1; }
  .logo-link .nav-logo { height: 42px; }
  /* Right group: SHOP + cart + hamburger */
  .nav-actions { display: flex; gap: 0; align-items: center; margin-left: auto; margin-right: 0; position: static; z-index: 2; }
  .nav-actions .btn { display: inline-flex; padding: 5px 8px; font-size: 0.55rem; letter-spacing: 0.04em; order: 1; border-radius: 6px; }
  .nav-actions .cart-icon-btn { order: 2; padding: 2px; }
  .nav-shop-full { display: none; }
  .nav-shop-short { display: inline; }
  .nav-actions .cart-icon-btn svg { stroke: #fff; width: 16px; height: 16px; }
  .navbar.scrolled .nav-actions .cart-icon-btn svg { stroke: var(--text-primary); }
  .mobile-toggle { display: flex; margin-left: 0; flex-shrink: 0; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border);
    z-index: 100;
  }
  .nav-links.active li a {
    color: var(--text-primary) !important;
  }
  .mobile-menu-actions { display: none; padding-top: 8px; border-top: 1px solid var(--border); }
  .nav-links.active .mobile-menu-actions { display: block; }
  .mobile-shop-btn { width: 100%; text-align: center; padding: 14px 24px !important; font-size: 0.8rem !important; }
  .nav-links.active li a:hover {
    color: var(--magenta) !important;
  }

  .hero-logo { display: none; }
  .hero-logo-top { display: none; }
  .desktop-break { display: none; }
  .hero-badge { margin-top: 10px; margin-bottom: 12px; padding: 6px 20px; }
  .hero-tagline { font-size: 1.2rem; margin-bottom: 4px; white-space: normal; }
  .hero-sub { margin-bottom: 6px; font-size: 0.95rem; }
  .hero-sub-detail { font-size: 0.7rem; margin-bottom: 16px; }
  .hero-cta .btn { padding: 14px 28px; font-size: 0.8rem; }
  .hero-photo { margin-top: 12px; }
  .hero-center { padding: 65px 20px 40px; }
  .hero-cta { flex-wrap: wrap; }
  .stats-bar-inner { gap: 20px; }
  .stat-pill strong { font-size: 1.1rem; }

  .section-header h2 { font-size: 1.8rem; }
  .banner-scroll img { height: 160px; }

  .flavor-split { grid-template-columns: 1fr; }
  .flavor-split-text { padding: 28px 20px; }
  .reel-video { max-height: 440px; }
  .sense-card, .sense-card-reverse { grid-template-columns: 1fr; direction: ltr; }
  .sense-card-reverse > * { direction: ltr; }
  .sense-card-img { min-height: 200px; }
  .sense-card-body { padding: 28px 24px; }
  .journey-cinematic { grid-template-columns: 1fr; }
  .journey-left { padding: 32px 24px; }
  .journey-right { padding: 16px; }
  .journey-right .reel-video { min-height: 300px; }
  .flow-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-story-grid { grid-template-columns: 1fr; }
  .heritage-imagery { grid-template-columns: 1fr; }
  .heritage-img-card { height: 240px; }
  .parallax-break { height: 280px; background-attachment: scroll; }
  .ingredients-comparison { grid-template-columns: 1fr; }
  /* journey is now vertical timeline, no grid overrides needed */

  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-grid img { height: 220px; }

  .shop-grid { grid-template-columns: 1fr; }
  .shop-product-img { padding: 32px; }
  .shop-content { padding: 32px; text-align: center; }
  .shop-price-row { justify-content: center; }
  .shop-content h2 { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal-row { flex-direction: column; gap: 10px; text-align: center; }

  .taste-section, .heritage-section, .ingredients-section, .flow-section, .testimonials-section, .shop-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-badge { margin-top: 30px; }
  .hero { padding: 90px 0 0; }
  .navbar { top: 62px; }
  .navbar.scrolled { padding-top: 18px; margin-top: -6px; }
  .promo-banner { font-size: 0.65rem; padding: 6px 12px; }
  .hero-tagline { font-size: 1.5rem; }
  .hero-sub { font-size: 1rem; }
  .hero-center { padding: 75px 16px 40px; }
  .hero-badge { font-size: 0.6rem; padding: 6px 18px; }
  .stats-bar-inner { gap: 12px; }
  .stat-pill strong { font-size: 1rem; }
  .stat-pill span { font-size: 0.5rem; }
}


/* Scroll reveal animations */
.scroll-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-hidden.revealed {
  opacity: 1;
  transform: translateY(0);
}
