/* ============================================================
   exstase – Energy Drink
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg:            #000000;
  --bg-card:       #0d0d0d;
  --bg-section:    #080808;
  --text:          #ffffff;
  --text-muted:    #888888;
  --accent:        #8bc34a;
  --accent-hover:  #a5d63c;
  --accent-dark:   #5a8a1e;
  --accent-glow:   rgba(139, 195, 74, 0.45);
  --accent-glow2:  rgba(139, 195, 74, 0.15);
  --font-heading:  'Oswald', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --container:     min(1200px, 100% - 2rem);
  --radius:        10px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Accent bar ─────────────────────────────────────────── */
.accent-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent-hover) 60%, transparent 100%);
  z-index: 101;
  animation: accent-slide 3s ease-in-out infinite;
}
@keyframes accent-slide {
  0%   { background-position: -100% 0; opacity: 1; }
  50%  { opacity: 0.8; }
  100% { background-position: 100% 0; opacity: 1; }
}

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.35s ease;
}
.header.scrolled {
  background: rgba(0,0,0,0.95);
  border-bottom-color: rgba(139,195,74,0.15);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: block; line-height: 0; }
.logo img {
  height: clamp(3rem, 8vw, 5rem);
  width: auto;
  transition: filter 0.3s, transform 0.3s;
}
.logo:hover img {
  filter: drop-shadow(0 0 12px var(--accent-glow));
  transform: scale(1.04);
}

.nav { display: none; gap: 2.5rem; }
.nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-btn span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

@media (max-width: 767px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    background: rgba(0,0,0,0.97);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
    gap: 0;
  }
  .nav.nav-open { display: flex; }
  .nav.nav-open a { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1rem; min-height: 44px; display: flex; align-items: center; }
  .nav.nav-open a:last-child { border-bottom: none; }
}
@media (min-width: 768px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
}

/* ── Hero (Desktop: altes Bild, Mobile: Dose+Splash, Dots kombiniert) ─── */
.hero {
  position: relative;
  padding: calc(80px + 3rem) 1.5rem calc(80px + 2rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

/* Desktop: ursprüngliches Hero-Bild */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: 55% center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.72) 100%
  );
}

/* Grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-slides {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(48px);
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.hero-slide.leave {
  transform: translateX(-48px);
  opacity: 0;
}

.hero-slide.active .hero-title  { animation: hero-pop 0.7s cubic-bezier(0.34, 1.45, 0.64, 1) 0.1s both; }
.hero-slide.active .hero-sub    { animation: hero-pop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) 0.28s both; }
.hero-slide.active .btn-primary { animation: hero-pop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) 0.44s both; }
@keyframes hero-pop {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  color: var(--text);
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
}

.hero-accent {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(139,195,74,0.25);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

/* Mobile: Dose + Splash Bild */
@media (max-width: 767px) {
  .hero { padding-top: calc(70px + 1.5rem); padding-bottom: 4rem; }
  .hero-bg {
    background-image: url('images/hero-mobile.png');
    background-size: cover;
    background-position: center 45%;
    animation: none;
    transform: scale(1);
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.35) 35%,
      rgba(0,0,0,0.6) 70%,
      rgba(0,0,0,0.85) 100%
    );
  }
  .hero-content { max-width: 90%; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero-sub { font-size: clamp(0.95rem, 4vw, 1.1rem); margin-bottom: 1.75rem; }
  .hero-nav { bottom: 1.25rem; padding: 0.4rem 0.6rem; }
  .hero-scroll { bottom: 1.25rem; right: 1rem; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 40px var(--accent-glow), 0 0 50px rgba(139,195,74,0.2);
}
.btn:active { transform: translateY(-1px); }

/* Hero nav: drei Punkte als eine kombinierte Leiste */
.hero-nav {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  cursor: pointer;
  margin: 0 0.35rem;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, width 0.25s, box-shadow 0.25s;
}
.hero-dot:hover { border-color: var(--accent); transform: scale(1.15); }
.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 28px;
  border-radius: 6px;
  margin: 0 0.2rem;
  box-shadow: 0 0 16px var(--accent-glow);
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow--prev { left: 1.5rem; }
.hero-arrow--prev::after { transform: rotate(135deg); margin-left: 3px; }
.hero-arrow--next { right: 1.5rem; }
.hero-arrow--next::after { transform: rotate(-45deg); margin-right: 3px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (max-width: 768px) {
  .hero-arrow { width: 44px; height: 44px; left: 0.75rem; }
  .hero-arrow--next { right: 0.75rem; }
  .hero-scroll { display: none; }
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 5rem 0; }
@media (max-width: 600px) { .section { padding: 3.5rem 0; } }
.section--dark { background: var(--bg-section); }
.section--alt { background: #050505; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 3rem;
  color: var(--text);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 2px;
  margin: 1rem auto 0;
  box-shadow: 0 0 14px var(--accent-glow);
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  margin: -2rem 0 2.5rem;
  font-size: 0.9375rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }

/* ── Products ───────────────────────────────────────────── */
.products {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.products-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(139,195,74,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 75%, rgba(139,195,74,0.05) 0%, transparent 70%);
}

.products-head {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.products-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
  padding: 0.3em 1em;
  border: 1px solid rgba(139,195,74,0.3);
  border-radius: 20px;
  background: rgba(139,195,74,0.05);
}

.products-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.products-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.products-sub {
  margin: 0.5rem auto 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 840px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
}
@media (min-width: 900px) {
  .product-grid {
    gap: 0.875rem;
    max-width: 840px;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.4s cubic-bezier(0.34,1.3,0.64,1),
    box-shadow 0.35s;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  border-radius: 14px;
  z-index: 1;
}

.product-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(139,195,74,0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.product-card:hover .product-glow { opacity: 1; }

.product-card:hover {
  border-color: rgba(139,195,74,0.35);
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.4),
    0 0 0 1px rgba(139,195,74,0.18),
    0 0 16px rgba(139,195,74,0.12);
  z-index: 5;
  overflow: visible;
}

.product-card--new {
  border-color: rgba(139,195,74,0.15);
}

.product-img-wrap {
  aspect-ratio: 2/3;
  padding: 0.6rem 0.7rem 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.34,1.3,0.64,1), filter 0.4s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.product-card:hover .product-img-wrap { overflow: visible; }

.product-card:hover .product-img-wrap img {
  transform: scale(1.25) rotate(-6deg) translateY(-3%);
  filter: drop-shadow(0 8px 16px rgba(139,195,74,0.35));
}

.product-img-wrap--eisbonbon img,
.product-img-wrap--dark-bg img {
  mix-blend-mode: screen;
}

.product-img-wrap--dual { position: relative; }
.product-img-wrap--dual .product-img-default,
.product-img-wrap--dual .product-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  object-fit: contain;
}
.product-img-wrap--dual .product-img-hover { opacity: 0; transition: opacity 0.35s; }
.product-card:hover .product-img-wrap--dual .product-img-hover { opacity: 1; }
.product-card:hover .product-img-wrap--dual .product-img-default { opacity: 0; transition: opacity 0.35s; }

.product-info {
  position: relative;
  z-index: 3;
  padding: 0.35rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
  color: var(--text);
  transition: color 0.25s;
  line-height: 1.2;
}

.product-card:hover .product-name { color: var(--accent); }

.product-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

.product-card:hover .product-desc {
  opacity: 1;
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  z-index: 4;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  background: var(--accent);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  line-height: 1.4;
}

.product-badge--new {
  background: linear-gradient(135deg, var(--accent), #a5d63c);
}

/* ── Ice Tea Sektion ───────────────────────────────────── */
.icetea {
  background: linear-gradient(180deg, #080808 0%, #050d12 60%, #080808 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.icetea-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 20% 30%, rgba(30,160,220,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 80% 70%, rgba(251,180,50,0.07) 0%, transparent 70%);
}

.icetea-title {
  background: linear-gradient(135deg, #fff 30%, #fbb432);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icetea-title::after {
  background: linear-gradient(90deg, #fbb432, #f97c10);
}

.icetea-grid {
  max-width: 840px;
}

.icetea-glow {
  background: radial-gradient(ellipse, rgba(251,180,50,0.15) 0%, transparent 70%) !important;
}

/* ── Wasser-Sektion ─────────────────────────────────────────────── */
.wasser {
  background: linear-gradient(180deg, #080808 0%, #04101a 60%, #080808 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.wasser-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 40%, rgba(14,165,233,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 65%, rgba(56,189,248,0.06) 0%, transparent 70%);
}

.wasser-title {
  background: linear-gradient(135deg, #fff 30%, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wasser-title::after {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
}

.wasser-layout {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wasser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  flex: 1;
}

.wasser-trio-wrap {
  flex: 0 0 auto;
  width: 380px;
  display: flex;
}

.wasser-trio-img {
  width: 100%;
  height: 100%;
  border-radius: 1.4rem;
  object-fit: cover;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(56,189,248,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.wasser-trio-img:hover {
  transform: scale(1.02);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(56,189,248,0.2);
}

.wasser-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.wasser-card:hover {
  border-color: rgba(56,189,248,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(56,189,248,0.15);
}

.wasser-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
}

.wasser-card:hover .wasser-card-glow { opacity: 1; }

.wasser-card-glow--still {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(56,189,248,0.1) 0%, transparent 70%);
}

.wasser-card-glow--medium {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(74,222,128,0.1) 0%, transparent 70%);
}

.wasser-card-glow--classic {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(96,165,250,0.1) 0%, transparent 70%);
}

.wasser-card-img-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.wasser-card-img {
  width: 160px;
  max-width: 100%;
  filter: drop-shadow(0 16px 32px rgba(56,189,248,0.2));
  transition: transform 0.4s ease;
}

.wasser-card:hover .wasser-card-img {
  transform: translateY(-8px) scale(1.04);
}

.wasser-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.wasser-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 2rem;
  width: fit-content;
}

.wasser-badge--still {
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.35);
  color: #38bdf8;
}

.wasser-badge--medium {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.35);
  color: #4ade80;
}

.wasser-badge--classic {
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.35);
  color: #60a5fa;
}

.wasser-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wasser-card-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wasser-facts {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wasser-facts li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
}

.wasser-fact-icon {
  font-size: 0.9rem;
  color: #38bdf8;
  flex-shrink: 0;
}


/* ── Wasser responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .wasser-layout { gap: 1.5rem; }
  .wasser-trio-wrap { width: 300px; }
}

@media (max-width: 860px) {
  .wasser-layout { flex-direction: column; }
  .wasser-trio-wrap { width: 100%; max-width: 500px; }
  .wasser-grid { grid-template-columns: repeat(3, 1fr); width: 100%; }
}

@media (max-width: 560px) {
  .wasser-grid { grid-template-columns: 1fr; }
  .wasser-card-img { width: 140px; }
}

.product-card[data-flavor^="xtea"]:hover {
  border-color: rgba(251,180,50,0.4);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.4),
    0 0 0 1px rgba(251,180,50,0.2),
    0 0 16px rgba(251,180,50,0.12);
  transform: translateY(-5px) scale(1.01);
}

.product-card[data-flavor^="xtea"]:hover .product-name {
  color: #fbb432;
}

.product-card[data-flavor^="xtea"]:hover .product-img-wrap img {
  transform: scale(1.25) rotate(-6deg) translateY(-3%);
  filter: drop-shadow(0 8px 18px rgba(251,180,50,0.35));
}

.product-badge--tea {
  background: linear-gradient(135deg, #fbb432, #f97c10);
  color: #fff;
}

/* ── Values (100% exstase) – Hero + Karten ───────────────── */
.values {
  padding: 0;
  background: #000;
}

/* Hero-Bereich mit Event-Bild */
.values-hero {
  position: relative;
  min-height: 42vh;
  min-height: clamp(320px, 42vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.values-hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/values-hero.png') center center / cover no-repeat;
  background-color: #0a0a0a;
}
.values-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.values-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(139,195,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.values-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
}

.values-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.values-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 0.35rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.values-lead {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  margin: 0;
  letter-spacing: 0.06em;
}

/* Karten-Strip unter dem Bild */
.values-cards-wrap {
  padding: 3rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .values-cards-wrap { margin-top: -1.5rem; padding: 2rem 0; }
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.value-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(139,195,74,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s;
}
.value-card:hover {
  border-color: rgba(139,195,74,0.35);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--accent-glow2);
  background: rgba(12,12,18,0.92);
}
.value-card:hover::before { color: rgba(139,195,74,0.12); }

.value-card--accent {
  border-color: rgba(139,195,74,0.2);
  background: rgba(139,195,74,0.04);
}
.value-card--accent:hover {
  border-color: rgba(139,195,74,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px var(--accent-glow2);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(139,195,74,0.12);
  border: 1px solid rgba(139,195,74,0.25);
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
}
.value-card:hover .value-icon {
  background: rgba(139,195,74,0.22);
  box-shadow: 0 0 24px var(--accent-glow2);
  transform: scale(1.08);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.7rem;
  color: var(--accent);
  transition: color 0.25s;
}
.value-card:hover h3 { color: var(--accent-hover); }

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
  transition: color 0.25s;
}
.value-card:hover p { color: rgba(255,255,255,0.75); }

/* ── Videos ─────────────────────────────────────────────── */
.videos {
  background: var(--bg-section);
  position: relative;
}
.videos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,195,74,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,195,74,0.03) 0%, transparent 55%);
  pointer-events: none;
}

/* Header */
.videos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.videos-header .section-title { margin-bottom: 0.2rem; }
.videos-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.videos-badge {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid rgba(139,195,74,0.3);
  background: rgba(139,195,74,0.07);
  padding: 0.3em 0.85em;
  border-radius: 20px;
  align-self: center;
}

/* Featured row: big card left + 2 stacked right */
.video-showcase {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 820px) { .video-showcase { grid-template-columns: 1fr; } }

.video-col-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Bottom row: 3 equal cards */
.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 820px) { .video-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .video-row { grid-template-columns: 1fr; } }

