/* ============================================================
   Wani NECTAR v2 — Juicy FMCG Design System
   ============================================================ */
:root {
  --mango: #FFB020;
  --orange: #FF7A1A;
  --pomegranate: #C2103E;
  --apple: #7CB518;
  --peach: #FF9E80;
  --guava: #F76C8A;
  --red-grapes: #6A2C91;

  --bg: #FFFDF7;
  --text: #1E2B1E;
  --text-muted: #4A5E4A;
  --leaf: #2E7D32;
  --charcoal: #1E2B1E;
  --white: #FFFFFF;

  --border: rgba(30, 43, 30, 0.08);
  --border-strong: rgba(30, 43, 30, 0.14);

  --shadow-sm: 0 2px 12px rgba(30, 43, 30, 0.06);
  --shadow: 0 12px 40px rgba(30, 43, 30, 0.1);
  --shadow-lg: 0 24px 64px rgba(30, 43, 30, 0.14);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --container: min(1200px, 100% - 2rem);
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out);

  --flavor-color: var(--mango);
  --flavor-rgb: 255, 176, 32;
  --header-height: 64px;
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(rgba(255, 176, 32, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 176, 32, 0.35);
  color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Premium icon system (Lucide + Simple Icons) */
.icon-v2 {
  width: var(--icon-size, 1.25rem);
  height: var(--icon-size, 1.25rem);
  display: block;
  flex-shrink: 0;
}

.icon-v2--sm { --icon-size: 1rem; }
.icon-v2--md { --icon-size: 1.25rem; }
.icon-v2--lg { --icon-size: 1.625rem; }
.icon-v2--xl { --icon-size: 2rem; }

:focus-visible {
  outline: 3px solid var(--flavor-color);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Typography ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.875rem;
}

.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--leaf);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, #FFC040 0%, var(--mango) 50%, #F5A020 100%);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(255, 176, 32, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 176, 32, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  border-color: var(--flavor-color);
  color: var(--flavor-color);
  transform: translateY(-2px);
}

.btn--mango-on-dark {
  background: var(--mango);
  color: var(--charcoal);
  font-weight: 700;
}

.btn--mango-on-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 176, 32, 0.4);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 253, 247, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 253, 247, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Announcement ── */
.announcement-v2 {
  background: var(--charcoal);
  color: rgba(255, 253, 247, 0.92);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--mango);
  overflow: hidden;
  text-wrap: balance;
}

.announcement-v2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mango);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── Header ── */
.header-v2 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header-v2.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-v2__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.875rem 0;
}

.header-v2__logo img {
  height: 44px;
  width: auto;
}

.header-v2__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-v2__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.header-v2__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--mango);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
  border-radius: 2px;
}

.header-v2__nav a:hover,
.header-v2__nav a.is-active { color: var(--text); }

.header-v2__nav a:hover::after,
.header-v2__nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-v2__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text);
  position: relative;
  transition: background 0.2s;
}

.header-v2__icon:hover { background: rgba(30, 43, 30, 0.06); }
.header-v2__icon .icon-v2 { --icon-size: 1.25rem; }

.footer-v2__social .icon-v2 {
  --icon-size: 1rem;
  color: var(--white);
}

.whatsapp-v2 .icon-v2 {
  --icon-size: 1.75rem;
  color: var(--white);
}

.trust-strip-v2__item .icon-v2 {
  --icon-size: 1.125rem;
  color: var(--leaf);
}

.header-v2__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--mango);
  color: var(--charcoal);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-v2__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header-v2__menu-toggle span,
.header-v2__menu-toggle::before,
.header-v2__menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header-v2__menu-toggle span { width: 16px; align-self: flex-end; }

.header-v2__menu-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.header-v2__menu-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }
.header-v2__menu-toggle.is-open span { opacity: 0; }

.mobile-nav-v2 {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-height);
  z-index: 99;
  background: var(--bg);
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.mobile-nav-v2.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-v2 a {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .header-v2__nav { display: none; }
  .header-v2__menu-toggle { display: flex; }
  .mobile-nav-v2 { display: flex; }
  .header-v2 .btn--primary { display: none; }
}

@media (min-width: 1025px) {
  .header-v2__actions .btn--primary { margin-left: 0.5rem; }
}

/* ── Hero desktop (hidden on mobile) ── */
.hero-v2.hero-v2--desktop {
  display: none !important;
}

@media (min-width: 1025px) {
  .hero-v2.hero-v2--desktop {
    display: flex !important;
  }
}

/* ── Hero (desktop styles when visible) ── */
.hero-v2 {
  position: relative;
  min-height: auto;
  align-items: center;
  overflow-x: clip;
  max-width: 100%;
  padding: 1rem 0 1.75rem;
}

.hero-v2__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 68% 42%, rgba(var(--flavor-rgb), 0.32) 0%, transparent 62%),
    radial-gradient(ellipse 45% 35% at 12% 75%, rgba(46, 125, 50, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 90% 10%, rgba(var(--flavor-rgb), 0.08) 0%, transparent 50%),
    var(--bg);
  transition: background 0.7s var(--ease-out);
}

.hero-v2__bg::before {
  content: "";
  position: absolute;
  width: min(600px, 120vw);
  height: min(600px, 120vw);
  border-radius: 50%;
  background: rgba(var(--flavor-rgb), 0.12);
  filter: blur(80px);
  top: 10%;
  right: 15%;
  transition: background 0.7s var(--ease-out);
}

