/* ============================================================
   NELLAI SODA FACTORY — Premium Interactive Experience (Light Theme)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;900&family=Playfair+Display:ital,wght@0,700;1,700&display=block');

:root {
  /* Logo & Brand Colors */
  --navy: #0A1D3A;
  --cyan: #00BFFF;
  --yellow: #FFD700;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --dark-text: #1a202c;
  
  /* Flavour Colors */
  --lemon:    #f5e642;
  --orange:   #ff7a00;
  --apple:    #3ecf3e;
  --berry:    #00b4d8;
  --grape:    #9b2fc7;
  --jeera:     #8B4513;
  --litchi:   #ffb6c1;
  --pineapple:#ffcc00;
  --strawberry:#e63946;
  --paneer:   #f48fb1;

  /* Glass Effects */
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(10, 29, 58, 0.1);
  --glass-shadow: 0 8px 32px rgba(10, 29, 58, 0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; font-size: 16px; }

/* Hardware Acceleration for Animations */
.flavour-bottle, .flavour-panel, .story-floating-bottles, .reveal, .vp-card, .fssai-card {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: #fff;
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .3s;
}
#cursor-ring {
  position: fixed;
  width: 42px; height: 42px;
  border: 1.5px solid #fff;
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all .12s ease-out;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; background: var(--cyan); }

/* ── LOADER ──────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--off-white);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.loader-bottle {
  position: absolute;
  top: 50%;
  height: clamp(300px, 60vh, 600px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,191,255,0.4));
  animation: floatLoaderBottle 4s ease-in-out infinite alternate;
}
.loader-bottle.left {
  right: calc(50% + 350px);
  --rot: 30deg;
}
.loader-bottle.right {
  left: calc(50% + 350px);
  --rot: -30deg;
  animation-delay: -2s;
}
@keyframes floatLoaderBottle {
  from { transform: translateY(-50%) rotate(var(--rot)) translateY(0); }
  to { transform: translateY(-50%) rotate(var(--rot)) translateY(-40px); }
}
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: .15em;
  color: var(--navy);
}
.loader-bar-wrap {
  width: 220px; height: 4px;
  background: rgba(10,29,58,.1);
  border-radius: 4px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
  border-radius: 4px;
}
.loader-num {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--navy);
}

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s, box-shadow .4s;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#nav.scrolled {
  padding: 14px 5vw;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
#nav.menu-open {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#nav.menu-open .nav-logo {
  color: var(--white);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.nav-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  background-color: #ffffff;
  border: 1.5px solid var(--cyan);
  box-shadow: 0 4px 15px rgba(0,191,255,0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .1em;
  color: var(--navy);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10,29,58,.7);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 4px 20px rgba(10,29,58,.2); background: var(--cyan); }
.nav-hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  z-index: 101; 
  transition: all 0.3s; 
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.active { background: transparent; backdrop-filter: none; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10vw;
  /* Unique Sweeping Circle Reveal */
  clip-path: circle(0% at 100% 0%);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0.7s;
  visibility: hidden;
}

.mobile-menu.active {
  clip-path: circle(150% at 100% 0%);
  visibility: visible;
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0s;
}

/* Background watermark for uniqueness */

.mobile-menu::after {
  content: 'NELLAI';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 35vh;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  white-space: nowrap;
}



.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.45s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.55s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.6s; }

/* Massive Outline Typography */
.mobile-nav-links a {
  color: var(--white);
  -webkit-text-stroke: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6rem);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  position: relative;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover creates a fill effect + slide */
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--hover-color, var(--cyan));
  -webkit-text-stroke: 0;
  transform: translateX(20px);
  letter-spacing: 2px;
}

/* Small accent dot next to active/hover item */




/* ── HERO ────────────────────────────────────────────────── */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, var(--white) 0%, var(--off-white) 70%);
  z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-floating-bottles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}
.hero-bottle-wrap {
  position: absolute;
  width: clamp(80px, 12vw, 150px);
  pointer-events: auto;
  cursor: pointer;
  z-index: 6;
  animation: floatHeroBottle 6s ease-in-out infinite alternate;
}
.hero-bottle {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 20px 30px rgba(10,29,58,0.15));
}
.hero-bottle-wrap:hover {
  z-index: 15; /* bring above others on hover */
}
.hero-bottle-wrap:hover .hero-bottle {
  transform: translateY(-20px) scale(1.1) rotate(5deg);
  filter: drop-shadow(0 30px 40px var(--glow-color, rgba(0,191,255,0.4)));
}
.hb-left-1 { top: 15%; left: 8%; --hb-rot: 15deg; animation-delay: 0s; }
.hb-left-2 { bottom: 15%; left: 15%; --hb-rot: -10deg; animation-delay: -2s; width: clamp(70px, 10vw, 120px); }
.hb-right-1 { top: 15%; right: 8%; --hb-rot: -15deg; animation-delay: -4s; }
.hb-right-2 { bottom: 18%; right: 15%; --hb-rot: 20deg; animation-delay: -1s; width: clamp(70px, 10vw, 120px); }

