/** Shopify CDN: Minification failed

Line 1680:3 Unexpected "="

**/
/* ── Globale Skalierung: Produktseiten ×1.18 ── */
html { font-size: 118% !important; }

/* ============================================================
   VBG PRODUCT PAGE CSS
   Abhängigkeit: vbg-tokens.css + vbg-global.css
   Eingebunden in: layout/theme.liquid NACH vbg-global.css

   Inhalt:
   0.  Section Resets
   1.  Utility Classes
   2.  Preise & Varianten
   3.  Scroll Reveal
   4.  Vergleich (Vorher/Nachher + Kosten)
   5.  Listen
   6.  Zeitplan
   7.  Dosierung
   8.  Kräuter Animation (INGA v4)
   9.  Kombi-Produkte
   10. Kontakt
   11. Lightbox
   ============================================================ */


/* ============================================================
   0. SECTION RESETS
   Entkoppelt HTML-Tags innerhalb bestimmter Sections
   von den globalen Tag-Styles in vbg-global.css.
   Danach greifen nur noch die jeweiligen Klassen-Styles.
   ============================================================ */

.vbg-inga-section h1,
.vbg-inga-section h2,
.vbg-inga-section h3,
.vbg-inga-section h4 {
  margin-top: unset;
  font-family: unset;
  font-weight: unset;
  line-height: unset;
  letter-spacing: unset;
  color: unset;
}

.vbg-inga-section p {
  font-family: unset;
  font-size: unset;
  font-weight: unset;
  line-height: unset;
  color: unset;
  margin-bottom: unset;
}

.vbg-inga-section em {
  font-style: unset;
  color: unset;
}

.vbg-inga-section a {
  font-family: unset;
  color: unset;
  text-decoration: unset;
  transition: unset;
}


/* ============================================================
   1. UTILITY CLASSES
   ============================================================ */

.vbg-text-center { text-align: center; }

.vbg-mb-16 { margin-bottom: 16px; }
.vbg-mb-40 { margin-bottom: 40px; }
.vbg-mb-48 { margin-bottom: 48px; }

.vbg-order-first { order: -1; }
.vbg-order-last  { order: 1; }

.vbg-stars {
  color: var(--vbg-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.vbg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--vbg-radius-lg);
}


/* ============================================================
   2. PREISE & VARIANTEN
   ============================================================ */

.vbg-price {
  font-family: var(--vbg-ff-display);
  font-weight: var(--vbg-fw-light);
  color: var(--vbg-forest);
}

.vbg-price-large {
  font-size: 2.2rem;
  line-height: 1;
}

.vbg-price-strike {
  font-family: var(--vbg-ff-body);
  font-size: 1rem;
  color: #c0392b;
  text-decoration: line-through;
  margin-left: 10px;
  opacity: 0.7;
}