.hero-v2__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: max(1rem, env(safe-area-inset-left, 1rem));
  padding-right: max(1rem, env(safe-area-inset-right, 1rem));
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.hero-v2__content,
.hero-v2__visual {
  min-width: 0;
  max-width: 100%;
}

.hero-v2__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.hero-v2__visual {
  position: relative;
  order: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  width: 100%;
  overflow: hidden;
  padding-block: 0.25rem 0.5rem;
}

.hero-v2__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--leaf);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  align-self: center;
  max-width: 100%;
  line-height: 1.35;
  text-wrap: balance;
}

.hero-v2__pill-leaf { font-size: 1rem; line-height: 1; }

.hero-v2__badges {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-v2__badge {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.hero-v2__headline {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 7vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-wrap: balance;
}

.hero-v2__headline em {
  font-style: normal;
  color: var(--flavor-color);
  transition: color 0.5s var(--ease-out);
  display: block;
  margin-top: 0.15rem;
}

.hero-v2__subline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 100%;
  width: 100%;
  margin-bottom: 1rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hero-v2__ctas {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.hero-v2__ctas .btn {
  width: 100%;
  white-space: normal;
  line-height: 1.35;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
}

.hero-v2 .btn--outline {
  border-color: rgba(var(--flavor-rgb), 0.35);
}

.hero-v2 .btn--outline:hover {
  background: rgba(var(--flavor-rgb), 0.08);
}

.hero-v2__flavors-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-align: center;
  width: 100%;
}

.hero-v2__flavors {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.hero-v2__flavors::-webkit-scrollbar { display: none; }

.flavor-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--border);
  color: var(--text);
  transition: all 0.25s var(--ease-out);
  flex-shrink: 0;
}

.flavor-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flavor-chip:hover {
  border-color: var(--chip-color, var(--mango));
  transform: translateY(-1px);
}

.flavor-chip.is-active {
  background: var(--chip-color, var(--mango));
  border-color: var(--chip-color, var(--mango));
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.flavor-chip.is-active[data-flavor="pomegranate"],
.flavor-chip.is-active[data-flavor="red-grapes"] {
  color: var(--white);
}

/* Hero visual — mobile sizes (desktop in min-width: 1025px) */
.hero-v2__stage {
  position: relative;
  width: min(180px, 48vw);
  margin-inline: auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-v2__slices {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-v2__slice {
  position: absolute;
  font-size: 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
  opacity: 0;
  animation: floatSlice 8s ease-in-out infinite;
}

.hero-v2.is-loaded .hero-v2__slice { opacity: 0.85; }

.hero-v2__slices.is-refreshing .hero-v2__slice {
  animation: sliceRefresh 0.6s var(--ease-out) both;
}

@keyframes sliceRefresh {
  0% { opacity: 0; transform: translateY(18px) scale(0.82); }
  100% { opacity: 0.85; transform: translateY(0) scale(1); }
}

.hero-v2__slice--1 { top: 8%; left: 5%; animation-delay: 0s; }
.hero-v2__slice--2 { display: none; }
.hero-v2__slice--3 { bottom: 12%; left: 10%; animation-delay: -5s; }

@keyframes floatSlice {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-v2__bottle-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: translateY(48px);
  opacity: 0;
  transform-style: preserve-3d;
  transition: transform 0.9s var(--ease-out), opacity 0.9s var(--ease-out);
}

.hero-v2.is-loaded .hero-v2__bottle-wrap {
  transform: translateY(0);
  opacity: 1;
}

.hero-v2__bottle-viewport {
  position: relative;
  width: 100%;
  height: min(220px, 52vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.hero-v2__bottle-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.hero-v2__bottle-slide.is-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: 2;
}

.hero-v2__bottle-slide.is-leaving {
  transform: translate3d(0, -118%, 0) scale(0.88);
  opacity: 0;
  z-index: 2;
  filter: blur(8px);
  transition:
    transform 0.78s cubic-bezier(0.55, 0, 1, 0.42),
    opacity 0.58s ease,
    filter 0.65s ease;
}

.hero-v2__bottle-slide.is-arriving-start {
  transform: translate3d(0, 78%, 0) scale(0.92);
  opacity: 0;
  filter: blur(10px);
  transition: none;
}

.hero-v2__bottle-slide.is-arriving {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  z-index: 3;
  filter: blur(0);
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.14s,
    opacity 0.82s ease 0.14s,
    filter 0.95s ease 0.14s;
}

.hero-v2__bottle-slide.is-arriving .hero-v2__bottle {
  animation: bottleSettle 1.05s cubic-bezier(0.34, 1.25, 0.64, 1) 0.14s both;
}

@keyframes bottleSettle {
  0% { transform: translateY(0) scale(1); }
  72% { transform: translateY(-6px) scale(1.015); }
  100% { transform: translateY(0) scale(1); }
}

.hero-v2__bottle {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(var(--flavor-rgb), 0.25));
  transition: filter 0.5s var(--ease-out);
  transform-origin: center bottom;
}

.hero-v2__flavor-tag {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
  z-index: 3;
  border: 2px solid rgba(var(--flavor-rgb), 0.2);
  max-width: calc(100% - 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-v2__ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px dashed rgba(var(--flavor-rgb), 0.15);
  animation: spinSlow 40s linear infinite;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.hero-v2__pedestal {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(var(--flavor-rgb), 0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 1;
  transition: background 0.5s, transform 0.5s var(--ease-out), opacity 0.5s;
}

.hero-v2__stage.is-bottle-switching .hero-v2__pedestal {
  transform: translateX(-50%) scale(0.82);
  opacity: 0.45;
}

.hero-v2__stage.is-bottle-switching .hero-v2__pedestal.is-pedestal-in {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.hero-v2__seal {
  position: absolute;
  top: 2%;
  left: 8%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--charcoal) 0%, #2a3d2a 100%);
  border: 2px solid var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: sealPulse 3s ease-in-out infinite;
}

.hero-v2__seal span {
  font-family: var(--font-display);
  font-size: 0.4375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mango);
  text-align: center;
  line-height: 1.2;
  max-width: 36px;
}

@media (min-width: 1025px) {
  .hero-v2 {
    display: flex;
    max-width: 100vw;
  }

  .hero-v2.hero-v2--desktop {
    min-height: min(92vh, 880px);
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .hero-v2__inner {
    width: var(--container);
    padding-inline: 0;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    text-align: left;
  }

  .hero-v2__content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-v2__visual {
    order: 0;
    min-height: 420px;
    padding-block: 0;
  }

  .hero-v2__headline {
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }

  .hero-v2__headline em {
    display: inline;
    margin-top: 0;
  }

  .hero-v2__subline {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    max-width: 460px;
    margin-bottom: 1.75rem;
    line-height: 1.65;
  }

  .hero-v2__pill {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
    align-self: auto;
  }

  .hero-v2__badges {
    display: flex;
  }

  .hero-v2__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2rem;
    width: auto;
  }

  .hero-v2__ctas .btn {
    width: auto;
    white-space: nowrap;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
  }

  .hero-v2__flavors-label {
    text-align: left;
    width: auto;
  }

  .hero-v2__flavor-nav {
    justify-content: flex-start;
    width: auto;
    max-width: none;
  }

  .hero-v2__flavor-arrow {
    display: flex;
  }

  .hero-v2__stage {
    width: min(380px, 85vw);
    margin-inline: 0;
  }

  .hero-v2__bottle-viewport {
    height: min(420px, 72vw);
  }

  .hero-v2__slice {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .hero-v2__slice--2 {
    display: block;
    top: 15%;
    right: 0;
    animation-delay: -2.5s;
  }

  .hero-v2__flavor-tag {
    left: auto;
    right: -1rem;
    transform: none;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    max-width: none;
  }

  .hero-v2__seal {
    top: 0;
    left: -0.5rem;
    width: 72px;
    height: 72px;
  }

  .hero-v2__seal span {
    font-size: 0.5625rem;
    max-width: 48px;
  }
}

/* ── Trust strip ── */
.trust-strip-v2 {
  background: var(--white);
  border-block: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-strip-v2__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.trust-strip-v2__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.trust-strip-v2__item svg {
  width: 18px;
  height: 18px;
  color: var(--leaf);
  flex-shrink: 0;
}

.trust-strip-v2__divider {
  width: 1px;
  height: 20px;
  background: var(--border-strong);
}

@media (max-width: 768px) {
  .trust-strip-v2__divider { display: none; }
  .trust-strip-v2__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 0.25rem; }
  .trust-strip-v2__inner::-webkit-scrollbar { display: none; }
}

/* ── Flavor cards strip ── */
.flavors-v2 {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.flavors-v2 .section-header--center .flavors-v2__cta {
  margin-top: 1.25rem;
}

.flavors-v2__wrap {
  position: relative;
}

.flavors-v2__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.flavors-v2__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.flavors-v2__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.flavors-v2__scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem max(1rem, calc((100% - 1200px) / 2 + 1rem)) 1rem;
}

.flavors-v2__scroll::-webkit-scrollbar { display: none; }

.flavor-card-v2 {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(var(--card-rgb), 0.16) 0%, var(--white) 55%);
  border: 1px solid rgba(var(--card-rgb), 0.22);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.flavor-card-v2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.flavor-card-v2::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(var(--card-rgb), 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.flavor-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(var(--card-rgb), 0.18);
  border-color: rgba(var(--card-rgb), 0.35);
}

.flavor-card-v2__bottle-wrap {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease-spring);
}

.flavor-card-v2:hover .flavor-card-v2__bottle-wrap {
  transform: translateY(-6px) rotate(-3deg);
}

.flavor-card-v2__bottle {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
}

.flavor-card-v2__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--mango);
  color: var(--charcoal);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.flavor-card-v2__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.375rem;
  color: var(--text);
}

.flavor-card-v2__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.flavor-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-color);
  margin-top: auto;
}

.flavor-card-v2__link .icon-v2 {
  --icon-size: 1rem;
}

/* ── Pack sizes ── */
.sizes-v2 {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.sizes-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2.5rem;
}

.size-card-v2 {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.size-card-v2--featured {
  background: linear-gradient(180deg, rgba(255, 176, 32, 0.1) 0%, var(--white) 100%);
  border-color: rgba(255, 176, 32, 0.35);
  box-shadow: 0 12px 40px rgba(255, 176, 32, 0.12);
  transform: scale(1.03);
  z-index: 1;
}

.size-card-v2--featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--mango);
  color: var(--charcoal);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.size-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.size-card-v2--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 176, 32, 0.18);
}