@keyframes floatHeroBottle {
  from { transform: translateY(0) rotate(var(--hb-rot)); }
  to { transform: translateY(-30px) rotate(var(--hb-rot)); }
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: .92;
  letter-spacing: .04em;
  margin-bottom: 28px;
  color: var(--navy);
  opacity: 0;
}
.hero-title span { display: block; }
.hero-title .hl { color: var(--cyan); text-shadow: 2px 2px 0px var(--yellow); }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: rgba(10,29,58,.7);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}
.btn-primary {
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
  text-decoration: none !important;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(10,29,58,.25); background: var(--cyan); text-decoration: none !important; }
.btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
  text-decoration: none !important;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,191,255,.05); text-decoration: none !important; }
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 10;
}
.scroll-hint span { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); }
.scroll-arrow {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  animation: scrollArrow 2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── SCROLL STORY ────────────────────────────────────────── */
#scroll-story {
  position: relative;
  height: 700vh;
}
.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.story-bg {
  position: absolute; inset: 0;
  transition: background 0.05s;
  z-index: 0;
}
#bottle-container {
  position: absolute;
  top: 50%;
  left: 58%; /* Shifted right for better visual balance */
  transform: translate(-50%, -50%);
  width: 440px;
  height: 800px;
  z-index: 5;
  pointer-events: auto; /* Enable hover/touch */
  cursor: grab;
}
#bottle-container:active {
  cursor: grabbing;
}
.flavour-bottle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  will-change: transform, opacity;
  filter: brightness(1);
  transition: filter 0.3s ease;
  margin-left: 15px;
}
.flavour-bottle.interactive-hover {
  filter: brightness(1.15);
}
.bottle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: 4;
  will-change: background, opacity;
  pointer-events: none;
}
/* fruit particles canvas */
#particle-canvas {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
}
/* flavour text panels - UPDATED TO COLORED BOXES */
.flavour-panels {
  position: absolute; inset: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.flavour-panel {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  width: 420px;
  height: 300px; /* Force strict exact height */
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  will-change: transform, opacity;
  transform: translateY(calc(-50% + var(--parallax-y, 0px))) scale(var(--panel-scale, 1));
}
.flavour-panel.active { opacity: 1; }
.flavour-num {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,255,255,.2);
  position: absolute;
  top: 10px; right: 20px;
  z-index: 0;
}

/* Navigation Buttons (Global) */
.mob-flavour-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 40px;
  z-index: 50;
  pointer-events: none;
}

.mob-btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1d3a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.mob-btn:hover {
  transform: scale(1.1);
  background: white;
}
.mob-btn:active {
  transform: scale(0.95);
}
.mob-btn[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.flavour-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  position: relative; z-index: 1;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .02em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.flavour-tag {
  position: relative; z-index: 1;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
}
.flavour-title {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .02em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.flavour-desc {
  position: relative; z-index: 1;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

/* right side progress */
.flavour-progress {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}
.progress-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10,29,58,.2);
  transition: all .3s;
  position: relative;
}
.progress-dot.active {
  background: var(--navy);
  box-shadow: 0 0 10px rgba(10,29,58,.5);
  transform: scale(1.5);
}
.progress-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
}
.progress-dot.active::after { opacity: 1; }

/* ── FLAVOUR CARDS ────────────────────────────────────────── */
#flavours {
  padding: 140px 5vw;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.section-header { text-align: center; margin-bottom: 60px; padding: 0 20px; }
