/** Shopify CDN: Minification failed

Line 1953:40 Expected "}" to go with "{"

**/
/* ============================================
   CLEANEST EVER — Global Design System
   Premium Coconut Water Brand · 2024
   ============================================ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

/* ─── TOKENS ─── */
:root {
  /* Colors — Base */
  --ce-white:        #F5F5F5;    /* Soft White: text & contrast */
  --ce-cream:        #F2EFEA;    /* Warm Light Grey: section breaks */
  --ce-green:        #1ABC9C;    /* Teal Green: fresh / natural accent */
  --ce-green-mid:    #16A085;    /* Teal Dark: hover states */
  --ce-green-light:  #48C9B0;    /* Teal Light */
  --ce-ocean:        #4A90E2;    /* Blue: hydration / trust */
  --ce-ocean-light:  #7DB5F0;    /* Light Blue */
  --ce-black:        #1C1C1C;    /* Charcoal Black: primary bg */
  --ce-charcoal:     #1C1C1C;    /* Charcoal Black */

  /* Accents */
  --ce-mango:        #F4D03F;    /* Yellow: mango / brightness */
  --ce-guava:        #E67AB1;    /* Pink: guava / Gen Z */
  --ce-lime:         #A3CB38;    /* Lime: citrus pop */
  --ce-coconut:      #F2EFEA;    /* Same as cream */
  --ce-coral:        #FF4D4D;    /* Coral Red: PRIMARY CTA */
  --ce-coral-hover:  #E84343;    /* Coral hover */
  --ce-purple:       #6C5CE7;    /* Purple: premium */
  --ce-orange:       #FF7A45;    /* Orange: tropical */
  --ce-muted:        #CFCFCF;    /* Muted grey: subtext on dark */
  --ce-footer-bg:    #111111;    /* Footer background */

  /* Type */
  --font-display:    'Space Grotesk', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-accent:     'Instrument Serif', serif;

  /* Spacing */
  --section-pad-y:   clamp(60px, 10vw, 120px);
  --section-pad-x:   clamp(20px, 5vw, 80px);
  --border-radius:   16px;
  --border-radius-sm: 8px;
  --border-radius-pill: 100px;

  /* Transitions */
  --ease-smooth:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   0.2s;
  --duration-mid:    0.4s;
  --duration-slow:   0.8s;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ce-white);
  color: var(--ce-charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 38px; /* offset for fixed announcement bar */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.t-display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.t-headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-subhead {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}
.t-label {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.t-xl  { font-size: clamp(3rem, 8vw, 7rem); }
.t-lg  { font-size: clamp(2rem, 5vw, 4rem); }
.t-md  { font-size: clamp(1.4rem, 3vw, 2.4rem); }
.t-sm  { font-size: clamp(1rem, 2vw, 1.25rem); }
.t-xs  { font-size: 0.875rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration-fast) var(--ease-smooth);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ce-coral);
  color: #FFFFFF;
  border-color: var(--ce-coral);
}
.btn-primary:hover {
  background: var(--ce-coral-hover);
  border-color: var(--ce-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 77, 77, 0.4);
}
.btn-secondary {
  background: var(--ce-green);
  color: #FFFFFF;
  border-color: var(--ce-green);
}
.btn-secondary:hover {
  background: var(--ce-green-mid);
  border-color: var(--ce-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 188, 156, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--ce-black);
  border-color: var(--ce-black);
}
.btn-outline:hover {
  background: var(--ce-black);
  color: var(--ce-white);
  transform: translateY(-2px);
}
.btn-white {
  background: #FFFFFF;
  color: var(--ce-black);
  border-color: #FFFFFF;
}
.btn-white:hover {
  background: var(--ce-cream);
  color: var(--ce-black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}
.btn-lg { padding: 20px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ─── LAYOUT UTILITIES ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}
.section {
  padding: var(--section-pad-y) 0;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ─── NAVBAR ─── */
.ce-nav {
  position: fixed;
  top: 38px; /* sits directly below the 38px announcement bar */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-mid) var(--ease-smooth), padding var(--duration-mid) var(--ease-smooth), box-shadow var(--duration-mid) var(--ease-smooth);
  background: transparent;
}
.ce-nav.scrolled {
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--section-pad-x);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.ce-nav.dark {
  --nav-text: var(--ce-white);
}
.ce-nav.light {
  --nav-text: var(--ce-black);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--nav-text, var(--ce-white));
  letter-spacing: -0.02em;
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 60px;
  object-fit: contain;
}
.nav-logo span { color: var(--ce-green); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--nav-text, var(--ce-white));
  opacity: 0.85;
  transition: opacity var(--duration-fast);
}
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-cart-btn {
  position: relative;
  background: var(--ce-white);
  color: var(--ce-black);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  font-size: 1.1rem;
}
.nav-cart-btn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.cart-count {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--ce-coral);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── NON-HERO PAGE OFFSET ─── */
/* Pages without a full-screen hero need top padding to clear announcement bar (~38px) + fixed nav (~76px) */
.main-collection,
.main-product,
.main-page {
  padding-top: 130px !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #0A0A0A 50%, #1C1C1C 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,188,156,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(74,144,226,0.2) 0%, transparent 50%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--section-pad-x);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-text {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-pill);
  padding: 6px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: '●';
  color: var(--ce-coral);
  font-size: 0.5rem;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ce-white);
  margin-bottom: 28px;
}
.hero-headline .accent { color: var(--ce-coral); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--ce-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 44px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ce-white);
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-bottle-wrap {
  position: relative;
  width: 360px;
  height: 480px;
}
.hero-bottle-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(26,188,156,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-bottle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
  animation: float-bottle 5s ease-in-out infinite;
}
@keyframes float-bottle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero-floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  animation: float-badge 6s ease-in-out infinite;
}
.hero-floating-badge.b1 {
  top: 60px; left: -20px;
  animation-delay: 0s;
}
.hero-floating-badge.b2 {
  bottom: 100px; right: -30px;
  animation-delay: 2s;
}
.hero-floating-badge.b3 {
  top: 50%; left: -40px;
  animation-delay: 4s;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 1.1rem; margin-bottom: 2px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-fade 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line-anim 2s ease-in-out infinite;
}
@keyframes scroll-fade { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes scroll-line-anim { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ─── SCROLL HOOK ─── */
.scroll-hook {
  background: var(--ce-black);
  padding: clamp(80px, 14vw, 160px) var(--section-pad-x);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.scroll-hook::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,188,156,0.08) 0%, transparent 65%);
}
.hook-eyebrow {
  color: var(--ce-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}
.hook-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ce-white);
  display: block;
  overflow: hidden;
}
.hook-line.muted {
  color: rgba(255,255,255,0.2);
}
.hook-line.accent { color: var(--ce-coral); }
.hook-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: 28px auto;
}
.hook-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hook-stat {
  text-align: center;
}
.hook-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ce-white);
  display: block;
  line-height: 1;
}
.hook-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── PRODUCT STRIP ─── */
.product-strip {
  background: var(--ce-cream);
  padding: var(--section-pad-y) 0;
}
.product-strip-header {
  text-align: center;
  padding: 0 var(--section-pad-x);
  margin-bottom: 60px;
}
.product-strip-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--ce-black);
  letter-spacing: -0.03em;
}
.product-strip-header p {
  color: #555555;
  opacity: 1;
  margin-top: 12px;
  font-size: 1rem;
}
.product-cards-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 var(--section-pad-x);
  max-width: 1280px;
  margin: 0 auto;
}
.product-card {
  background: var(--ce-white);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--duration-mid) var(--ease-smooth);
  cursor: pointer;
  position: relative;
  min-width: 0; /* prevent grid blowout when content is wide */
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.pc-image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.pc-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--duration-slow) var(--ease-smooth);
}
.product-card:hover .pc-bg { transform: scale(1.05); }
.pc-bg.pure    { background: #FFFFFF; }
.pc-bg.lime    { background: #F3FBEF; }
.pc-bg.guava   { background: #FDECEF; }
.pc-bg.mango   { background: #FFF6E5; }
.pc-bottle {
  position: relative;
  z-index: 1;
  width: 65%;
  margin: 0 auto;
  padding-top: 20px;
  transition: transform var(--duration-mid) var(--ease-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.product-card:hover .pc-bottle { transform: translateY(-8px) scale(1.03); }
.pc-bottle-visual {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.pc-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ce-green);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--border-radius-pill);
  z-index: 2;
}
.pc-body {
  padding: 20px 20px 24px;
}
.pc-flavor-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 4px;
}
.pc-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ce-black);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.pc-tagline {
  font-size: 0.8rem;
  color: var(--ce-charcoal);
  opacity: 0.65;
  margin-bottom: 14px;
  line-height: 1.4;
}
.pc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ce-black);
}
.pc-compare-price {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.38);
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 500;
}
.pc-discount-badge {
  background: #E8677A;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-vol {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  font-weight: 500;
}
.pc-pack-note {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: -8px 0 14px;
}
.pc-add-btn {
  width: 100%;
  background: transparent;
  color: var(--ce-black);
  border: 2px solid var(--ce-black);
  border-radius: var(--border-radius-pill);
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  letter-spacing: 0.02em;
}
.pc-add-btn:hover {
  background: var(--ce-black);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,28,28,0.2);
}
/* Per-SKU hover fill */
.product-card:has(.pc-bg.pure) .pc-add-btn:hover    { background: #1C1C1C; border-color: #1C1C1C; }
.product-card:has(.pc-bg.lime) .pc-add-btn:hover    { background: #A3CB38; border-color: #A3CB38; color: #1C1C1C; }
.product-card:has(.pc-bg.guava) .pc-add-btn:hover   { background: #E67AB1; border-color: #E67AB1; color: white; }
.product-card:has(.pc-bg.mango) .pc-add-btn:hover   { background: #F4D03F; border-color: #F4D03F; color: #1C1C1C; }

/* ─── CLEAN LABEL ─── */
.clean-label {
  background: #FFFFFF;
  padding: var(--section-pad-y) var(--section-pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.clean-label::before {
  content: 'CLEAN.';
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(100px, 22vw, 220px);
  color: rgba(0,0,0,0.035);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
}
.cl-eyebrow {
  color: var(--ce-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cl-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--ce-black);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cl-sub {
  color: #555555;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.clean-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.clean-icon-card {
  background: var(--ce-cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all var(--duration-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.clean-icon-card:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.clean-icon-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ce-green);
  transform: scaleX(0);
  transition: transform var(--duration-mid) var(--ease-smooth);
}
.clean-icon-card:hover::after { transform: scaleX(1); }
.ci-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.ci-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ce-black);
  margin-bottom: 8px;
}
.ci-desc {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.5;
}
.ci-cross {
  display: inline-block;
  background: rgba(230,122,177,0.2);
  color: var(--ce-guava);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ─── INGREDIENT TRANSPARENCY ─── */
.ingredient-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--ce-cream);
  max-width: 1280px;
  margin: 0 auto;
}
.ingredient-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ingr-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--ce-cream);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ingr-visual-inner {
  font-size: 8rem;
  text-align: center;
  line-height: 1;
}
.ingr-float-tag {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ce-black);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ingr-float-tag.t1 { top: 16%; left: -5%; }
.ingr-float-tag.t2 { bottom: 20%; right: -5%; }
.ingr-float-tag.t3 { top: 50%; left: -5%; }
.ingr-content {}
.ingr-eyebrow {
  color: var(--ce-coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ingr-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--ce-black);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.ingr-body {
  font-size: 1rem;
  color: var(--ce-charcoal);
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 36px;
}
.ingr-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.ingr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--ce-cream);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ce-charcoal);
  transition: all var(--duration-fast) var(--ease-smooth);
}
.ingr-item:hover {
  background: #E0F7F3;
  transform: translateX(4px);
}
.ingr-check {
  width: 24px; height: 24px;
  background: var(--ce-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── WHY COCONUT ─── */
.why-coconut {
  background: #FFFFFF;
  padding: var(--section-pad-y) var(--section-pad-x);
}
.wc-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wc-text {}
.wc-eyebrow {
  color: var(--ce-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wc-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ce-black);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.wc-sub {
  color: var(--ce-charcoal);
  opacity: 0.6;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ce-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.benefit-text-wrap {}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ce-black);
  margin-bottom: 4px;
}
.benefit-desc {
  font-size: 0.875rem;
  color: #666666;
  opacity: 1;
  line-height: 1.5;
}
.wc-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-circle {
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  background: var(--ce-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  position: relative;
  overflow: hidden;
}
.wc-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

/* ─── BRAND STORY ─── */
.brand-story {
  background: var(--ce-black);
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}
.brand-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(26,188,156,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(74,144,226,0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.story-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.story-eyebrow {
  color: var(--ce-coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.story-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--ce-white);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 40px;
}
.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.story-p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #D0D0D0;
  line-height: 1.75;
}
.story-p strong {
  color: var(--ce-white);
  font-weight: 700;
}
.story-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ce-coral);
  letter-spacing: 0;
  line-height: 1.2;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 40px 0;
}

/* ─── SOCIAL PROOF ─── */
.social-proof {
  background: var(--ce-cream);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.sp-header {
  text-align: center;
  margin-bottom: 60px;
}
.sp-eyebrow {
  color: var(--ce-green);  /* teal ✓ */
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ce-black);
  letter-spacing: -0.02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 60px;
}
.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  transition: all var(--duration-mid) var(--ease-smooth);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.tc-stars {
  color: var(--ce-mango);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.tc-text {
  font-size: 0.95rem;
  color: var(--ce-charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ce-green);  /* teal ✓ */
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.tc-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ce-black);
}
.tc-handle {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}
.insta-cell {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-cell-bg {
  width: 100%;
  height: 100%;
  transition: transform var(--duration-mid) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.insta-cell:hover .insta-cell-bg { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.7);
  opacity: 0;
  transition: opacity var(--duration-fast);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.3rem;
}
.insta-cell:hover .insta-overlay { opacity: 1; }

/* ─── LIFESTYLE ─── */
.lifestyle {
  background: #FFFFFF;
  padding: var(--section-pad-y) var(--section-pad-x);
  overflow: hidden;
}
.ls-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.ls-header {
  text-align: center;
  margin-bottom: 60px;
}
.ls-eyebrow {
  color: var(--ce-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ls-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--ce-black);
  letter-spacing: -0.03em;
}
.lifestyle-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lifestyle-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--duration-mid) var(--ease-smooth);
}
.lifestyle-card:hover { transform: scale(1.02); }
.lc-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform var(--duration-slow) var(--ease-smooth);
}
.lifestyle-card:hover .lc-bg { transform: scale(1.08); }
.lc-bg.gym    { background: linear-gradient(180deg, #1C1C1C 0%, #1A3D35 100%); }  /* Charcoal → Teal */
.lc-bg.desk   { background: linear-gradient(180deg, #1A1A2E 0%, #1A1C3E 100%); }  /* Charcoal → Blue */
.lc-bg.travel { background: linear-gradient(180deg, #1A2E2E 0%, #1C2C2C 100%); }  /* Charcoal → Teal */
.lc-bg.party  { background: linear-gradient(180deg, #2A1C3E 0%, #1C1C1C 100%); }  /* Purple → Charcoal */
.lc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.lc-label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.lc-sublabel {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 400;
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
}

/* ─── CTA BLOCK ─── */
.cta-block {
  background: var(--ce-black);
  padding: clamp(80px, 14vw, 160px) var(--section-pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,77,77,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  color: var(--ce-coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--ce-white);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.cta-headline span { color: var(--ce-coral); }
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 52px;
  line-height: 1.6;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-weight: 500;
}
.cta-perk-icon {
  color: var(--ce-coral);
  font-size: 0.9rem;
}

/* ─── BUNDLE STRIP ─── */
.bundle-strip {
  background: var(--ce-coral);
  padding: 28px var(--section-pad-x);
  text-align: center;
}
.bs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bs-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.bs-tag {
  background: rgba(0,0,0,0.2);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
}

/* ─── FOOTER ─── */
.ce-footer {
  background: var(--ce-footer-bg);
  padding: 80px var(--section-pad-x) 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ce-white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--ce-green); }
.footer-tagline {
  font-size: 0.875rem;
  color: #AAAAAA;
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--ce-white);
  transform: translateY(-2px);
}
.footer-col {}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 0.875rem;
  color: #AAAAAA;
  transition: color var(--duration-fast);
}
.footer-col-links a:hover { color: var(--ce-coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: #AAAAAA;
}
.footer-made {
  font-size: 0.78rem;
  color: #AAAAAA;
}
.footer-made span { color: var(--ce-green); font-weight: 600; }

/* ─── CART DRAWER ─── */
/* Cart drawer — full-screen container; overlay + panel live INSIDE it */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1999;
  pointer-events: none;   /* invisible when closed — nothing blocked */
}
.cart-drawer.open {
  pointer-events: auto;   /* enable when open */
}
/* Dim backdrop (click to close) */
.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--duration-mid);
  cursor: pointer;
}
.cart-drawer.open .cart-overlay { opacity: 1; }
/* Sliding panel */
.cart-panel {
  position: absolute;
  top: 0; right: 0;
  width: 420px;
  height: 100%;
  background: var(--ce-white);
  z-index: 1;              /* above overlay within the same stacking context */
  transform: translateX(100%);
  transition: transform var(--duration-mid) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 80px rgba(0,0,0,0.2);
  pointer-events: auto;   /* always clickable */
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ce-black);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ce-cream);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--duration-fast);
}
.cart-close:hover { background: var(--ce-coral); color: white; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-item-img {
  width: 72px; height: 80px;
  background: var(--ce-cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ce-black);
  margin-bottom: 4px;
}
.cart-item-size {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.35);
  margin-bottom: 12px;
}
.cart-qty-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ce-cream);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  transition: all var(--duration-fast);
}
.qty-btn:hover { background: var(--ce-coral); color: white; }
.qty-num {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ce-black);
  align-self: flex-start;
}
.cart-footer {
  padding: 20px 28px 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal-label {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.45);
}
.cart-subtotal-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ce-black);
}
.cart-free-ship {
  font-size: 0.78rem;
  color: var(--ce-green);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
}
.cart-checkout-btn {
  width: 100%;
  background: var(--ce-coral);
  color: white;
  border: none;
  border-radius: var(--border-radius-pill);
  padding: 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  letter-spacing: 0.02em;
}
.cart-checkout-btn:hover {
  background: var(--ce-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,77,0.4);
}
.cart-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.35);
  cursor: pointer;
  transition: color var(--duration-fast);
}
.cart-continue:hover { color: var(--ce-black); }


