/* ================================================
   PHOENIIX BEVERAGES — style.css
   ================================================ */

/* ---- Variables ---- */
:root {
  --red:        #C93510;
  --bg:         #f7f5f2;
  --bg-2:       #eeecea;
  --bg-3:       #ffffff;
  --ink:        #0f0f0f;
  --ink-60:     rgba(15, 15, 15, 0.55);
  --ink-30:     rgba(15, 15, 15, 0.28);
  --ink-08:     rgba(15, 15, 15, 0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff7a1a;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: #ff7a1a;
  box-shadow: 0 8px 32px rgba(232, 101, 10, 0.45);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--ink-60);
  border: 1px solid rgba(15,15,15,0.2);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: rgba(15,15,15,0.5);
  background: rgba(15,15,15,0.05);
}

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 56px;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(15,15,15,0.08);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__icon    { height: 50px; width: auto; }
.nav__wordmark { height: 40px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover,
.nav__link.active { color: var(--ink); }
.nav__link.active::after,
.nav__link:hover::after { transform: scaleX(1); }

/* Light nav variant — for dark hero pages */
.nav--light .nav__link { color: rgba(255,255,255,0.7); }
.nav--light .nav__link:hover,
.nav--light .nav__link.active { color: #fff; }
.nav--light.scrolled .nav__link { color: var(--ink-60); }
.nav--light.scrolled .nav__link:hover,
.nav--light.scrolled .nav__link.active { color: var(--ink); }

/* Inside the open mobile overlay, links must always be white regardless of scroll */
.nav--light .nav__menu.open .nav__link { color: rgba(255,255,255,0.75); }
.nav--light .nav__menu.open .nav__link:hover,
.nav--light .nav__menu.open .nav__link.active { color: #fff; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10000;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh; height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 56px 60px;
  overflow: hidden;
}

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

/* Ambient color orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  transition: background 0.8s ease;
}
.hero__orb--1 {
  width: 650px; height: 650px;
  background: rgba(232, 41, 28, 0.12);
  top: -150px; right: -80px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(245, 158, 11, 0.1);
  bottom: -100px; left: 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
}
.hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.05s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 112px);
  line-height: 0.87;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.15s; }
.hero__title-line:nth-child(2) { animation-delay: 0.25s; color: var(--red); }

.hero__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 420px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.5s forwards;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual — bottle + glow */
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Hero slideshow */
.hero__slideshow {
  position: relative;
  width: clamp(280px, 42vw, 620px);
  height: clamp(320px, 65vh, 640px);
  animation: floatUp 0.9s var(--ease-out) 0.3s both;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero__slide--active {
  opacity: 1;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* ================================================
   FLAVOURS
   ================================================ */
.flavours {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  align-items: center;
  min-height: 100vh; min-height: 100dvh;
  background: var(--bg-2);
  overflow: hidden;
}
.flavours__left {
  padding: 80px 48px 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flavours__center {
  position: relative;
  height: 100%;
  min-height: 100vh; min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flavours__thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 16px 40px 0;
}
.thumb {
  width: 40px;
  height: 64px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), opacity 0.35s;
  opacity: 0.35;
  position: relative;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
.thumb::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--carousel-color, var(--red));
  transition: transform 0.3s var(--ease-out);
}
.thumb:hover {
  opacity: 0.6;
  transform: translateY(-4px);
}
.thumb.active {
  opacity: 1;
  transform: scale(1.18) translateY(-4px);
}
.thumb.active::after {
  transform: translateX(-50%) scaleX(1);
}
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--ink-60);
}

/* ================================================
   SHOWCASE (Spotlight Switcher)
   ================================================ */

/* Center bottle showcase */
.showcase {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh; min-height: 100dvh;
  overflow: hidden;
}

/* Morphing color blob behind the bottle */
.showcase__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #F59E0B 0%, transparent 70%);
  opacity: 0.22;
  filter: blur(60px);
  transition: background 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

/* Each bottle slide */
.showcase__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.showcase__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.showcase__slide.active img {
  animation: bottleFloat 4s ease-in-out infinite;
}

/* Enter animations */
.showcase__slide.enter-up {
  animation: enterUp 0.75s var(--ease-out) forwards;
}
.showcase__slide.enter-down {
  animation: enterDown 0.75s var(--ease-out) forwards;
}

/* Exit animations */
.showcase__slide.exit-up {
  animation: exitUp 0.45s ease-in forwards;
}
.showcase__slide.exit-down {
  animation: exitDown 0.45s ease-in forwards;
}

@keyframes enterUp {
  from { opacity: 0; transform: translateY(80px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes enterDown {
  from { opacity: 0; transform: translateY(-80px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0)     scale(1); }
}
@keyframes exitUp {
  from { opacity: 1; transform: translateY(0)    scale(1); }
  to   { opacity: 0; transform: translateY(-60px) scale(0.92); }
}
@keyframes exitDown {
  from { opacity: 1; transform: translateY(0)   scale(1); }
  to   { opacity: 0; transform: translateY(60px) scale(0.92); }
}

.showcase__slide img {
  height: clamp(400px, 72vh, 680px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.15));
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-16px) scale(1); }
}

/* Label on left panel */
.carousel__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.carousel__label-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}
.carousel__label-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--carousel-color, var(--red));
  transition: opacity 0.2s ease, color 0.5s;
}