.section-tag { font-size: .85rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--navy); margin-bottom: 16px; text-transform: uppercase; }
.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(10,29,58,.6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* Forces all cards to equal height */
}
.flavour-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .6s cubic-bezier(.23,1,.32,1), box-shadow .6s cubic-bezier(.23,1,.32,1);
  background: var(--off-white);
  border: 1px solid var(--glass-border);
  padding: 40px 32px 36px;
  min-height: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.flavour-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--card-gradient);
  opacity: 0.15;
  transition: opacity .6s;
  z-index: 0;
}
.flavour-card:hover::before, .flavour-card.is-active::before { opacity: .3; }
.flavour-card:hover, .flavour-card.is-active { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 60px rgba(10,29,58,0.12); }
.card-bottle-wrap {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 150px; height: 340px;
  z-index: 1;
  pointer-events: none;
}
.card-bottle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.23,1,.32,1), filter .7s cubic-bezier(.23,1,.32,1);
}
.flavour-card:hover .card-bottle-img, .flavour-card.is-active .card-bottle-img {
  transform: translateY(-8px) rotate(3deg);
  filter: drop-shadow(0 20px 40px var(--card-glow));
}
.card-number {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(10,29,58,.05);
  line-height: 1;
  z-index: 0;
}
.card-content { position: relative; z-index: 2; padding-right: 90px; }
.card-tag {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--card-color);
  margin-bottom: 10px;
  display: block;
}
.card-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--navy);
}
.card-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(10,29,58,.6);
  margin-bottom: 20px;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.card-btn:hover { gap: 14px; color: var(--card-color); }
.card-btn::after { content: '→'; }
.card-glow-ring {
  position: absolute; inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 2px var(--card-color);
  opacity: 0;
  transition: opacity .35s;
  z-index: 3;
  pointer-events: none;
}
.flavour-card:hover .card-glow-ring { opacity: .6; }

/* ── WHY SECTION ─────────────────────────────────────────── */
#why {
  padding: 140px 5vw;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,191,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .05em;
  margin-bottom: 12px;
  color: var(--navy);
}
.why-card p {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(10,29,58,.6);
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 80px auto 0;
  max-width: 900px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(10,29,58,.5);
  margin-top: 6px;
}

/* ── DISTRIBUTOR ─────────────────────────────────────────── */
#distributor {
  padding: 140px 5vw;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.dist-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 191, 255, .15) 0%, transparent 60%);
  z-index: 0;
}
.dist-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dist-left .section-title { text-align: left; color: var(--white); }
.dist-left .section-eyebrow { text-align: left; color: var(--yellow); }
.dist-benefits {
  list-style: none;
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dist-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.dist-benefits li::before {
  content: '✦';
  color: var(--cyan);
  font-size: .85rem;
  flex-shrink: 0;
}
.dist-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.35); }
.dist-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  color: var(--navy);
}
.dist-form h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .06em;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10,29,58,.6);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid rgba(10,29,58,.1);
  border-radius: 10px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color .3s, background .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,191,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.form-submit:hover { background: var(--yellow); transform: translateY(-2px); }

/* ── GALLERY ─────────────────────────────────────────────── */
#gallery {
  padding: 140px 5vw;
  overflow: hidden;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 420px; }
