/* ================= ENERGY: Flavor-Switcher ================= */
#energy { position: relative; background: var(--w-energy-bg); }
.nrg-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.nrg-bgs { position: absolute; inset: 0; }
.nrg-bg { position: absolute; inset: -10%; opacity: 0; }

.nrg-num {
  position: absolute;
  top: 4vh; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(160px, 30vw, 420px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 247, 255, .13);
  pointer-events: none;
  user-select: none;
}

.nrg-cans { position: absolute; inset: 0; pointer-events: none; }
/* Zentrierung via GSAP (xPercent/yPercent -50), nicht per CSS-translate */
.nrg-can {
  position: absolute;
  left: 50%; top: 47%;
  width: min(30vh, 260px);
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, .6));
  will-change: transform, opacity;
  opacity: 0;
  visibility: hidden;
}

.nrg-copy {
  position: absolute;
  left: 0; right: 0; bottom: 13vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.nrg-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 66px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--nrg-acc, var(--star-cyan));
}
.nrg-line { font-size: clamp(14px, 1.5vw, 18px); color: var(--cream); opacity: .8; max-width: 480px; }

.nrg-dots {
  position: absolute;
  left: 50%; bottom: 6vh;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.nrg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(244, 247, 255, .22);
  transition: background .3s ease, transform .3s ease;
}
.nrg-dot.is-on { background: var(--nrg-acc, var(--star-cyan)); transform: scale(1.4); }

/* ================= SNACKS: horizontale Galerie ================= */
#snacks { position: relative; background: var(--w-snacks-bg); }
.snx-stage {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.snx-track {
  display: flex;
  align-items: stretch;
  height: 100%;
  will-change: transform;
}
.snx-panel {
  position: relative;
  flex: 0 0 auto;
  width: min(62vw, 780px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8vh 4vw;
  overflow: hidden;
}
.snx-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 50% 45%, var(--accent, rgba(255, 138, 61, .16)), transparent 72%);
  opacity: .4;
  pointer-events: none;
}
.snx-intro { width: min(88vw, 1000px); align-items: flex-start; justify-content: center; }
.snx-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(25px, 5.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--cream);
  overflow-wrap: break-word;
  max-width: 100%;
}
.snx-title span { display: block; }
.hl-grad-static {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.snx-sub { margin-top: 26px; font-size: 17px; color: var(--cream); opacity: .7; }

.snx-num {
  position: absolute;
  top: 6vh; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(120px, 22vw, 300px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 247, 255, .14);
  pointer-events: none;
  user-select: none;
}
/* Gleich hohe Bild-Box mit Grundlinie unten — so stehen alle Produkte
   auf einer Linie und die Namen darunter auf gleicher Höhe
   (liegende Salami/Riegel vs. hohe Chips-Tüten). */
.snx-fig {
  position: relative;
  z-index: 2;
  height: min(34vh, 300px);
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.snx-img {
  max-height: 100%;
  max-width: min(52vw, 460px);
  width: auto;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, .55));
  will-change: transform;
}
.snx-name {
  z-index: 2;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 50px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent-solid, var(--w-snacks-acc));
}
.snx-line {
  z-index: 2;
  margin-top: 10px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--cream);
  opacity: .85;
  text-align: center;
  max-width: 340px;
}

/* ================= SAUCEN: Bogen-Showcase ================= */
#saucen { position: relative; background: var(--w-saucen-bg); }
.sau-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sau-heading {
  position: absolute;
  top: 9vh;
  z-index: 6;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 24px;
}
.sau-heading span { display: block; }

.arc-showcase {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  perspective: 1200px;
  perspective-origin: 50% 44%;
  pointer-events: none;
}
.arc-rotor {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.arc-card {
  position: absolute;
  left: -110px; top: -160px;
  width: 220px; height: 320px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03) 55%, rgba(255,82,82,.08));
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
/* Flaschen groß über die Karte hinaus — die realen Broady-Freisteller
   sind sehr schlank (Aspekt ~0.25), sonst wirken sie winzig. */
.arc-card .card-img {
  position: absolute;
  left: 50%; top: -85px;
  width: 210px; height: 335px;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.45));
}
.arc-card .card-index {
  position: absolute;
  left: 18px; bottom: 16px;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--w-saucen-acc);
}
.arc-card.is-back { visibility: hidden; }

.sau-caption {
  position: absolute;
  left: 0; right: 0; bottom: 9vh;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.sau-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--sau-acc, var(--w-saucen-acc));
}
.sau-line { font-size: clamp(14px, 1.5vw, 18px); color: var(--cream); opacity: .8; max-width: 460px; }

/* ================= WASSER & SCHORLE (hell, ohne Pin) ================= */
#wasser {
  position: relative;
  min-height: 130vh;
  background:
    radial-gradient(60% 50% at 78% 20%, rgba(0, 176, 255, .14), transparent 70%),
    radial-gradient(50% 45% at 16% 75%, rgba(174, 213, 129, .22), transparent 70%),
    var(--w-wasser-bg);
  color: var(--w-wasser-ink);
  overflow: hidden;
}
.was-word {
  position: absolute;
  top: 8vh; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(100px, 20vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 42, 60, .12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.was-inner {
  position: relative;
  z-index: 3;
  padding: 24vh 8vw 0;
  max-width: 660px;
}
.was-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.was-sub { margin-top: 18px; font-size: clamp(15px, 1.6vw, 19px); opacity: .75; max-width: 440px; }

.was-bottles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
/* Zentrierung via GSAP (xPercent/yPercent -50), nicht per CSS-translate */
.was-bottle {
  position: absolute;
  filter: drop-shadow(0 30px 40px rgba(10, 42, 60, .3));
  will-change: transform;
}
.was-bottle img { width: 100%; }

.was-drops { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.was-drop {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  background: radial-gradient(60% 60% at 35% 35%, rgba(255,255,255,.9), rgba(0, 176, 255, .35));
  opacity: .5;
}

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .snx-panel { width: 86vw; }
  .snx-intro { width: 94vw; }
  .snx-fig { height: min(28vh, 250px); }
  .arc-card { width: 160px; height: 235px; left: -80px; top: -118px; border-radius: 18px; }
  .arc-card .card-img { width: 150px; height: 255px; top: -60px; }
  .nrg-can { width: min(26vh, 200px); }
  .was-inner { padding-top: 20vh; }
}