/* Controls */
.carousel__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(15,15,15,0.14);
  background: var(--bg-3);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.carousel__btn:hover {
  border-color: var(--carousel-color, var(--red));
  color: var(--carousel-color, var(--red));
  transform: scale(1.08);
}
/* ================================================
   STATEMENT
   ================================================ */
.statement {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  padding: 80px 56px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,41,28,0.07) 0%, transparent 70%);
}
.statement__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 180px);
  color: rgba(15,15,15,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}
.statement__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 740px;
  margin: 0 auto;
}
.statement__logo {
  width: 68px;
  filter: drop-shadow(0 8px 32px rgba(232, 41, 28, 0.35));
}
.statement__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
}
.statement__heading em {
  font-style: italic;
  color: var(--red);
  font-family: Georgia, 'Times New Roman', serif;
}
.statement__body {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.78;
  max-width: 500px;
}

/* ================================================
   GOLI SODA TEASER
   ================================================ */
.goli-teaser {
  background: var(--red);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%);
  padding: 5rem 0 3rem;
  overflow: hidden;
  text-align: center;
}
.goli-teaser__header {
  padding: 0 7% 3rem;
}
.goli-teaser__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.goli-teaser__heading {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 130px);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.02em;
}
.goli-teaser__sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.goli-teaser__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 1rem 0;
}
.goli-teaser__marquee-wrap::before,
.goli-teaser__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.goli-teaser__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--red), transparent);
}
.goli-teaser__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--red), transparent);
}
.goli-teaser__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  padding: 1rem 0;
}
.goli-teaser__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1.5rem 0;
  margin: 0 0.5rem;
  background: transparent;
  position: relative;
  min-width: 110px;
  transition: transform 0.35s var(--ease-out);
}
.goli-teaser__item:hover { transform: translateY(-10px); }
.goli-teaser__item::before {
  content: '';
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 36px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}
.goli-teaser__item img {
  height: 170px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform: rotate(-10deg) translateX(-4px);
  transition: transform 0.35s var(--ease-out);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}
.goli-teaser__item:hover img {
  transform: rotate(-4deg) translateY(-8px) scale(1.06);
}
.goli-teaser__item span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

.goli-teaser__footer {
  margin-top: 2.5rem;
}
.goli-teaser__footer .btn--primary {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.goli-teaser__footer .btn--primary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

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

/* ================================================
   PRODUCTS PAGE
   ================================================ */
.products-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 62vh;
  padding: 8rem 7% 4rem;
  background: var(--bg);
  overflow: hidden;
  gap: 2rem;
}
.products-hero .hero__noise,
.products-hero .hero__orb { z-index: 0; }
.products-hero__text,
.products-hero__visual { position: relative; z-index: 1; }
.products-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.products-hero__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.products-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
  color: var(--ink);
}
.products-hero__sub {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.7;
}
.products-hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.products-hero__img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.1));
}