.gallery-item:nth-child(2) { grid-column: span 5; min-height: 200px; }
.gallery-item:nth-child(3) { grid-column: span 5; min-height: 200px; }
.gallery-item:nth-child(4) { grid-column: span 4; min-height: 260px; }
.gallery-item:nth-child(5) { grid-column: span 4; min-height: 260px; }
.gallery-item:nth-child(6) { grid-column: span 4; min-height: 260px; }
.gallery-card {
  width: 100%; height: 100%;
  min-height: inherit;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
}
.gallery-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,29,58,.8) 0%, transparent 60%);
  z-index: 1;
}
.gallery-card:hover { transform: scale(1.02); }
.gallery-visual {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: .2;
  transition: opacity .4s, transform .4s;
  color: var(--cyan);
}
.gallery-card:hover .gallery-visual { opacity: .4; transform: scale(1.08); }
.gallery-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .06em;
  color: var(--white);
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  padding: 140px 5vw;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10,29,58,.5);
  margin-bottom: 5px;
}
.contact-info-item p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s;
  text-decoration: none;
  color: var(--navy);
}
.social-link:hover { background: var(--cyan); color: var(--navy); transform: translateY(-3px); border-color: var(--cyan); }
.social-whatsapp:hover { background: #25D366; border-color: #25D366; color: white; }
.social-instagram:hover { background: #E1306C; border-color: #E1306C; color: white; }
.social-facebook:hover { background: #1877F2; border-color: #1877F2; color: white; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: 44px;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background-color: var(--navy);
  border: 1px solid rgba(255,255,255,0.05);
  color: #25D366;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.3);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .06em;
  margin-bottom: 28px;
  color: var(--navy);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 60px 5vw 32px;
  background: var(--navy);
  color: var(--white);
  border-top: 5px solid var(--cyan);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  color: var(--white);
}
.footer-brand p {
  margin-top: 16px;
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .3s;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); }

/* ── ABOUT PAGE REDESIGN ──────────────────────────────────────────── */
.about-hero {
  padding: 160px 5vw 80px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.about-tagline {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--cyan);
  margin-bottom: 24px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: .05em;
  max-width: 800px;
  margin: 0 auto;
}
.about-story {
  padding: 80px 5vw;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.story-floating-bottles {
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  top: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.story-bottle {
  position: absolute;
  width: clamp(120px, 18vw, 250px);
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.5;
  animation: floatHeroBottle 6s ease-in-out infinite alternate;
}
.story-bottle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 20px 30px rgba(10,29,58,0.1));
}
.story-bottle:hover {
  opacity: 1;
  z-index: 10;
}
.story-bottle:hover img {
  transform: translateY(-20px) scale(1.1) rotate(5deg);
  filter: drop-shadow(0 30px 40px var(--glow-color, rgba(0,191,255,0.4)));
}
.sb-left { left: 3vw; top: 15%; --hb-rot: 25deg; }
.sb-right { right: 3vw; top: 50%; --hb-rot: -25deg; animation-delay: -3s; }
.story-point {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 32px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(10,29,58,0.03);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
}
.story-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10,29,58,0.08);
}
.story-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,191,255,0.1), rgba(255,215,0,0.1));
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: transform 0.4s, color 0.4s;
}
.story-point:hover .story-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--navy);
}
.story-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-text p {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(10,29,58,0.8);
}
.about-growth {
  padding: 80px 5vw;
  background: var(--white);
}
.chart-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 220px auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1200px;
}
.chart-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(15deg);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 40px;
}
.chart-bar {
  position: relative;
  width: 70px;
  height: var(--bar-height);
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s;
  cursor: pointer;
  --bar-color: rgba(10,29,58,0.2);
  --bar-glow: transparent;
  transform-origin: bottom center;
}
.chart-bar:hover {
  transform: translateZ(40px) scale(1.05);
}
.bar-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bar-color);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bar-face.front { transform: translateZ(35px); box-shadow: 0 0 40px var(--bar-glow); }
.bar-face.back { transform: rotateY(180deg) translateZ(35px); }
.bar-face.left { width: 70px; transform: rotateY(-90deg) translateZ(35px); }
.bar-face.right { width: 70px; transform: rotateY(90deg) translateZ(35px); }
.bar-face.top { 
  height: 70px; 
  transform: rotateX(90deg) translateZ(35px); 
  background: rgba(255,255,255,0.7); 
}
.bar-label {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) translateZ(40px) rotateX(-15deg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;
}

.bar-tooltip {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) translateZ(50px);
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
  border: 1px solid var(--cyan);
  z-index: 10;
}
.chart-bar:hover .bar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) translateZ(50px);
}
.bar-tooltip h4 {
  color: var(--cyan);
  font-size: 1rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.bar-tooltip p {
  font-size: .8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.bar-tooltip span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .05em;
}

.chart-grid-floor {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotateX(70deg);
  width: 120%;
  height: 400px;
  background-image: 
    linear-gradient(to right, rgba(0,191,255,0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,191,255,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  filter: drop-shadow(0 0 20px rgba(0,191,255,0.2));
  pointer-events: none;
}
.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
}
.diff-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(10,29,58,0.05);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,191,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s;
}
.diff-card:hover { 
  transform: translateY(-10px) scale(1.02); 
  box-shadow: 0 20px 50px rgba(10,29,58,0.1);
  border-color: rgba(0,191,255,0.3);
}
.diff-card:hover::before {
  left: 150%;
}
.diff-card h3 { 
  font-size: 1.25rem; 
  color: var(--navy); 
  margin-bottom: 16px; 
  font-weight: 800; 
  transition: color 0.3s;
}
.diff-card:hover h3 {
  color: var(--cyan);
}
.values-container {
  padding: 80px 5vw;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}
.value-pill {
  padding: 16px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .05em;
  transition: all 0.3s ease;
}
.value-pill:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
  transform: scale(1.05);
}

/* ── RESPONSIVE OVERRIDES ────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hide custom cursor on touch devices */
  #cursor, #cursor-ring {
    display: none !important;
  }
  
  /* Hide bottom floating bottles to prevent overlap with buttons */
  .hb-left-2, .hb-right-2 {
    display: none !important;
  }

  .cards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  
  /* Tablet Parallax Layout */
  .mob-flavour-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%; /* Default for tablet */
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 16px;
    z-index: 50;
    pointer-events: none;
  }
  .mob-btn {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1d3a;
    box-shadow: 0 10px 30px rgba(10,29,58,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .mob-btn:active {
    transform: scale(0.9);
  }
  .mob-btn[disabled] {
    opacity: 0.3;
    pointer-events: none;
  }

  #bottle-container {
    width: 340px;
    height: 650px;
    left: 65%;
  }
  .flavour-panel {
    width: 360px;
    left: 5%;
    padding: 32px;
  }
}