.vbg-variant-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 600px) {
  .vbg-variant-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  /* Auf Mobile nur die ersten 3 Varianten zeigen, Rest hinter Toggle */
  .vbg-variant-pills:not(.is-expanded) .vbg-variant-pill:nth-child(n+4) {
    display: none;
  }
  /* Kompakter padding/font-size für 3-Spalten + Overflow-Schutz.
     Kein overflow:hidden auf der Pill selbst, sonst wird das Badge (top:-8px) geclippt. */
  .vbg-variant-pill {
    padding: 14px 6px 10px;
    min-width: 0;
  }
  .vbg-variant-pill-qty   { font-size: 0.85rem; overflow-wrap: anywhere; }
  .vbg-variant-pill-sub   { font-size: 0.62rem; line-height: 1.25; margin-top: 3px; overflow-wrap: anywhere; hyphens: auto; }
  .vbg-variant-pill-badge { font-size: 0.5rem; padding: 2px 6px; top: -8px; max-width: calc(100% - 8px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  /* Save + Ship-Label aus den Pills entfernen — Info erscheint im Preis-Meta unter den Pills.
     Spart Breite, sodass 3 Spalten auf 360px+ Mobile-Viewports passen. */
  .vbg-variant-pill-save,
  .vbg-variant-pill-ship { display: none; }
}

/* Toggle-Button "Weitere Varianten" — nur auf Mobile sichtbar */
.vbg-variant-toggle {
  display: none;
}
@media (max-width: 600px) {
  .vbg-variant-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px dashed rgba(44, 95, 63, 0.35);
    border-radius: 10px;
    background: transparent;
    font-family: var(--vbg-ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--vbg-forest);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .vbg-variant-toggle:hover,
  .vbg-variant-toggle:focus-visible {
    background: rgba(44, 95, 63, 0.06);
    border-color: var(--vbg-forest);
    outline: none;
  }
  .vbg-variant-toggle__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}

.vbg-variant-pill {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 16px 14px 14px;
  border-radius: 14px;
  border: 1.5px solid var(--vbg-sand);
  background: var(--vbg-white);
  font-family: var(--vbg-ff-body);
  cursor: pointer; text-align: left;
  width: 100%; min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.vbg-variant-pill:hover {
  border-color: var(--vbg-forest);
  box-shadow: 0 2px 12px rgba(26,61,43,0.1);
}
.vbg-variant-pill.active {
  border-color: var(--vbg-forest);
  border-width: 2.5px;
  background: #eef4f0;
  box-shadow: 0 2px 10px rgba(26,61,43,0.08);
}
.vbg-variant-pill:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Letzte drei Pills = Grossgebinde / Profi-Varianten — dezenter Gold-Akzent.
   Text bleibt in Forest/Ink fuer gute Lesbarkeit, nur Border + Badge in Gold. */
.vbg-variant-pills .vbg-variant-pill:nth-last-child(-n+3) {
  border-color: rgba(168, 128, 42, 0.4);
  background: var(--vbg-white);
}
.vbg-variant-pills .vbg-variant-pill:nth-last-child(-n+3):hover {
  border-color: var(--vbg-gold-deep, #a8802a);
  box-shadow: 0 2px 12px rgba(168, 128, 42, 0.12);
}
.vbg-variant-pills .vbg-variant-pill:nth-last-child(-n+3).active {
  border-color: var(--vbg-forest);
  border-width: 2.5px;
  background: #eef4f0;
  box-shadow: 0 2px 10px rgba(26, 61, 43, 0.08);
}
.vbg-variant-pills .vbg-variant-pill:nth-last-child(-n+3) .vbg-variant-pill-badge {
  background: #f3e8ce;
  color: #6b5210;
  border-color: rgba(168, 128, 42, 0.4);
}

/* Badge "Bestes Angebot" */
.vbg-variant-pill-badge {
  position: absolute;
  top: -9px; left: 50%; transform: translateX(-50%);
  background: #e8efe6;
  color: var(--vbg-forest);
  border: 1px solid rgba(44, 95, 63, 0.2);
  font-size: 0.56rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px;
  white-space: nowrap;
}

/* Badge "1 Flasche" / "1 Beutel" — dezent grau */
.vbg-variant-pill-badge--single {
  background: #ececec;
  color: #6b6b6b;
  border-color: rgba(0, 0, 0, 0.10);
}

/* Menge / Titel */
.vbg-variant-pill-qty {
  font-size: 0.92rem; font-weight: 700;
  color: var(--vbg-forest);
  display: block; line-height: 1.2;
}
.vbg-variant-pill.active .vbg-variant-pill-qty { color: var(--vbg-forest); }

/* Preis */
.vbg-variant-pill-price {
  font-size: 1rem; font-weight: 600;
  color: var(--vbg-ink);
  display: block; margin-top: 6px;
}
.vbg-variant-pill.active .vbg-variant-pill-price { color: var(--vbg-ink); }

/* Subtitle — plain text, no pill */
.vbg-variant-pill-sub {
  display: block; margin-top: 4px;
  font-size: 0.68rem; font-weight: 400;
  color: var(--vbg-warm-gray);
  line-height: 1.3;
}
.vbg-variant-pill.active .vbg-variant-pill-sub {
  color: var(--vbg-warm-gray);
}

/* Rabatt-Badge */
.vbg-variant-pill-discount {
  display: inline-block; margin-top: 5px;
  font-size: 0.66rem; font-weight: 800;
  color: var(--vbg-gold-dark);
  background: rgba(184,134,11,0.1);
  padding: 2px 7px; border-radius: 100px;
}
.vbg-variant-pill.active .vbg-variant-pill-discount {
  background: rgba(201,151,58,0.22);
  color: var(--vbg-gold-lt);
}

/* Spare X€ */
.vbg-variant-pill-save {
  display: block; margin-top: 5px;
  font-size: 0.7rem; font-weight: 700;
  color: #c0392b;
}
.vbg-variant-pill.active .vbg-variant-pill-save { color: #c0392b; }

/* Versandhinweis */
.vbg-variant-pill-ship {
  display: block; margin-top: 5px;
  font-size: 0.66rem; font-weight: 400;
  color: var(--vbg-forest);
}
.vbg-variant-pill.active .vbg-variant-pill-ship { color: var(--vbg-forest); }

.vbg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


/* ============================================================
   3. SCROLL REVEAL
   ============================================================ */

.vbg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.vbg-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vbg-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.vbg-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vbg-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
[data-delay="1"] { transition-delay: 0.05s; }
[data-delay="2"] { transition-delay: 0.10s; }
[data-delay="3"] { transition-delay: 0.15s; }
[data-delay="4"] { transition-delay: 0.20s; }
[data-delay="5"] { transition-delay: 0.25s; }
[data-delay="6"] { transition-delay: 0.30s; }


/* ============================================================
   4. VERGLEICH (Vorher/Nachher + Kosten)
   ============================================================ */

.vbg-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.vbg-comp-col {
  border-radius: var(--vbg-radius-xl);
  padding: 32px;
}

.vbg-comp-col-bad {
  background: #fff5f5;
  border: 1px solid #f5c6c6;
}

.vbg-comp-col-good {
  background: #f2f8f4;
  border: 1px solid #b8dfc4;
}

.vbg-comp-title {
  font-family: var(--vbg-ff-display);
  font-size: 1.4rem;
  font-weight: var(--vbg-fw-light);
  color: var(--vbg-forest);
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .vbg-comparison {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   5. LISTEN
   ============================================================ */

.vbg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vbg-list li {
  font-family: var(--vbg-ff-body);
  font-size: 0.95rem;
  font-weight: var(--vbg-fw-light);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  color: var(--vbg-warm-gray);
}

.vbg-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* Checkmarks (grün) – .vbg-list-green ist ein Alias */
.vbg-list-check li::before,
.vbg-list-green li::before {
  content: '✓';
  color: var(--vbg-sage);
  font-weight: 700;
}

/* Rote X */
.vbg-list-red li::before {
  content: '✗';
  color: var(--vbg-red);
  font-weight: 700;
}


/* ============================================================
   6. ZEITPLAN
   ============================================================ */

/* Zeitplan-Styles leben jetzt vollständig in sections/vbg-zpp-zeitplan.liquid */


/* ============================================================
   7. DOSIERUNG
   ============================================================ */

.vbg-dosage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.vbg-dosage-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--vbg-radius-xl);
  padding: 24px 20px;
  cursor: pointer;
  transition: var(--vbg-transition-card);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vbg-dosage-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.vbg-dosage-card-highlight {
  border-color: var(--vbg-gold);
  background: rgba(201, 151, 58, 0.1);
}

.vbg-dosage-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vbg-gold);
  color: var(--vbg-forest);
  font-family: var(--vbg-ff-body);
  font-size: 0.65rem;
  font-weight: var(--vbg-fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--vbg-radius-full);
  white-space: nowrap;
}

.vbg-dosage-weight {
  font-family: var(--vbg-ff-display);
  font-size: 1.2rem;
  font-weight: var(--vbg-fw-light);
  color: var(--vbg-cream);
  line-height: 1.2;
}

.vbg-dosage-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--vbg-ff-body);
  font-size: 0.88rem;
  color: var(--vbg-cream);
  font-weight: var(--vbg-fw-light);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vbg-dosage-detail span {
  font-size: 0.72rem;
  font-weight: var(--vbg-fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vbg-mint);
}

@media (max-width: 900px) {
  .vbg-dosage-cards { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   8. KRÄUTER ANIMATION (INGA v4)
   ============================================================ */

/* Section-Wrapper */
.vbg-inga-section {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 980px;
  overflow: hidden;
  background: var(--vbg-forest-bg);
}

/* Hintergrund-Gradient */
.vbg-inga-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45,90,61,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(90,138,106,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(201,151,58,0.08) 0%, transparent 60%),
    var(--vbg-forest-deep);
  z-index: 0;
}

/* Dekor-Linien */
.vbg-inga-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.vbg-inga-bg-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.04;
}

/* SVG Verbindungslinien */
.vbg-inga-lines-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15;
}

/* Bühne */
.vbg-inga-stage2 {
  position: absolute;
  inset: 80px 0 0;
  z-index: 16;
}

/* Dimmer */
.vbg-inga-dimmer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 24;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vbg-inga-dimmer.is-active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

/* Nicht-fokussierte Karten abdunkeln */
.vbg-inga-stage2.has-focus .vbg-inga-card2:not(.is-focused) {
  opacity: 0.3 !important;
  transition: opacity 0.3s ease;
}

/* --- Header --- */

.vbg-inga-header2 {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 30;
  opacity: 0;
  width: 90%;
  pointer-events: none;
}

.vbg-inga-eyebrow2 {
  font-family: var(--vbg-ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vbg-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vbg-inga-eyebrow2::before,
.vbg-inga-eyebrow2::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--vbg-gold);
  opacity: 0.6;
}

.vbg-inga-title2 {
  font-family: var(--vbg-ff-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  color: var(--vbg-white) !important;
  line-height: 1.1;
}

.vbg-inga-title2 em {
  font-style: italic;
  color: var(--vbg-gold-lt) !important;
}

/* --- Flasche --- */

.vbg-inga-bottle2-wrap {
  position: absolute;
  z-index: 20;
  width: clamp(110px, 14vw, 180px);
  left: 50%;
  top: 61%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  perspective: 1000px;
  opacity: 0;
}

.vbg-inga-bottle2-inner {
  width: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.vbg-inga-bottle2-inner.is-flipped {
  transform: rotateY(180deg);
}

.vbg-inga-bottle2-front,
.vbg-inga-bottle2-back {
  width: 100%;
  backface-visibility: hidden;
}

.vbg-inga-bottle2-front {
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55)) drop-shadow(0 0 30px rgba(201,151,58,0.12));
}

.vbg-inga-bottle2-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: rotateY(180deg);
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
}

.vbg-inga-bottle2-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.10) 0%, rgba(45,90,61,0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 19;
  opacity: 0;
}