.size-card-v2__bottle {
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 180px;
}

.size-card-v2__bottle img {
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.size-card-v2--sm .size-card-v2__bottle img { max-height: 100px; }
.size-card-v2--md .size-card-v2__bottle img { max-height: 140px; }
.size-card-v2--lg .size-card-v2__bottle img { max-height: 175px; }

.size-card-v2__volume {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mango);
  margin-bottom: 0.25rem;
}

.size-card-v2__label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.size-card-v2__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .sizes-v2__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .size-card-v2--featured {
    transform: none;
    order: -1;
  }

  .size-card-v2--featured:hover {
    transform: translateY(-4px);
  }
}

/* ── Why Wani ── */
.trust-v2 {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.trust-v2__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.trust-v2__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.trust-v2__visual img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
  position: relative;
  z-index: 2;
}

.trust-v2__visual-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px dashed rgba(46, 125, 50, 0.15);
  animation: spinSlow 50s linear infinite;
}

.trust-v2__visual-badge {
  position: absolute;
  bottom: 1rem;
  right: 0;
  background: var(--white);
  border: 2px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 3;
}

.trust-v2__visual-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--leaf);
  line-height: 1;
}

.trust-v2__visual-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.trust-v2__content .section-subtitle {
  margin-bottom: 1.75rem;
}