/* Base card */
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #060608;
  cursor: pointer;
  aspect-ratio: 16/9;
  display: block;
}
.video-card--featured { aspect-ratio: 16/10; border-radius: 14px; }
.video-card--side     { aspect-ratio: 16/9; flex: 1; }

/* Background image layer */
.vc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0d0d14;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-card:hover .vc-bg { transform: scale(1.07); }

/* Gradient overlay */
.vc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.75) 100%
  );
  transition: background 0.4s;
}
.video-card:hover .vc-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.82) 100%
  );
}

/* Content body */
.vc-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.25rem;
  gap: 0.5rem;
  z-index: 2;
}
.video-card--featured .vc-body { padding: 1.5rem 1.75rem; }

/* Tag badge */
.vc-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(139,195,74,0.12);
  border: 1px solid rgba(139,195,74,0.25);
  padding: 0.22em 0.7em;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s;
}
.video-card:hover .vc-tag {
  background: rgba(139,195,74,0.2);
  border-color: rgba(139,195,74,0.5);
}

/* Play button */
.vc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, border-color 0.3s, transform 0.35s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.vc-play svg {
  width: 20px; height: 20px;
  margin-left: 3px;
}
.video-card--featured .vc-play { width: 72px; height: 72px; }
.video-card--featured .vc-play svg { width: 26px; height: 26px; }