/* ─── PACK / VARIANT SELECTOR ─── */
.pack-option {
  padding: 10px 18px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--border-radius-pill);
  background: var(--ce-white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ce-charcoal);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  text-align: center;
  line-height: 1.3;
}
.pack-option:hover {
  border-color: var(--ce-green);
  color: var(--ce-green);
}
.pack-option.active {
  background: var(--ce-green);
  border-color: var(--ce-green);
  color: var(--ce-white);
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--ce-coral);
  color: var(--ce-white);
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1002;
}
.announcement-bar marquee {
  display: inline-block;
  max-width: 100%;
}
.ab-sep { margin: 0 20px; color: rgba(255,255,255,0.5); }

/* ─── SCROLL ANIMATIONS ─── */
/* js-reveal class is added by JS on init — keeps content visible if JS is slow/absent */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-smooth);
}
.js-reveal [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ─── REEL STRIP ─── */
.reel-strip {
  background: var(--ce-cream, #F2EFE7);
  padding: 80px 0 60px;
  overflow: hidden;
}
.reel-strip-header {
  text-align: center;
  padding: 0 var(--section-pad-x);
  margin-bottom: 48px;
}
.reel-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ce-green);
  margin-bottom: 12px;
}
.reel-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--ce-green-dark, #1A3A2A);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Track wrapper masks overflow and shows gradient fade on edges */
.reel-track-wrap {
  position: relative;
  overflow: hidden;
}
.reel-track-wrap::before,
.reel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reel-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--ce-cream, #F2EFE7), transparent);
}
.reel-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--ce-cream, #F2EFE7), transparent);
}