.trust-v2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-v2__card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.trust-v2__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(46, 125, 50, 0.25);
}

.trust-v2__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.trust-v2__icon svg { width: 24px; height: 24px; }

.trust-v2__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.trust-v2__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .trust-v2__layout { grid-template-columns: 1fr; }
  .trust-v2__visual { min-height: 280px; order: -1; }
  .trust-v2__visual img { max-height: 260px; }
}

@media (max-width: 540px) {
  .trust-v2__grid { grid-template-columns: 1fr; }
}

/* ── Distributor band ── */
.distributor-v2 {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #162316 0%, var(--charcoal) 40%, #1a2f1a 100%);
  color: rgba(255, 253, 247, 0.9);
  position: relative;
  overflow: hidden;
}

.distributor-v2::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 176, 32, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  top: -20%;
  right: -10%;
}

.distributor-v2 .section-label { color: var(--mango); }
.distributor-v2 .section-label::before { background: var(--mango); }
.distributor-v2 .section-title { color: var(--white); }
.distributor-v2 .section-subtitle { color: rgba(255, 253, 247, 0.65); }

.distributor-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.distributor-v2__perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.distributor-v2__perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.distributor-v2__perk svg {
  width: 20px;
  height: 20px;
  color: var(--mango);
  flex-shrink: 0;
}

.distributor-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.distributor-v2__stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 253, 247, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 253, 247, 0.1);
}

.distributor-v2__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mango);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.distributor-v2__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 253, 247, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.distributor-v2__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .distributor-v2__grid { grid-template-columns: 1fr; }
  .distributor-v2__stats { grid-template-columns: repeat(3, 1fr); }
}

/* ── Testimonials marquee ── */
.testimonials-v2 {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.marquee-v2 {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-v2__inner {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}

.marquee-v2:hover .marquee-v2__inner {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.testimonial-v2 {
  flex: 0 0 340px;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--mango);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-v2::before {
  content: "\201C";
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 176, 32, 0.2);
  pointer-events: none;
}

.testimonial-v2__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-v2__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--mango);
}

.testimonial-v2__quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.testimonial-v2__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-v2__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-v2__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-v2__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Clients ── */
.clients-v2 {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.clients-v2 .marquee-v2__inner {
  animation-duration: 45s;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0;
}

.client-logo-v2 {
  height: 64px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s, transform 0.35s;
}

.client-logo-v2:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}

/* ── FAQ ── */
.faq-v2 {
  padding: var(--section-pad) 0;
}

.faq-v2__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-v2__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-v2__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-v2__item.is-open {
  border-color: rgba(255, 176, 32, 0.35);
  box-shadow: 0 4px 20px rgba(255, 176, 32, 0.08);
}

.faq-v2__item.is-open .faq-v2__question {
  color: var(--leaf);
}

.faq-v2__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--text);
}

.faq-v2__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-v2__item.is-open .faq-v2__question svg { transform: rotate(180deg); }

.faq-v2__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-v2__item.is-open .faq-v2__answer { grid-template-rows: 1fr; }

.faq-v2__answer-inner {
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-v2__item.is-open .faq-v2__answer-inner { padding-bottom: 1.125rem; }

@media (max-width: 768px) {
  .faq-v2__layout { grid-template-columns: 1fr; }
}

/* ── Instagram ── */
.instagram-v2 {
  position: relative;
  padding: var(--section-pad) 0 clamp(3rem, 6vw, 4rem);
  background: var(--bg);
  overflow: hidden;
}

.instagram-v2__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 176, 32, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.instagram-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.instagram-v2__header .section-label {
  justify-content: center;
}

.instagram-v2__header .section-title,
.instagram-v2__header .section-subtitle {
  text-align: center;
  margin-inline: auto;
}

.instagram-v2__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #FFB020 0%, #FF7A1A 55%, #E1306C 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(225, 48, 108, 0.28), 0 4px 12px rgba(255, 176, 32, 0.25);
}

.instagram-v2__icon .icon-v2 { --icon-size: 1.75rem; }

.instagram-v2__header .section-title em {
  font-style: normal;
  color: var(--mango);
}

.instagram-v2__handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 2px solid rgba(255, 176, 32, 0.25);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.instagram-v2__handle .icon-v2 {
  color: #E1306C;
}