@media (max-width: 768px) {
  #nav {
    padding: 12px 5vw;
    align-items: center;
  }
  .nav-logo-img {
    width: 45px;
    height: 45px;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .nav-links { display: none; }
  .nav-hamburger { 
    display: flex; 
    align-self: center;
    margin: auto 0;
  }
  .nav-cta { display: none; }
  
  .about-tagline {
    font-size: clamp(0.9rem, 3.5vw, 1.5rem);
    white-space: nowrap;
  }
  
  /* Grids & Layouts */
  .cards-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .about-diff-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .footer-col { align-items: flex-start; }
  .social-links { justify-content: flex-start !important; }
  .brand-col .nav-logo-link { justify-content: flex-start; flex-direction: row; gap: 16px !important; }
  .footer-bottom { flex-direction: column; justify-content: flex-start !important; text-align: left; gap: 16px !important; }
  
  .gallery-item { grid-column: span 12 !important; }
  
  /* Mobile Parallax Layout */
  .mob-flavour-nav {
    top: 35%; /* Align perfectly with bottle center */
  }

  #bottle-container { 
    width: 280px; 
    height: 550px; 
    top: 35%; 
    left: 50%; 
  }
  .flavour-bottle { margin-left: 6px; }
  .flavour-panel { 
    left: 50%; 
    top: auto; 
    bottom: 5%; 
    transform: translateX(calc(-50% + var(--parallax-x, 0px))) translateY(var(--parallax-y, 0px)) scale(var(--panel-scale, 1)); 
    text-align: center; 
    width: 90vw; 
    height: 280px;
    padding: 24px;
  }
  .flavour-title { font-size: 2.2rem; margin-bottom: 12px; }
  .flavour-desc { font-size: 0.95rem; line-height: 1.5; }
  
  .showcase-bottle-receiver img {
    margin-left: 6px;
  }
  .flavour-num { font-size: 4.5rem; top: 10px; right: 50%; transform: translateX(50%); opacity: 0.05; }
  .flavour-progress { display: none; }
  
  .dist-form { padding: 28px; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2.2rem; }
  
  /* iPhone Parallax Layout */
  #bottle-container { 
    width: 220px; 
    height: 400px; 
    top: 32%; 
  }
  .flavour-panel { 
    bottom: 4%; 
    height: 260px;
    padding: 20px 16px;
  }
  .flavour-title { font-size: 1.8rem; margin-bottom: 8px; }
  .flavour-desc { font-size: 0.85rem; }
  
    .flavour-card { min-height: 260px; padding: 24px 20px; }
    .card-bottle-wrap { width: 110px; height: 250px; right: 5px; top: -20px; }
    .card-content { padding-right: 120px; }
    .card-title { font-size: 1.8rem; margin-bottom: 6px; }
    .card-tag { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── PRODUCT SHOWCASE OVERLAY ──────────────────────────────────────────── */
#product-showcase {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.volume-hero {
  padding-top: 150px;
  padding-bottom: 40px;
  text-align: center;
  background: var(--off-white);
  position: relative;
  z-index: 20;
}
.volume-hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.volume-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(10, 20, 40, 0.6);
  max-width: 600px;
  margin: 0 auto;
}
/* Background is now dynamic via JS, but we need a base */
.showcase-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 1;
}
#fruit-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.showcase-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, var(--showcase-glow, rgba(0,191,255,0.2)) 0%, transparent 60%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.showcase-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* Base styles for layout */
.showcase-close {
  position: absolute;
  top: 40px; right: 40px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(10,29,58,0.1);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.showcase-close:hover {
  background: var(--off-white);
  transform: scale(1.1);
}
.showcase-layout {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 500px 1fr; /* Increased from 400px to allow wider/bigger bottle */
  align-items: center;
  padding: 40px;
}
.showcase-center {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-bottle-receiver {
  width: 100%;
  height: 85vh; /* Increased from 75vh */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.showcase-bottle-receiver img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 60px var(--showcase-glow, rgba(0,191,255,0.5)));
  margin-left: 15px; /* Offset to perfectly center the physical bottle within the asymmetric canvas */
}
.showcase-left, .showcase-right {
  color: var(--navy);
}
.showcase-tag {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--showcase-glow, var(--cyan));
  display: block;
  margin-bottom: 16px;
}
.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.showcase-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 30px;
}
.showcase-specs {
  display: none !important;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.4);
}
.spec-value {
  font-weight: 600;
  font-size: 1rem;
}
.showcase-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.showcase-right .btn-primary {
  background: var(--white);
  color: var(--navy);
}
.showcase-right .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.showcase-right .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.showcase-thumbnails {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
}
.thumb-btn {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumb-btn:hover, .thumb-btn.active {
  background: rgba(255,255,255,0.15);
  border-color: var(--showcase-glow, var(--cyan));
  transform: translateY(-5px);
}
.char {
  display: inline-block;
}

/* Nav Arrows */
.showcase-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(10,29,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  display: flex; /* Always show arrows on desktop and mobile */
}
.showcase-nav-btn:hover {
  background: #ffffff;
  color: var(--cyan);
  transform: translateY(-50%) scale(1.1);
}
.showcase-nav-btn.prev-btn { left: 15px; }
.showcase-nav-btn.next-btn { right: 15px; }

@media (max-width: 1024px) {
  .showcase-nav-btn {
    display: flex; /* Show arrows on mobile/tablet */
  }
  .showcase-thumbnails {
    display: none !important; /* Hide thumbnails on mobile/tablet */
  }
  .showcase-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push text to the bottom */
    align-items: center;
    padding-bottom: 80px; /* Space from bottom of screen */
    height: 100vh;
    overflow: hidden;
  }
  .showcase-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh; /* Increased from 40vh */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .showcase-bottle-receiver {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .showcase-left {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }
  .showcase-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .showcase-desc {
    text-align: center;
    max-width: 90%;
    margin-bottom: 20px;
  }
  .showcase-specs {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .spec-item {
    align-items: center;
    text-align: center;
  }
  .showcase-right {
    display: none !important; /* Hide bottom buttons */
  }
}

/* ── 3D GRAPH MOBILE OPTIMIZATION ────────────────────────────────────────── */
@media (max-width: 768px) {
  .chart-container {
    height: 350px;
    margin: 120px auto 60px;
  }
  .chart-3d {
    padding: 0 10px;
  }
  .chart-bar {
    width: 45px;
  }
  .bar-face.front { transform: translateZ(22.5px); box-shadow: 0 0 15px var(--bar-glow); }
  .bar-face.back { transform: rotateY(180deg) translateZ(22.5px); }
  .bar-face.left { width: 45px; transform: rotateY(-90deg) translateZ(22.5px); }
  .bar-face.right { width: 45px; transform: rotateY(90deg) translateZ(22.5px); }
  .bar-face.top { height: 45px; transform: rotateX(90deg) translateZ(22.5px); }
  
  /* CRITICAL: Remove blur to fix severe mobile GPU lag */
  .bar-face {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .chart-bar:hover {
    transform: translateZ(15px) scale(1.02);
  }
  
  /* Fix overlapping labels */
  .bar-label {
    font-size: 0.65rem;
    white-space: normal;
    width: 65px;
    line-height: 1.2;
    bottom: -45px;
  }
  
  /* Fix tooltips getting cut off on edges */
  .bar-tooltip {
    padding: 10px 12px;
  }
  .bar-tooltip h4 { font-size: 0.75rem; }
  .bar-tooltip span { font-size: 1.1rem; }
  
  .chart-bar:nth-child(1) .bar-tooltip,
  .chart-bar:nth-child(2) .bar-tooltip {
    left: 0;
    transform: translateX(-15%) translateY(10px) translateZ(40px);
  }
  .chart-bar:nth-child(1):hover .bar-tooltip,
  .chart-bar:nth-child(2):hover .bar-tooltip {
    transform: translateX(-15%) translateY(0) translateZ(40px);
  }
  
  .chart-bar:last-child .bar-tooltip {
    left: auto; 
    right: -10px;
    transform: translateX(0) translateY(10px) translateZ(40px);
  }
  .chart-bar:last-child:hover .bar-tooltip {
    transform: translateX(0) translateY(0) translateZ(40px);
  }
}

/* ── GALLERY PAGE ──────────────────────────────────────────────── */
.gallery-hero {
  padding: 160px 5vw 80px;
  background: var(--off-white);
  color: var(--navy);
  text-align: center;
}
.gallery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.gallery-hero p {
  font-size: 1.2rem;
  color: rgba(10,29,58,0.7);
}
.gallery-section {
  padding: 0 5vw 120px;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #eaeaea;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Collage Spans for 8 items */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-item:nth-child(4) img {
  object-position: 50% 25%;
}
.gallery-item:nth-child(6) img {
  object-position: top center;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,29,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  background: var(--white);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 29, 58, 0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.15s ease-in-out;
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}
.lightbox-close:hover {
  background: var(--white);
  color: var(--navy);
  transform: rotate(90deg);
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .gallery-item {
    aspect-ratio: 4 / 5;
  }
  .gallery-item:nth-child(n) { 
    grid-column: span 1; 
    grid-row: span 1; 
  }
}

/* --- H1 PAGE OVERRIDES --- */
.h1-page #scroll-story, .volume-page #scroll-story {
  height: auto !important;
}
.h1-page .showcase, .volume-page .showcase {
  position: relative !important;
  height: auto !important;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}
.h1-page .showcase-mobile-nav, .volume-page .showcase-mobile-nav {
  display: flex !important; /* Force arrows to show on desktop */
}
.h1-page .showcase-layout, .volume-page .showcase-layout, .flavours-page .showcase-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 120px;
  min-height: 100vh;
}
.h1-page .showcase-center, .volume-page .showcase-center, .flavours-page .showcase-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 65vh; /* Increased from 50vh for much bigger bottle */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.h1-page .showcase-bottle-receiver, .volume-page .showcase-bottle-receiver {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h1-page .showcase-left, .volume-page .showcase-left, .flavours-page .showcase-left {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.h1-page .showcase-title, .volume-page .showcase-title, .flavours-page .showcase-title {
  font-size: 2rem;
}
.h1-page .showcase-desc, .volume-page .showcase-desc, .flavours-page .showcase-desc {
  text-align: center;
  max-width: 600px;
  margin-bottom: 20px;
}
.h1-page .showcase-specs, .volume-page .showcase-specs, .flavours-page .showcase-specs {
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
.h1-page .showcase-right, .volume-page .showcase-right, .flavours-page .showcase-right {
  display: none !important; /* Hide thumbnails */
}
.h1-page .flavour-progress, .volume-page .flavour-progress {
  display: none !important; /* Hide right-side dotted flavour index */
}

/* --- TOP FLAVOUR SELECTOR (Volume Pages) --- */
.top-flavour-selector {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}
.top-flavour-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.top-flavour-card:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.2);
}
.top-flavour-card.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* -------------------------
   BOTTLE TYPES SECTION
   ------------------------- */
#bottle-types {
  padding: 100px 5vw;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  z-index: 10;
}
#bottle-types::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,191,255,0.05), transparent 70%);
  pointer-events: none;
}
.types-header {
  text-align: center;
  margin-bottom: 60px;
}
.types-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.types-title {
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
}
.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.type-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, border-color 0.5s, background 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.type-card:hover {
  transform: translateY(-15px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,191,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,191,255,0.1);
}
.type-card:hover::before {
  opacity: 1;
}
.type-img-wrap {
  height: 350px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-card:hover .type-img-wrap {
  transform: scale(0.95);
  opacity: 0.3;
}
.type-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.type-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
  z-index: 2;
}
.type-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 400px;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-card:hover .type-desc,
.type-card:active .type-desc {
  transform: translateY(-20px);
  opacity: 0.3;
}
.type-view-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-view-link svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-card:hover .type-view-link,
.type-card:active .type-view-link {
  opacity: 0.3;
  transform: translateY(-10px);
}
.type-card:hover .type-view-link svg,
.type-card:active .type-view-link svg {
  transform: translateX(5px);
}
.type-actions {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.type-card:hover .type-actions,
.type-card:active .type-actions {
  top: 45%;
  opacity: 1;
}
.vol-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-decoration: none;
}
.vol-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,191,255,0.4);
}
@media (max-width: 768px) {
  .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .types-title {
    font-size: 2.2rem;
  }
  .type-img-wrap {
    height: 250px;
  }
}