/* The scrolling track — duplicated content makes the loop seamless */
.reel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 12px 0 20px;
  animation: reel-scroll var(--reel-speed, 30s) linear infinite;
  will-change: transform;
}
.reel-track:hover {
  animation-play-state: paused;
}
@keyframes reel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual cards */
.reel-card {
  flex-shrink: 0;
  width: 220px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

/* Image card */
.reel-card--image .reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-img-placeholder {
  width: 100%;
  height: 100%;
  background: #E0DDD6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Video card */
.reel-card--video .reel-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-vid-placeholder {
  background: #1A3A2A;
  color: #7AB648;
}

/* Caption overlay */
.reel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Graphic card */
.reel-card--graphic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px 22px;
}
.reel-graphic-icon {
  font-size: 2.4rem;
  margin-bottom: auto;
  padding-top: 24px;
  line-height: 1;
}
.reel-graphic-line1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.reel-graphic-line2 {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.2;
}

/* CTA below the reel */
.reel-cta {
  text-align: center;
  margin-top: 44px;
  padding: 0 var(--section-pad-x);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .reel-card { width: 170px; height: 270px; }
  .reel-graphic-line1 { font-size: 1.8rem; }
  .reel-track-wrap::before,
  .reel-track-wrap::after { width: 48px; }
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-bottle-wrap { width: 260px; height: 360px; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .product-cards-wrap { grid-template-columns: repeat(2, 1fr); }
  .clean-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-inner { grid-template-columns: 1fr; gap: 40px; }
  .wc-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .lifestyle-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .product-cards-wrap { grid-template-columns: 1fr; gap: 16px; }
  .clean-icons-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .lifestyle-cards { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cart-panel { width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .bundle-strip { .bs-inner { flex-direction: column; gap: 12px; } }

  /* Announcement bar: prevent text from wrapping and pushing nav down */
  .announcement-bar {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
  }
  .announcement-bar span {
    display: inline-block;
    padding-left: 100%;
    animation: announcement-scroll 22s l