.instagram-v2__handle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--mango);
}

.instagram-v2__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px 180px;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.insta-v2 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.insta-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.insta-v2--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.insta-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.insta-v2:nth-child(4) img,
.insta-v2:nth-child(5) img {
  object-fit: contain;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(255, 176, 32, 0.08) 0%, var(--white) 100%);
}

.insta-v2:hover img { transform: scale(1.04); }

.insta-v2__label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(30, 43, 30, 0.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 2;
}

.insta-v2__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 30, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.insta-v2:hover .insta-v2__overlay { opacity: 1; }

.insta-v2__overlay svg,
.insta-v2__overlay .icon-v2 {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@media (max-width: 768px) {
  .instagram-v2__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .insta-v2--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .insta-v2:not(.insta-v2--featured) { aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .instagram-v2__mosaic { grid-template-columns: 1fr; }
}

/* ── Footer (unified with CTA) ── */
.footer-v2 {
  background: linear-gradient(180deg, #243524 0%, var(--charcoal) 12%, var(--charcoal) 100%);
  color: rgba(255, 253, 247, 0.78);
  position: relative;
  margin-top: 0;
}

.footer-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mango), #FF7A1A, var(--leaf));
}

/* CTA band inside footer */
.footer-v2__cta {
  padding: clamp(2.5rem, 5vw, 3.25rem) 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-v2__cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -5%;
  top: -60%;
  background: rgba(255, 176, 32, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.footer-v2__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-v2__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
  line-height: 1.15;
}

.footer-v2__cta-text {
  font-size: 1rem;
  color: rgba(255, 253, 247, 0.68);
  max-width: 460px;
  line-height: 1.55;
}

.footer-v2__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-v2__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3rem) 0;
  align-items: start;
}

.footer-v2__col {
  min-width: 0;
}

.footer-v2__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 0.875rem;
  display: block;
}

.footer-v2__brand p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 280px;
  color: rgba(255, 253, 247, 0.72);
}

.footer-v2__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.footer-v2__trust span {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.625rem;
  border-radius: var(--radius-full);
  background: rgba(255, 176, 32, 0.1);
  color: var(--mango);
  border: 1px solid rgba(255, 176, 32, 0.18);
}

.footer-v2__heading {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-v2__links li { margin-bottom: 0.625rem; }

.footer-v2__links a {
  font-size: 0.9375rem;
  color: rgba(255, 253, 247, 0.72);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-v2__links a:hover {
  color: var(--mango);
  transform: translateX(3px);
}

.footer-v2__social {
  display: flex;
  gap: 0.5rem;
}

.footer-v2__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.footer-v2__social a:hover {
  background: var(--mango);
  border-color: var(--mango);
  transform: translateY(-2px);
}

.footer-v2__newsletter-text {
  font-size: 0.875rem;
  color: rgba(255, 253, 247, 0.62);
  margin: 0 0 0.875rem;
  line-height: 1.5;
}

.footer-v2__newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-v2__newsletter input {
  width: 100%;
  padding: 0.8125rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 253, 247, 0.22);
  background: rgba(255, 253, 247, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.footer-v2__newsletter input::placeholder {
  color: rgba(255, 253, 247, 0.45);
}

.footer-v2__newsletter input:focus {
  outline: none;
  border-color: var(--mango);
  background: rgba(255, 253, 247, 0.14);
  box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.2);
}

.footer-v2__newsletter button {
  width: 100%;
  padding: 0.8125rem 1.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #FFC040, var(--mango));
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-v2__newsletter button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 176, 32, 0.35);
}

/* Bottom bar — certs + copyright inline */
.footer-v2__bar {
  border-top: 1px solid rgba(255, 253, 247, 0.08);
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-v2__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-v2__certs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-v2__certs img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: brightness(1.05);
  transition: opacity 0.2s;
}

.footer-v2__certs img:hover {
  opacity: 1;
}

.footer-v2__bottom {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 253, 247, 0.42);
  text-align: right;
}

.footer-v2__credit {
  border-top: 1px solid rgba(255, 253, 247, 0.1);
  background: rgba(0, 0, 0, 0.28);
  padding: 0.75rem 0;
}

.footer-v2__credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.65);
}

.footer-v2__credit-inner a {
  color: var(--mango);
  transition: color 0.2s, opacity 0.2s;
}

.footer-v2__credit-inner a:hover {
  color: #ffc040;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-v2__cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-v2__cta-actions { justify-content: center; }
  .footer-v2__cta-text { margin-inline: auto; }

  .footer-v2__bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-v2__bottom { text-align: center; }
  .footer-v2__certs { justify-content: center; }
}