.products-section {
  padding: 4rem 7%;
  background: var(--bg);
}
.products-section + .products-section {
  background: var(--bg-2);
}
.products-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--ink-08);
  padding-bottom: 1.25rem;
}
.products-section__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
}
.products-section__count {
  font-size: 0.78rem;
  color: var(--ink-60);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
}
.products-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.products-grid--centered .product-card {
  width: 160px;
  flex-shrink: 0;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 1.5rem 1rem 1rem;
  background: var(--bg-3);
  border-radius: 16px;
  border: 1px solid var(--ink-08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: default;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.product-card img {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-out);
}
.product-card:hover img { transform: scale(1.06); }
.product-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ================================================
   PRODUCT MODAL
   ================================================ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #f7f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
}
.product-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.05);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.product-modal__close:hover { background: rgba(0,0,0,0.1); }
.product-modal__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}
.product-modal__img-wrap {
  flex: 1;
  background: rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.product-modal__img {
  max-height: 80vh;
  max-height: 80dvh;
  max-width: 100%;
  object-fit: contain;
  animation: modalImgIn 0.35s var(--ease-out);
}
@keyframes modalImgIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.product-modal__info {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  gap: 1rem;
}
.product-modal__series {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.product-modal__name {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 112px);
  color: var(--ink);
  line-height: 0.88;
}
.product-modal__divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.product-modal__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.product-modal__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.product-modal__btn:hover {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.4);
}
@media (max-width: 680px) {
  .product-modal__inner { flex-direction: column; }
  .product-modal__img-wrap { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 3rem 2rem 2rem; flex: none; }
  .product-modal__img { max-height: 45vh; max-height: 45dvh; }
  .product-modal__info { flex: none; padding: 2rem 2rem 3rem; gap: 0.75rem; }
  .product-modal__name { font-size: clamp(40px, 12vw, 72px); }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(15,15,15,0.08);
  padding: 72px 56px 36px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(15,15,15,0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer__logo    { width: 96px; flex-shrink: 0; }
.footer__wordmark { height: 80px; width: auto; }
.footer__beverages {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a {
  font-size: 0.82rem;
  color: var(--ink-60);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--ink); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--ink-60);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--ink); }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red) !important;
  font-weight: 600;
  margin-top: 4px;
}
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__legal,
.footer__copy {
  font-size: 0.68rem;
  color: rgba(15,15,15,0.35);
  letter-spacing: 0.04em;
}

/* ================================================
   AD VIDEO SECTION
   ================================================ */
.ad-video {
  background: var(--red);
  height: 100vh; height: 100dvh;
  padding: 2rem 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}
.ad-video__inner {
  text-align: center;
  flex-shrink: 0;
}
.ad-video__inner .section-label {
  color: rgba(255,255,255,0.7);
}
.ad-video__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  line-height: 0.95;
  margin-top: 8px;
}
.ad-video__wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.ad-video__carousel {
  position: relative;
  height: calc(100vh - 130px);
  height: calc(100dvh - 130px);
  width: calc((100vh - 130px) * 9 / 16);
  width: calc((100dvh - 130px) * 9 / 16);
  max-width: 70vw;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.ad-video__track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}
.ad-video__frame {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}
.ad-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ad-video__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ad-video__btn:hover { background: rgba(255,255,255,0.35); }
.ad-video__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.ad-video__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.ad-video__dot--active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .ad-video__wrap { gap: 10px; }
  .ad-video__btn { width: 36px; height: 36px; }
}

/* ================================================
   CONNECT SECTION
   ================================================ */
.connect {
  padding: 6rem 7%;
  background: var(--red);
  text-align: center;
}
.connect__inner { margin-bottom: 2.5rem; }
.connect__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  color: #fff;
  margin-top: 10px;
}
.connect__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.connect__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  color: #fff;
  transition: gap 0.25s var(--ease-out), opacity 0.25s;
}
.connect__row:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.connect__row:hover { gap: 1.6rem; opacity: 0.85; }
.connect__row-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.connect__row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.connect__row-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.connect__row-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connect__row-arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.25s, transform 0.25s;
}
.connect__row:hover .connect__row-arrow {
  opacity: 1;
  transform: translateX(4px);
}
@media (max-width: 960px) {
  .connect { padding: 4rem 24px; }
}
@media (max-width: 480px) {
  .connect__row-value { font-size: 0.95rem; }
}

/* ================================================
   WHATSAPP FLOAT BUTTON
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 5000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.55);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ================================================
   RESPONSIVE
   ================================================ */

/* Prevent horizontal scroll on all devices */
html { overflow-x: hidden; }

/* Light nav — white hamburger bars on dark hero (about page) */
.nav--light .nav__hamburger span { background: #fff; }
.nav--light.scrolled .nav__hamburger span { background: var(--ink); }

/* When mobile menu is open — remove backdrop-filter so the fixed overlay covers the full viewport */
.nav.menu-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border-color: transparent !important;
}