.video-card:hover .vc-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 30px rgba(139,195,74,0.5), 0 8px 24px rgba(0,0,0,0.5);
}

/* Title */
.vc-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: color 0.25s;
}
.video-card--featured .vc-title { font-size: 1.45rem; }
.video-card:hover .vc-title { color: var(--accent); }

/* Green accent line at bottom on hover */
.video-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-card:hover::after { transform: scaleX(1); }

/* Video-Lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  cursor: pointer;
}
.video-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.video-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.video-lightbox-player {
  position: absolute;
  inset: 0;
}
.video-lightbox-player iframe,
.video-lightbox-player video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Share ──────────────────────────────────────────────── */
.share { position: relative; overflow: hidden; }
.share::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(139,195,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.share-text {
  text-align: center;
  color: var(--text-muted);
  margin: -2rem 0 2rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.social-link:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.social-link--fb  { background: #1877f2; color: #fff; }
.social-link--ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

/* ── Distributors – Globe ───────────────────────────────── */
.map-section {
  background: radial-gradient(ellipse at 50% 50%, #06080f 0%, #02020a 60%, #000 100%);
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at  8% 15%, rgba(255,255,255,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 22% 38%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 8%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 22%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 55%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 68%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 42% 85%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 18% 72%, rgba(255,255,255,0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at  5% 60%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 48%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 65%, rgba(255,255,255,0.2)  0%, transparent 100%);
}


.map-section .section-title { margin-bottom: 0.25rem; }
.map-section .section-intro { margin: 0.25rem 0 0; font-size: 0.875rem; }

/* Globe + List side-by-side layout */
.globe-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}
@media (max-width: 1000px) {
  .globe-layout { grid-template-columns: 1fr; justify-items: center; }
}

.globe-canvas-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: sticky;
  top: 90px;
}

#globe-canvas {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  display: block;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  filter:
    drop-shadow(0 0 18px rgba(40,130,210,0.25))
    drop-shadow(0 16px 40px rgba(0,0,0,0.70));
}

.globe-controls {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
}

.globe-zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(8,8,14,0.8);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
  backdrop-filter: blur(4px);
  user-select: none;
}
.globe-zoom-btn:hover {
  border-color: var(--accent);
  background: rgba(139,195,74,0.12);
  color: var(--accent);
  transform: scale(1.1);
}
.globe-zoom-btn:active { transform: scale(0.93); }

.globe-hint {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.18);
  text-align: center;
  margin: 0;
}

/* Distributor list panel */
.dist-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
  max-width: 520px;
}
@media (max-width: 1000px) { .dist-list-wrap { max-width: 520px; } }

.dist-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}