@media (max-width: 900px) {
  .footer-v2__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-v2__brand { grid-column: 1 / -1; }
  .footer-v2__col--newsletter { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .footer-v2__grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp float ── */
.whatsapp-v2 {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.whatsapp-v2:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-v2 svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-v2__tip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.whatsapp-v2:hover .whatsapp-v2__tip { opacity: 1; }

/* ── Scroll reveal ── */
.reveal-v2 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-v2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.size-card-v2.reveal-v2.is-visible.size-card-v2--featured {
  transform: scale(1.03);
}

.reveal-v2--delay-1 { transition-delay: 0.1s; }
.reveal-v2--delay-2 { transition-delay: 0.2s; }
.reveal-v2--delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════
   INTERACTIVE & EXCLUSIVE LAYER
   ══════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--mango), #FF7A1A, var(--leaf));
  z-index: 300;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 176, 32, 0.5);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.has-cursor-glow .cursor-glow { opacity: 1; }

/* Exclusive hero badge */
.hero-v2__exclusive {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: linear-gradient(135deg, #FFF8E8 0%, #FFE4A8 40%, #FFD070 100%);
  border: 1px solid rgba(255, 176, 32, 0.5);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(255, 176, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  align-self: center;
  max-width: 100%;
  text-wrap: balance;
}

.hero-v2__exclusive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

.hero-v2__exclusive-icon {
  color: var(--mango);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.hero-v2__flavor-line {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--flavor-color);
  margin: 0 0 1rem;
  transition: opacity 0.3s, transform 0.3s;
  min-height: 1.5em;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-v2__flavor-line.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.hero-v2__auto-hint {
  font-weight: 500;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 0.6875rem;
}

.hero-v2__flavor-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

@media (min-width: 1025px) {
  .hero-v2__exclusive {
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    align-self: auto;
  }

  .hero-v2__flavor-line {
    font-size: 1.125rem;
    margin: -0.75rem 0 1.5rem;
  }

  .hero-v2__flavor-nav {
    justify-content: flex-start;
    width: auto;
    max-width: none;
  }
}

.hero-v2__flavor-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1025px) {
  .hero-v2__flavor-arrow {
    display: flex;
  }
}

.hero-v2__flavor-arrow svg { width: 18px; height: 18px; }

.hero-v2__flavor-arrow:hover {
  background: var(--flavor-color);
  border-color: var(--flavor-color);
  color: var(--charcoal);
  transform: scale(1.08);
}

.hero-v2__flavors {
  flex: 1;
  min-width: 0;
}

/* Hero stage interactivity */
@media (min-width: 1025px) {
  .hero-v2__stage {
    perspective: 900px;
    transform-style: preserve-3d;
  }
}

.hero-v2__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(var(--flavor-rgb), 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}

.hero-v2__bottle-wrap.is-tilting {
  transition: transform 0.15s ease-out, opacity 0.9s var(--ease-out);
}

.hero-v2__flash {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--flavor-rgb), 0.35) 0%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.hero-v2__flash.is-flashing {
  animation: heroFlash 0.55s var(--ease-out) forwards;
}

@keyframes heroFlash {
  0% { opacity: 0; transform: scale(0.85); }
  30% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

@keyframes sealPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(3deg); }
}

.hero-v2__flavor-tag {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.5s, box-shadow 0.5s;
}

.hero-v2.is-loaded .hero-v2__flavor-tag {
  animation: tagPop 0.6s var(--ease-spring) 0.5s both;
}

.hero-v2__flavor-tag.is-switching {
  animation: tagSwitch 0.55s var(--ease-out);
}

@keyframes tagSwitch {
  0% { opacity: 0; transform: translateY(10px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes tagPop {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Flavor cards — 3D tilt + sync */
.flavor-card-v2 {
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
}

.flavor-card-v2.is-active-flavor {
  border-color: rgba(var(--card-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--card-rgb), 0.15), 0 16px 48px rgba(var(--card-rgb), 0.2);
}

.flavor-card-v2.is-active-flavor::after {
  height: 5px;
  box-shadow: 0 0 16px var(--card-color);
}

/* Premium button shimmer */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: none;
}

.btn--primary:hover::after {
  animation: btnShine 0.65s ease-out;
}

@keyframes btnShine {
  to { transform: translateX(120%); }
}

/* Distributor stat animation prep */
.distributor-v2__stat-num {
  font-variant-numeric: tabular-nums;
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  .hero-v2__exclusive::after,
  .hero-v2__seal,
  .hero-v2__slice { animation: none !important; }
  .flavor-card-v2 { transform: none !important; }
  .cursor-glow { display: none; }
  .hero-v2__auto-hint { display: none; }
  .hero-v2__bottle-slide.is-arriving .hero-v2__bottle { animation: none !important; }
  .hero-v2__slices.is-refreshing .hero-v2__slice { animation: none !important; }
  .hero-v2__bottle-slide.is-leaving,
  .hero-v2__bottle-slide.is-arriving,
  .hero-v2__bottle-slide.is-arriving-start { transition: none !important; }
}

@media (max-width: 768px) {
  .has-cursor-glow .cursor-glow { display: none; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --container: min(1200px, 100% - 1.25rem);
    --section-pad: clamp(2.75rem, 7vw, 3.75rem);
    --header-height: 58px;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  main#main {
    padding-bottom: 4.5rem;
  }

  .announcement-v2 {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.4;
  }

  .header-v2__inner {
    padding: 0.625rem 0;
    gap: 0.75rem;
  }

  .header-v2__logo img {
    height: 36px;
  }

  .header-v2__icon {
    width: 44px;
    height: 44px;
  }

  .mobile-nav-v2 {
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 1.5rem 1.25rem 2rem;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-v2 a {
    font-size: 1.25rem;
    padding: 0.35rem 0;
  }

  .mobile-nav-v2 .btn {
    width: 100%;
    margin-top: 0.5rem;
    min-height: 48px;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.8125rem 1.5rem;
  }

  /* Hero — refinements below 768px */
  .hero-mobile {
    padding: 0.625rem 0 1.25rem;
  }

  .hero-mobile__shell {
    padding-inline: max(0.875rem, env(safe-area-inset-left, 0.875rem));
    padding-right: max(0.875rem, env(safe-area-inset-right, 0.875rem));
  }

  .hero-mobile__chips {
    padding-inline: 0.125rem;
    scroll-padding-inline: 0.875rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  }

  .flavor-chip {
    padding: 0.5625rem 0.875rem;
    font-size: 0.8125rem;
    min-height: 44px;
  }

  /* Trust strip */
  .trust-strip-v2 {
    padding: 0.875rem 0;
  }

  .trust-strip-v2__inner {
    padding-inline: 1rem;
  }

  .trust-strip-v2__item {
    font-size: 0.75rem;
  }

  /* Flavor cards */
  .flavors-v2__scroll {
    padding-inline: 1rem;
  }

  .flavor-card-v2 {
    flex: 0 0 min(260px, 85vw);
    padding: 1.25rem;
  }

  /* Pack sizes */
  .sizes-v2__grid {
    max-width: none;
    padding-inline: 0;
  }

  .size-card-v2 {
    padding: 1.5rem 1.25rem;
  }

  .size-card-v2__volume {
    font-size: 1.75rem;
  }

  /* Why Wani */
  .trust-v2__content .section-header {
    text-align: center;
  }

  .trust-v2__content .section-subtitle {
    margin-inline: auto;
  }

  .trust-v2__card {
    padding: 1.25rem 1rem;
  }

  /* Distributor */
  .distributor-v2__grid {
    gap: 1.5rem;
  }

  .distributor-v2__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }

  .distributor-v2__stat {
    padding: 1rem 0.5rem;
  }

  .distributor-v2__stat-num {
    font-size: 1.5rem;
  }

  .distributor-v2__stat-label {
    font-size: 0.625rem;
  }

  .distributor-v2__visual img {
    width: 100%;
    height: auto;
  }

  /* Testimonials */
  .testimonial-v2 {
    flex: 0 0 min(300px, 88vw);
    padding: 1.375rem;
  }

  /* FAQ */
  .faq-v2__question {
    font-size: 0.9375rem;
    padding: 1rem 1rem;
  }

  .faq-v2__answer-inner {
    padding-inline: 1rem;
    font-size: 0.875rem;
  }

  /* Instagram */
  .instagram-v2__header {
    padding-inline: 0.25rem;
  }

  .instagram-v2__handle {
    font-size: 0.9375rem;
    padding: 0.6875rem 1.25rem;
  }

  /* Footer */
  .footer-v2__cta-title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .footer-v2__cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-v2__cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-v2__grid {
    padding-inline: 0;
  }

  .footer-v2__credit {
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
  }

  /* WhatsApp */
  .whatsapp-v2 {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    right: 1rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-v2__tip {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1200px, 100% - 1rem);
    --header-height: 54px;
  }

  .hero-mobile__title {
    font-size: 1.5rem;
  }

  .hero-mobile__actions .btn {
    font-size: 0.8125rem;
    padding: 0.6875rem 0.875rem;
  }

  .hero-mobile__stage {
    max-width: 185px;
    height: 175px;
  }

  .hero-mobile__bottle {
    height: min(160px, 42vw);
  }

  .distributor-v2__stats {
    grid-template-columns: 1fr;
  }

  .distributor-v2__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 0.875rem 1rem;
  }

  .distributor-v2__stat-num {
    margin-bottom: 0;
  }

  .client-logo-v2 {
    height: 48px;
    max-width: 90px;
  }

  .footer-v2__cta-actions .btn,
  .footer-v2__newsletter button {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) and (pointer: coarse) {
  .flavor-card-v2:hover,
  .size-card-v2:hover,
  .trust-v2__card:hover {
    transform: none;
  }

  .size-card-v2.reveal-v2.is-visible.size-card-v2--featured {
    transform: none;
  }

  .size-card-v2--featured:hover {
    transform: none;
  }
}

html.is-mobile-view .hero-mobile {
  display: block !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero-v2.hero-v2--desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════
   MOBILE HERO — dedicated layout (≤1024px)
   ══════════════════════════════════════════════════════════ */

.hero-mobile {
  display: none;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
  padding: 0.625rem 0 1.25rem;
}

@media (max-width: 1024px) {
  .hero-mobile {
    display: block;
  }
}

.hero-mobile__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% 18%, rgba(var(--flavor-rgb), 0.26) 0%, transparent 62%),
    var(--bg);
  transition: background 0.65s var(--ease-out);
  pointer-events: none;
}

.hero-mobile__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding-inline: max(1rem, env(safe-area-inset-left, 1rem));
  padding-right: max(1rem, env(safe-area-inset-right, 1rem));
  margin-inline: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.hero-mobile__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}

.hero-mobile__royal,
.hero-mobile__pulp {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-mobile__royal {
  color: var(--charcoal);
  background: linear-gradient(135deg, #FFF8E8, #FFD070);
  border: 1px solid rgba(255, 176, 32, 0.45);
}

.hero-mobile__pulp {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.hero-mobile__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6.5vw, 1.875rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.375rem;
  text-align: center;
  text-wrap: balance;
}

.hero-mobile__title em {
  font-style: normal;
  color: var(--flavor-color);
  display: block;
  margin-top: 0.1rem;
  transition: color 0.45s var(--ease-out);
}

.hero-mobile__tagline {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--flavor-color);
  text-align: center;
  margin-bottom: 0.75rem;
  min-height: 1.35em;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), color 0.45s;
}

.hero-mobile__tagline.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.hero-mobile__stage {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 230px;
  margin-inline: auto;
  margin-bottom: 0.875rem;
}

.hero-mobile__flash {
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--flavor-rgb), 0.35) 0%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.hero-mobile__flash.is-flashing {
  animation: heroMobileFlash 0.5s var(--ease-out) forwards;
}

@keyframes heroMobileFlash {
  0% { opacity: 0; transform: scale(0.88); }
  35% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.12); }
}