@media (max-width: 960px) {

  /* ---- Nav ---- */
  .nav { padding: 16px 24px; }
  .nav__menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh; height: 100dvh;
    background: rgba(247,245,242,0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 9999;
  }
  .nav--light .nav__menu { background: rgba(10,10,10,0.98); }
  .nav__menu.open { display: flex; }
  .nav__link { font-size: 1.1rem; letter-spacing: 0.15em; }
  .nav__hamburger { display: flex; }

  /* ---- Hero ---- */
  .hero {
    height: auto;
    min-height: 100vh; min-height: 100dvh;
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    text-align: center;
    justify-items: center;
  }
  .hero__title { align-items: center; }
  .hero__desc { text-align: center; margin: 0 auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { margin-top: 40px; }
  .hero__slideshow { width: clamp(200px, 60vw, 320px); height: clamp(240px, 50vw, 380px); }
  .hero__orb--1 { width: 400px; height: 400px; }
  .hero__orb--2 { width: 260px; height: 260px; }

  /* ---- Flavours ---- */
  .flavours { grid-template-columns: 1fr; min-height: auto; }
  .flavours__left { padding: 60px 24px 32px; }
  .flavours__center { min-height: 340px; }
  .showcase { min-height: 340px; }
  .showcase__slide img { height: clamp(240px, 50vw, 360px); }
  .flavours__thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 24px 40px;
    justify-content: center;
    gap: 12px;
  }

  /* ---- Goli Soda Teaser ---- */
  .goli-teaser { padding: 4rem 0 2.5rem; }
  .goli-teaser__header { padding: 0 5% 2rem; }
  .goli-teaser__item { min-width: 100px; padding: 1rem 0.75rem 0.75rem; }
  .goli-teaser__item img { height: 120px; }
  .goli-teaser__marquee-wrap::before,
  .goli-teaser__marquee-wrap::after { width: 80px; }

  /* ---- Statement ---- */
  .statement { padding: 80px 24px; }
  .statement__bg-text { font-size: clamp(60px, 13vw, 180px); }

  /* ---- About page ---- */
  .story__inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    direction: ltr !important;
  }
  .story__inner--reverse > * { direction: ltr; }
  .story { padding: 4rem 24px; }
  .story__fade-visual { gap: 0.75rem; }
  .story__fade-bottle img { height: 160px !important; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stats { padding: 3.5rem 24px; }
  .mission { padding: 4rem 24px; }
  .mission__bg-text { font-size: clamp(60px, 14vw, 200px); }

  /* ---- Products page ---- */
  .products-hero {
    grid-template-columns: 1fr;
    padding: 7rem 24px 3rem;
    text-align: center;
    min-height: auto;
  }
  .products-hero__text { align-items: center; }
  .products-hero__sub { text-align: center; }
  .products-hero__visual { justify-content: center; margin-top: 2rem; }
  .products-hero__img { max-width: 260px; }
  .products-section { padding: 3rem 24px; }
  .products-section__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; }
  .products-grid--centered .product-card { width: 140px; }

  /* ---- Contact page ---- */
  .contact-body { grid-template-columns: 1fr; }
  .contact-info { padding: 3rem 24px; }
  .contact-map iframe { min-height: 380px; }
  .contact-map__badge { font-size: 0.8rem; padding: 0.75rem 1rem; white-space: normal; max-width: 90%; }

  /* ---- Footer ---- */
  .footer { padding: 56px 24px 28px; }
  .footer__top { flex-direction: column; gap: 36px; align-items: center; }
  .footer__nav { align-items: center; }
  .footer__contact { align-items: center; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__contact a { word-break: break-word; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(52px, 16vw, 72px); }
  .goli-teaser__heading { font-size: clamp(44px, 14vw, 72px); }
  .goli-teaser__item { min-width: 80px; }
  .goli-teaser__item img { height: 100px; }
  .goli-teaser__marquee-wrap::before,
  .goli-teaser__marquee-wrap::after { width: 48px; }
  .stats__grid { grid-template-columns: 1fr; max-width: 240px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .products-grid--centered { gap: 1rem; }
  .products-grid--centered .product-card { width: 130px; }
  .contact-map__badge { flex-direction: column; text-align: center; gap: 8px; }
  .story__quote-card { padding: 2rem 1.5rem; }
  .flavours__thumbs { gap: 8px; }
  .thumb { width: 32px; height: 50px; }
  .story__fade-bottle img { height: 130px !important; }
  .footer__contact a { font-size: 0.75rem; }
  .btn { padding: 13px 24px; font-size: 0.74rem; }
}