.dist-count {
  font-size: 0.68rem;
  color: var(--accent);
  background: rgba(139,195,74,0.1);
  border: 1px solid rgba(139,195,74,0.22);
  padding: 0.18em 0.65em;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.dist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 370px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139,195,74,0.25) transparent;
}
.dist-list::-webkit-scrollbar { width: 3px; }
.dist-list::-webkit-scrollbar-track { background: transparent; }
.dist-list::-webkit-scrollbar-thumb {
  background: rgba(139,195,74,0.3);
  border-radius: 2px;
}

.dist-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid transparent;
  border-radius: 8px;
  background: rgba(8,8,14,0.7);
  cursor: default;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.dist-list-item:hover,
.dist-list-item.active {
  border-color: rgba(139,195,74,0.25);
  border-left-color: var(--accent);
  background: rgba(139,195,74,0.06);
  transform: translateX(4px);
}

.dist-logo-icon {
  width: 46px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.22s, filter 0.22s;
}
.dist-list-item:hover .dist-logo-icon,
.dist-list-item.active .dist-logo-icon {
  filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(-40deg);
  opacity: 1;
}

.dist-info { flex: 1; min-width: 0; }
.dist-info h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin: 0 0 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dist-flag { font-size: 0.9rem; flex-shrink: 0; }
.dist-info strong {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dist-info p {
  font-size: 0.71rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA am unteren Ende der Liste */
.dist-cta-btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px var(--accent-glow);
}
.dist-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px var(--accent-glow);
}

.map-popup {
  max-width: 300px;
  width: 90%;
  padding: 1rem 1.5rem;
  background: rgba(4, 4, 8, 0.97);
  border: 1px solid rgba(139,195,74,0.3);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(139,195,74,0.06) inset;
  text-align: center;
  backdrop-filter: blur(20px);
  animation: popup-fade 0.22s ease both;
}
@keyframes popup-fade {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.map-popup[hidden] { display: none !important; }
.map-popup-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.4rem;
  color: var(--accent);
}
.map-popup-info {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #020202;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.footer-logo {
  height: clamp(2rem, 5vw, 3rem);
  width: auto;
  display: block;
  margin: 0 auto 1rem;
  transition: filter 0.3s, transform 0.3s;
}
.footer-logo:hover {
  filter: drop-shadow(0 0 10px var(--accent-glow));
  transform: scale(1.07);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

/* ═══════════════════════════════════════════
   Mobile Optimierung – max-width: 600px
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Container */
  .container { --container: 100%; padding-inline: 1rem; }

  /* Produkt-Kopf */
  .products-head { margin-bottom: 1.75rem; }
  .products-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .products-sub { font-size: 0.875rem; }

  /* Produktkarten */
  .product-img-wrap { padding: 0.4rem 0.5rem 0.25rem; }
  .product-info { padding: 0.3rem 0.4rem 0.4rem; gap: 0.1rem; }
  .product-name { font-size: 0.65rem; letter-spacing: 0.04em; }
  .product-desc { font-size: 0.6rem; line-height: 1.35; }
  .product-badge { font-size: 0.45rem; padding: 0.15em 0.4em; top: 0.25rem; left: 0.25rem; }
  .product-card { border-radius: 10px; }
  .product-card:hover { transform: translateY(-4px) scale(1.01); }

  /* Ice Tea */
  .icetea { padding: 3rem 0 4rem; }
  .icetea-grid { gap: 0.5rem; }

  /* Hero-Dots vergrößern für Touch */
  .hero-dot { width: 8px; height: 8px; margin: 0 0.3rem; }
  .hero-dot.active { width: 22px; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow--prev { left: 0.5rem; }
  .hero-arrow--next { right: 0.5rem; }

  /* Footer */
  .footer { padding: 2rem 1rem 1.5rem; text-align: center; }
  .footer-links { gap: 1.25rem; flex-wrap: wrap; }
  .footer-links a { font-size: 0.75rem; min-height: 44px; display: flex; align-items: center; }
  .footer-copy { font-size: 0.75rem; }

  /* Values-Sektion */
  .values-cards { grid-template-columns: 1fr; }

  /* Section-Titel */
  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); letter-spacing: 0.08em; }

  /* Weltkugel ausblenden */
  .globe-canvas-wrap { display: none; }
  .globe-layout { display: block; }
}

/* ── Kein Bild-Zoom auf Touch-Geräten ─────────────────── */
@media (hover: none) {
  .product-card:hover .product-img-wrap img { transform: none; filter: none; }
  .product-card[data-flavor^="xtea"]:hover .product-img-wrap img { transform: none; filter: none; }
  .product-desc { opacity: 1; transform: none; }
}