.vbg-inga-bottle2-hint {
  position: absolute;
  top: 15%;
  right: -55px;
  background: var(--vbg-gold);
  color: var(--vbg-forest);
  padding: 8px 12px;
  border-radius: 20px;
  font-family: var(--vbg-ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 15px rgba(201,151,58,0.4);
  pointer-events: none;
  animation: vbgBounce 2s ease-in-out infinite;
  z-index: 25;
  white-space: nowrap;
}

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

/* --- Kräuter-Karten --- */

.vbg-inga-card2 {
  position: absolute;
  z-index: 25;
  opacity: 0;
  cursor: pointer;
}
.vbg-inga-card2:hover {
  will-change: transform, opacity;
}

.vbg-inga-card2-inner {
  background: rgba(12, 34, 20, 0.92);
  border: 1px solid rgba(168,197,176,0.22);
  border-radius: 20px;
  padding: 20px 18px 17px;
  width: 200px;
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
}

.vbg-inga-card2:hover .vbg-inga-card2-inner {
  border-color: rgba(201,151,58,0.55);
  background: rgba(18,48,30,0.97);
  transform: scale(1.05);
}

.vbg-inga-card2.is-focused .vbg-inga-card2-inner {
  background: rgba(18, 48, 30, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  border-color: var(--vbg-gold);
}

.vbg-inga-card2.is-focused .vbg-inga-card2-expand {
  display: none;
}

.vbg-inga-card2-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vbg-gold);
  color: var(--vbg-forest);
  font-family: var(--vbg-ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(201,151,58,0.45);
}

.vbg-inga-card2-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vbg-inga-card2-emoji {
  font-size: 2rem;
  line-height: 1;
}

.vbg-inga-card2-name {
  font-family: var(--vbg-ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--vbg-cream);
  line-height: 1.2;
  margin-bottom: 4px;
}

.vbg-inga-card2-latin {
  font-family: var(--vbg-ff-display);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(168,197,176,0.6);
  margin-bottom: 8px;
  display: block;
}

.vbg-inga-card2-benefit {
  font-family: var(--vbg-ff-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(200,225,210,0.92);
  line-height: 1.55;
}

.vbg-inga-card2-accent {
  height: 2px;
  border-radius: 0 0 20px 20px;
  margin: 12px -18px -17px;
}

.vbg-inga-card2-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vbg-mint);
  transition: background 0.2s, color 0.2s;
  z-index: 5;
}