/* ── ADDITIONAL MOBILE OVERRIDES FOR SHOWCASE ALIGNMENT ── */
@media (max-width: 768px) {
  .top-flavour-selector {
    top: 15px;
    width: 95vw;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .top-flavour-card {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  /* Lower the bottle and shrink it slightly so it doesn't overlap the top selector */
  .h1-page .showcase-center, .volume-page .showcase-center, .flavours-page .showcase-center {
    top: 55%;
    height: 50vh; 
  }
  
  /* Align the halo exactly with the lowered bottle container */
  .showcase-halo {
    top: 55%; 
  }
  
  /* Align the navigation arrows exactly with the lowered bottle container */
  .showcase-nav-btn {
    top: 55%;
  }
}

/* Fix for heavily cropped pet bottle images - apply to receiver to preserve GSAP transitions on img */
body[data-volume^="pet"] .showcase-bottle-receiver {
  transform: scale(1.3) translateY(-12%);
  transition: transform 0.6s cubic-bezier(.23,1,.32,1);
}



@media (max-width: 768px) {
  .volume-page .showcase-center { height: 55vh !important; top: 45% !important; }
  .volume-page .showcase-layout { height: 100dvh !important; padding-bottom: 80px !important; }
  body[data-volume^="pet"] .showcase-bottle-receiver { transform: scale(1.4) translateY(5%) !important; }
  .volume-page .top-flavour-selector { top: 60px !important; width: 95%; flex-wrap: wrap; justify-content: center; gap: 6px; z-index: 100; }
  .volume-page .top-flavour-card { padding: 6px 10px; font-size: 0.65rem; }
  .volume-page .showcase-nav-btn { top: 45%; width: 40px; height: 40px; }
  .volume-page .showcase-nav-btn.prev-btn { left: 5px; }
  .volume-page .showcase-nav-btn.next-btn { right: 5px; }
  .volume-page .showcase-close { top: 15px; right: 15px; width: 40px; height: 40px; z-index: 200; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
  
  /* Text resizing for smaller clean layout */
  .volume-page .showcase-title { font-size: clamp(1.1rem, 6vw, 1.6rem) !important; margin-bottom: 8px !important; white-space: nowrap; }
  .volume-page .showcase-desc { font-size: 0.85rem !important; line-height: 1.4 !important; max-width: 95%; margin: 0 auto; }
  .volume-page .showcase-tag { font-size: 0.65rem !important; margin-bottom: 6px !important; padding: 4px 10px; }
}

@media (max-width: 768px) { body[data-volume^="glass"] .showcase-bottle-receiver { transform: scale(1.65) translateY(5%) !important; } }

/* ==========================================================================
   DISTRIBUTION PAGE
   ========================================================================== */

.dist-page {
  background: var(--off-white);
}

/* Header */
.dist-header {
  padding: 180px 5vw 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, rgba(10,29,58,0.02) 100%);
}
.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(10,29,58,0.05);
  color: var(--navy);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Map Section */
.map-section {
  padding: 40px 5vw 100px;
  background: var(--off-white);
  overflow: hidden;
}
.map-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.map-3d-wrapper {
  flex: 1.5;
  min-height: 600px;
  position: relative;
  perspective: 1500px;
}
.tn-map-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Sidebar */
.map-sidebar {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.dist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dist-list li {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.dist-list li:last-child {
  border-bottom: none;
}
.dist-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
}

/* Tooltip */
.map-tooltip {
  position: absolute;
  background: #fff;
/* Tooltip */
.map-tooltip {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { 
    display: flex; 
    align-self: center;
    margin: auto 0;
    visibility: visible;
  }
  .nav-cta { display: none; }
  
  .map-container {
    flex-direction: column;
  }
  .map-3d-wrapper {
    height: 550px;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tn-map-svg {
    transform: scale(1.3) translateY(-5%);
  }
  .map-sidebar {
    width: 100%;
  }
  .hud-label-text {
    font-size: 40px !important;
  }
  .html-pin-label {
    padding: 16px 36px !important;
    border-radius: 40px !important;
  }
}

@media (max-width: 768px) {
  .tn-map-svg {
    transform: scale(2.2) translateY(-22%);
  }
  .pin-label text {
    font-size: 16px;
  }
  .hud-label-text {
    font-size: 35px !important;
  }
  .html-pin-label {
    padding: 12px 24px !important;
    border-radius: 40px !important;
  }
}

/* Individual hover colors for each menu item */
.mobile-nav-links li:nth-child(1) { --hover-color: #ffffff; } /* Home */
.mobile-nav-links li:nth-child(2) { --hover-color: #00f0ff; } /* H1 */
.mobile-nav-links li:nth-child(3) { --hover-color: #ff9100; } /* Flavours (Orange) */
.mobile-nav-links li:nth-child(4) { --hover-color: #4ade80; } /* Story (Green) */
.mobile-nav-links li:nth-child(5) { --hover-color: #d946ef; } /* Gallery (Purple) */
.mobile-nav-links li:nth-child(6) { --hover-color: #facc15; } /* Distribution (Yellow) */
.mobile-nav-links li:nth-child(7) { --hover-color: #f43f5e; } /* Contact Us (Red) */

/* Performance Optimizations for Smoother Animations */
#product-showcase, .showcase-bottle-receiver, .showcase-bottle-receiver img, .showcase-layout, #fruit-particles, .showcase-particles {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}
.volume-page {
  overscroll-behavior: none;
}