.hero-mobile__seal {
  position: absolute;
  top: 0.75rem;
  right: 0.25rem;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--charcoal), #2a3d2a);
  border: 2px solid var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mango);
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-mobile__tag {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(var(--flavor-rgb), 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: border-color 0.4s, opacity 0.28s, transform 0.28s;
}

.hero-mobile__tag.is-switching {
  opacity: 0;
  transform: translateX(-50%) translateY(-6px) scale(0.96);
}

.hero-mobile__slices {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-mobile__slices.is-refreshing .hero-mobile__slice {
  animation: mobileSlicePop 0.55s var(--ease-out) both;
}

@keyframes mobileSlicePop {
  0% { opacity: 0; transform: translateY(12px) scale(0.8); }
  100% { opacity: 0.9; transform: translateY(0) scale(1); }
}

.hero-mobile__slices .hero-mobile__slice {
  position: absolute;
  font-size: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  opacity: 0.9;
  animation: mobileSliceFloat 5s ease-in-out infinite;
}

.hero-mobile__slices .hero-mobile__slice--1 { top: 22%; left: 2%; animation-delay: 0s; }
.hero-mobile__slices .hero-mobile__slice--3 { bottom: 26%; right: 2%; animation-delay: -2.5s; }

@keyframes mobileSliceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-mobile__bottle-viewport {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-mobile__bottle-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-mobile__bottle-slide.is-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: 2;
}

.hero-mobile__bottle-slide.is-leaving {
  transform: translate3d(0, -75%, 0) scale(0.9);
  opacity: 0;
  z-index: 2;
  filter: blur(5px);
  transition:
    transform 0.62s cubic-bezier(0.55, 0, 1, 0.42),
    opacity 0.48s ease,
    filter 0.52s ease;
}

.hero-mobile__bottle-slide.is-arriving-start {
  transform: translate3d(0, 65%, 0) scale(0.93);
  opacity: 0;
  filter: blur(6px);
  transition: none;
}

.hero-mobile__bottle-slide.is-arriving {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  z-index: 3;
  filter: blur(0);
  transition:
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    opacity 0.68s ease 0.08s,
    filter 0.75s ease 0.08s;
}

.hero-mobile__bottle-slide.is-arriving .hero-mobile__bottle {
  animation: mobileBottleSettle 0.88s cubic-bezier(0.34, 1.2, 0.64, 1) 0.08s both;
}

@keyframes mobileBottleSettle {
  0% { transform: translateY(0); }
  70% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.hero-mobile__bottle {
  width: auto;
  height: min(200px, 52vw);
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(var(--flavor-rgb), 0.32));
  transition: filter 0.45s var(--ease-out);
  transform-origin: center bottom;
}

.hero-mobile.is-loaded .hero-mobile__bottle-slide.is-current .hero-mobile__bottle {
  animation: mobileHeroEnter 0.85s var(--ease-out) both;
}

@keyframes mobileHeroEnter {
  from { opacity: 0; transform: translateY(24px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-mobile__stage.is-bottle-switching .hero-mobile__glow {
  transform: translateX(-50%) scale(0.75);
  opacity: 0.35;
}

.hero-mobile__glow {
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(var(--flavor-rgb), 0.45) 0%, transparent 70%);
  filter: blur(6px);
  z-index: 1;
  transition: background 0.5s, transform 0.45s var(--ease-out), opacity 0.45s;
}

.hero-mobile__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  text-align: center;
  text-wrap: pretty;
}

.hero-mobile__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.hero-mobile__actions .btn {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  min-height: 48px;
  white-space: normal;
  line-height: 1.3;
}

.hero-mobile__pick {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-mobile__chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 1rem;
  scroll-snap-type: x proximity;
  padding-bottom: 0.25rem;
  margin-inline: -0.25rem;
  padding-inline: 0.25rem;
}

.hero-mobile__chips::-webkit-scrollbar {
  display: none;
}

.hero-mobile__chips .flavor-chip {
  min-height: 44px;
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: transform 0.2s var(--ease-out), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.hero-mobile__chips .flavor-chip.is-active {
  transform: scale(1.04);
}

@media (max-width: 380px) {
  .hero-mobile__stage {
    max-width: 240px;
    height: 210px;
  }

  .hero-mobile__bottle {
    height: min(185px, 50vw);
  }

  .hero-mobile__title {
    font-size: 1.4375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mobile__bottle-slide.is-leaving,
  .hero-mobile__bottle-slide.is-arriving,
  .hero-mobile__bottle-slide.is-arriving-start {
    transition: none !important;
  }

  .hero-mobile__bottle-slide.is-arriving .hero-mobile__bottle,
  .hero-mobile.is-loaded .hero-mobile__bottle-slide.is-current .hero-mobile__bottle,
  .hero-mobile__slices .hero-mobile__slice {
    animation: none !important;
  }

  .hero-mobile__flash.is-flashing {
    animation: none !important;
  }
}