.vbg-inga-card2:hover .vbg-inga-card2-expand {
  background: var(--vbg-gold);
  color: var(--vbg-forest);
}

.vbg-inga-card2-expand svg {
  width: 14px;
  height: 14px;
}

/* --- Footer CTA --- */

.vbg-inga-footer2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 35;
  opacity: 0;
  padding: 60px 10px 40px;
  background: linear-gradient(to top, rgba(15,40,25,0.95) 30%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.vbg-inga-footer2-cta {
  display: inline-block;
  background: var(--vbg-gold);
  color: var(--vbg-forest);
  padding: 15px 48px;
  border-radius: 50px;
  font-family: var(--vbg-ff-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(201,151,58,0.4);
  transition: background 0.2s, transform 0.2s;
  pointer-events: auto;
}

.vbg-inga-footer2-cta:hover {
  background: var(--vbg-gold-lt);
  color: var(--vbg-forest);
  transform: translateY(-2px);
}

/* --- Inhaltsstoffe-Overlay --- */

.vbg-inga-ing-overlay {
  position: absolute;
  inset: 0;
  z-index: 70;
  background: rgba(15, 40, 25, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.vbg-inga-ing-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.vbg-inga-ing-content {
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.vbg-inga-ing-title {
  font-family: var(--vbg-ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vbg-cream) !important;
  margin-bottom: 5px;
  font-weight: 300;
}

.vbg-inga-ing-sub {
  font-family: var(--vbg-ff-body);
  color: var(--vbg-mint) !important;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

/* --- Hybrid-List (Inhaltsstoffe) --- */

.vbg-inga-hybrid-list {
  width: 100%;
  height: 420px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 10px;
  text-align: center;
  padding: 60px 10px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  scrollbar-width: none;
}

.vbg-inga-hybrid-list::-webkit-scrollbar {
  display: none;
}

.vbg-inga-hybrid-item {
  font-family: var(--vbg-ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
  cursor: default;
  line-height: 1.3;
}

.vbg-inga-hybrid-item.is-featured {
  color: rgba(232,192,106,0.85);
}

@media (hover: hover) and (pointer: fine) {
  .vbg-inga-hybrid-item:hover {
    color: var(--vbg-gold-lt);
    font-size: 1.75rem;
    font-weight: 600;
    text-shadow: 0 0 18px rgba(232,192,106,0.35);
  }
}

/* --- Mobile Bottom Sheet --- */

.vbg-inga-sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99989;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vbg-inga-sheet-backdrop.open {
  display: block;
  opacity: 1;
}

.vbg-inga-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99990;
  background: var(--vbg-forest);
  border-radius: 24px 24px 0 0;
  padding: 12px 24px 40px;
  transform: translateY(calc(100% + 8px));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.vbg-inga-sheet.open {
  transform: translateY(0);
}

.vbg-inga-sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.vbg-inga-sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--vbg-cream);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.vbg-inga-sheet-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vbg-inga-sheet-title {
  font-family: var(--vbg-ff-display);
  font-size: 1.6rem;
  font-weight: var(--vbg-fw-light);
  color: var(--vbg-cream) !important;
  margin-bottom: 8px;
  padding-right: 40px;
}

.vbg-inga-sheet-sub {
  font-size: 0.85rem;
  color: var(--vbg-mint) !important;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* --- Responsive INGA --- */

@media (max-width: 1100px) {
  .vbg-inga-bottle2-wrap  { top: 58%; }
  .vbg-inga-card2-inner   { width: 175px; }
  .vbg-inga-card2-name    { font-size: 1.15rem; }
  .vbg-inga-card2-benefit { font-size: 0.75rem; }
}

@media (max-width: 900px) {
  .vbg-inga-card2-inner   { width: 150px; padding: 14px 13px 13px; }
  .vbg-inga-card2-name    { font-size: 1.05rem; }
  .vbg-inga-card2-latin   { font-size: 0.74rem; }
  .vbg-inga-card2-benefit { font-size: 0.68rem; }
  .vbg-inga-card2-img     { width: 56px; height: 56px; }
  .vbg-inga-card2-emoji   { font-size: 1.6rem; }
  .vbg-inga-card2-badge   { font-size: 0.6rem; }
}

/* ── Desktop: Carousel-Wrapper unsichtbar, Dots ausblenden ── */
@media (min-width: 769px) {
  .vbg-inga-carousel { display: contents; }
  .vbg-inga-dots     { display: none; }
}

/* ── Mobile: Linearer Flow + Karten-Carousel ── */
@media (max-width: 768px) {
  .vbg-inga-section {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

  .vbg-inga-stage2 {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0 40px;
  }

  .vbg-inga-header2 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    margin-bottom: 20px;
  }

  .vbg-inga-bottle2-wrap {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: clamp(100px, 22vw, 140px);
    margin: 0 auto 8px;
    order: 2;
  }

  /* Hint über Flasche zentriert */
  .vbg-inga-bottle2-hint {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -32px;
    bottom: auto;
    white-space: normal;
    width: 78px;
    text-align: center;
    font-size: 0.58rem;
    padding: 4px 7px;
    animation: vbgBounce 2s ease-in-out infinite;
  }

  /* ── 3D Cover-Flow Carousel ── */
  .vbg-inga-carousel {
    position: relative;
    display: block;
    width: 100%;
    height: 270px;
    perspective: 900px;
    perspective-origin: 50% 50%;
    overflow: visible;
    order: 3;
    margin: 40px 0 0;
    touch-action: pan-y;
  }

  /* Glow-Verbindung von Flasche → aktive Karte */
  .vbg-inga-carousel::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -48px;
    width: 2px;
    height: 58px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
      var(--vbg-gold) 0%,
      rgba(201,151,58,0.6) 40%,
      rgba(201,151,58,0.1) 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: vbgGlowLine 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(201,151,58,0.5));
  }

  /* Goldener Glow-Pool unter der Flasche */
  .vbg-inga-carousel::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -12px;
    width: 100px;
    height: 100px;
    transform: translateX(-50%);
    background: radial-gradient(circle,
      rgba(201,151,58,0.25) 0%,
      rgba(201,151,58,0.08) 40%,
      transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: vbgGlowPulse 3s ease-in-out infinite;
  }

  @keyframes vbgGlowLine {
    0%, 100% { opacity: 0.3; height: 54px; }
    50%      { opacity: 0.9; height: 62px; }
  }

  @keyframes vbgGlowPulse {
    0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.5; }
    50%      { transform: translateX(-50%) scale(1.4); opacity: 0.9; }
  }

  .vbg-inga-card2 {
    position: absolute !important;
    left: 50%;
    top: 10px;
    width: clamp(170px, 58vw, 240px);
    transform-origin: center center;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    cursor: grab;
    transition: none;
    /* GSAP handles transforms */
  }

  .vbg-inga-card2-inner {
    width: 100% !important;
    padding: 18px 14px 14px !important;
    border-radius: 20px !important;
  }

  .vbg-inga-card2-img {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 6px;
  }

  .vbg-inga-card2-emoji { font-size: 1.4rem !important; }

  .vbg-inga-card2-name {
    font-size: 1rem !important;
    margin-bottom: 3px;
  }

  /* Alle Infos immer sichtbar */
  .vbg-inga-card2 .vbg-inga-card2-badge,
  .vbg-inga-card2 .vbg-inga-card2-latin,
  .vbg-inga-card2 .vbg-inga-card2-benefit,
  .vbg-inga-card2 .vbg-inga-card2-accent {
    display: block !important;
  }

  .vbg-inga-card2-latin   { font-size: 0.72rem !important; }
  .vbg-inga-card2-benefit  { font-size: 0.78rem !important; }

  /* Expand-Button nicht nötig */
  .vbg-inga-card2-expand { display: none !important; }

  /* Inactive Karten: leichter Blur (Depth-of-Field) */
  .vbg-inga-card2:not(.is-cf-active) .vbg-inga-card2-inner {
    filter: blur(1.2px);
    transition: filter 0.4s ease;
  }

  /* Aktive Karte: Glow + Breathing */
  .vbg-inga-card2.is-cf-active .vbg-inga-card2-inner {
    filter: none;
    box-shadow:
      0 4px 24px rgba(201, 151, 58, 0.3),
      0 0 50px rgba(201, 151, 58, 0.1),
      inset 0 0 0 1px rgba(201, 151, 58, 0.15);
    animation: vbgCardBreathe 3s ease-in-out infinite;
    transition: filter 0.4s ease;
  }

  @keyframes vbgCardBreathe {
    0%, 100% { transform: scale(1);    filter: brightness(1); }
    50%      { transform: scale(1.01); filter: brightness(1.08); }
  }

  /* Aktive Karte: Emoji pulsiert */
  .vbg-inga-card2.is-cf-active .vbg-inga-card2-emoji {
    animation: vbgEmojiPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes vbgEmojiPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1.1); }
  }

  /* Dots — genug Abstand damit Karten nicht reinragen */
  .vbg-inga-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 4px;
    order: 4;
  }

  .vbg-inga-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(168, 197, 176, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .vbg-inga-dot.is-active {
    background: var(--vbg-gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(201,151,58,0.5), 0 0 16px rgba(201,151,58,0.2);
  }

  /* Footer CTA — genug Abstand zum Carousel darüber */
  .vbg-inga-footer2 {
    position: relative;
    bottom: auto;
    background: none;
    order: 5;
    padding: 16px 24px 32px;
    margin-top: 24px;
  }

  /* Dimmer: fixed für Sheet */
  .vbg-inga-dimmer {
    position: fixed;
    inset: 0;
    z-index: 50;
  }

  /* Dekorative Linien verstecken */
  .vbg-inga-bg-lines     { opacity: 0.02; }
  .vbg-inga-lines-canvas { display: none; }

  .vbg-inga-hybrid-list {
    height: 340px;
    grid-template-columns: 1fr;
    padding: 120px 10px;
    scroll-snap-type: y mandatory;
    row-gap: 0;
  }

  .vbg-inga-hybrid-item {
    font-size: 1.25rem;
    padding: 14px 0;
    scroll-snap-align: center;
  }

  /* Overlay nur auf Desktop */
  .vbg-inga-ing-overlay { display: none !important; }
}

@media (min-width: 769px) {
  /* Sheet nur auf Mobile */
  .vbg-inga-sheet,
  .vbg-inga-sheet-backdrop { display: none !important; }
}

/* (alte 600px-Overrides für absolute Karten-Positionierung entfernt – Carousel löst das) */


/* ============================================================
   9. KOMBI-PRODUKTE
   ============================================================ */

.vbg-kombi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.vbg-kombi-card {
  background: var(--vbg-white);
  border-radius: var(--vbg-radius-2xl);
  border: 1px solid var(--vbg-sand);
  overflow: hidden;
  transition: var(--vbg-transition-card);
  position: relative;
  box-shadow: var(--vbg-shadow-sm);
}

.vbg-kombi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vbg-shadow-xl);
}

.vbg-kombi-card-highlight {
  border-color: var(--vbg-gold);
  box-shadow: 0 8px 24px rgba(201,151,58,0.15);
}

.vbg-kombi-bestseller {
  position: absolute;
  top: 20px;
  left: -30px;
  width: 128px;
  text-align: center;
  transform: rotate(-45deg);
  transform-origin: center center;
  background: var(--vbg-gold);
  color: var(--vbg-forest);
  font-family: var(--vbg-ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 0;
  box-shadow: 0 2px 8px rgba(201,151,58,0.35);
  z-index: 10;
}

.vbg-kombi-img-wrap {
  background: linear-gradient(150deg, #ddeee3 0%, #c8e2d0 60%, #b8d9c4 100%);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.vbg-kombi-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
}

.vbg-kombi-img {
  max-height: 200px;
  max-width: 82%;
  object-fit: contain;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.vbg-kombi-card:hover .vbg-kombi-img {
  transform: scale(1.06);
}

.vbg-kombi-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vbg-kombi-title {
  font-family: var(--vbg-ff-display);
  font-size: 1.3rem;
  font-weight: var(--vbg-fw-light);
  color: var(--vbg-forest);
  line-height: 1.25;
}

.vbg-kombi-desc {
  font-size: 0.88rem;
  color: var(--vbg-warm-gray);
  line-height: 1.6;
  margin: 0;
}

.vbg-kombi-price {
  font-family: var(--vbg-ff-display);
  font-size: 1.6rem;
  font-weight: var(--vbg-fw-light);
  color: var(--vbg-forest);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--vbg-sand);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .vbg-kombi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .vbg-kombi-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   11. FIXES – Mobile & Allgemein
   ============================================================ */

/* Fix: Kombi Button Textfarbe explizit (globale a-Styles überschreiben) */
.vbg-kombi-card .vbg-btn-dark,
.vbg-kombi-card .vbg-btn-dark:visited,
.vbg-kombi-card .vbg-btn-dark:hover {
  color: var(--vbg-cream) !important;
  text-decoration: none !important;
}

/* Fix: Dosierung Hint lesbarer */
.vbg-dosage-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

/* Fix: Preisvergleich 3er-Grid auf Mobile umbrechen */
@media (max-width: 600px) {
  .vbg-kv-dogs-grid {
    grid-template-columns: 1fr !important;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── FIX: Bindestrich – kein Zeilenumbruch davor/danach ── */
/* Wörter können umbrechend, aber der Bindestrich bleibt an
   der vorherigen Zeile, da overflow-wrap ihn nicht trennt  */
@media (max-width: 600px) {
  .vbg-order-last h1 {
    overflow-wrap: break-word;
    hyphens: none;
    /* Verhindert Umbruch VOR einem Bindestrich:
       word-break:keep-all würde CJK-Zeichen ignorieren,
       stattdessen nutzen wir white-space-collapse normal +
       word-break normal + kein automatisches Trennen */
    word-break: normal;
  }
}

/* ── FIX: "In den Warenkorb" Button im Hero – Dawn setzt auf
   button[type="submit"] in Produktformularen eigene font-size/padding ── */
.vbg-page button[type="submit"].vbg-btn-cart,
.vbg-page button[type="submit"].vbg-btn-primary {
  font-size: 0.875rem !important;
  padding: 14px 20px !important;
  height: 52px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 480px) {
  .vbg-page button[type="submit"].vbg-btn-cart,
  .vbg-page button[type="submit"].vbg-btn-primary {
    font-size: 0.7rem !important;
  }
}

/* ── FIX: Bestseller Ribbon – schräges Banner oben links: siehe Sektion 9 ── */

/* ── FIX: INGA Section – Texte schwarz statt weiß ──
   .vbg-page h2 { color: var(--vbg-forest) } hat Spezifität (0,1,1)
   .vbg-inga-title2 { color: var(--vbg-white) } hat Spezifität (0,1,0)
   → Wir brauchen höhere Spezifität für die INGA-Texte */
.vbg-inga-section .vbg-inga-title2 {
  color: var(--vbg-white) !important;
}
.vbg-inga-section .vbg-inga-title2 em {
  color: var(--vbg-gold-lt) !important;
}
.vbg-inga-section .vbg-inga-eyebrow2 {
  color: var(--vbg-gold) !important;
}
/* Alle p-Tags in der INGA Section: weiß statt warm-gray */
.vbg-inga-section p {
  color: rgba(255,255,255,0.75) !important;
}
/* Hint-Text unter der Flasche */
.vbg-inga-section .vbg-inga-bottle2-hint {
  color: var(--vbg-cream) !important;
}
/* Footer CTA */
.vbg-inga-section .vbg-inga-footer2-cta {
  color: var(--vbg-forest) !important;
}

/* Bild-Lightbox */
.vbg-lightbox-trigger {
  cursor: zoom-in;
  position: relative;
}

.vbg-lightbox-trigger::after {
  content: '🔍';
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.vbg-lightbox-trigger:hover::after {
  opacity: 1;
}

.vbg-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.vbg-lightbox-overlay.is-open {
  display: flex;
}

.vbg-lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.vbg-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}

.vbg-lightbox-close:hover {
  opacity: 1;
}
   ============================================================ */

.vbg-contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.vbg-founder-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
  border: 3px solid var(--vbg-sand);
}


/* ============================================================
   11. LIGHTBOX
   ============================================================ */

#vbg-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  animation: vbgLbFade 0.25s ease;
}

#vbg-lightbox.is-active {
  display: flex;
}

#vbg-lightbox-img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--vbg-radius-lg);
  animation: vbgLbZoom 0.25s ease;
}

#vbg-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

#vbg-lightbox-close:hover {
  background: rgba(255,255,255,0.22);
}


/* ============================================================
   GLOBALE RESPONSIVE-OVERRIDES
   (nur für Utilities die keine eigene Sektion haben)
   ============================================================ */

@media (max-width: 900px) {
  .vbg-order-first { order: 0; }
  .vbg-order-last  { order: 0; }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .vbg-reveal, .vbg-reveal-left, .vbg-reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  [data-delay] { transition-delay: 0s !important; }
}
