/* ====================================================================== */
/* GLOBAL LAYOUT                                                          */
/* ====================================================================== */

.mm-body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: #f9fafb;
  background:
    radial-gradient(circle at top left, #1f2937 0, #020617 55%),
    radial-gradient(circle at bottom right, #0f172a 0, #020617 55%);
  min-height: 100vh;
}

.mm-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

h1, h2, h3 {
  margin: 0;
  color: #f9fafb;
}

/* ====================================================================== */
/* HERO / HEADER                                                          */
/* ====================================================================== */

.mm-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.85));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(148, 163, 184, 0.25);
}

.mm-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 191, 36, 0.25) 0, transparent 55%),
    radial-gradient(circle at 80% 120%, rgba(56, 189, 248, 0.35) 0, transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.mm-hero > * {
  position: relative;
  z-index: 1;
}

.mm-hero-left {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mm-logo {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.mm-logo span {
  color: #facc15;
}

.mm-tagline {
  font-size: 1rem;
  color: #e5e7eb;
  max-width: 40rem;
}

.mm-hero-flow {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.mm-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(10px);
}

.mm-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(209, 213, 219, 0.7);
}

.mm-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mm-hero {
  background: radial-gradient(
      circle at 20% 30%,
      rgba(60,40,30,0.35),
      rgba(10,10,15,0.8)
    ),
    linear-gradient(
      to bottom right,
      rgba(20,15,15,0.6),
      rgba(5,5,10,0.9)
    );
  backdrop-filter: blur(2px);
}

/* ====================================================================== */
/* GLASS ILLUSTRATION                                                     */
/* ====================================================================== */

.mm-hero-glass {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mm-glass {
  width: 120px;
  height: 180px;
  border-radius: 24px;
  border: 2px solid rgba(248, 250, 252, 0.85);
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
              linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 32px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.4);
}

.mm-liquid {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(145deg, #f97316, #facc15);
  border-top-left-radius: 40% 40%;
  border-top-right-radius: 60% 40%;
  animation: mm-liquid-wave 6s ease-in-out infinite;
}

@keyframes mm-liquid-wave {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}

.mm-ice {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(248, 250, 252, 0.9);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.7);
}

.mm-ice-1 { top: 56px; left: 20px; }
.mm-ice-2 { top: 78px; right: 16px; }

.mm-glass-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(248, 250, 252, 0.55), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
}

.mm-hero-badge {
  margin-top: 8px;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* ====================================================================== */
/* MAIN LAYOUT – zwei Spalten                                            */
/* ====================================================================== */

.mm-layout {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

/* Linke und rechte Box */

.links,
.rechts {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 20px;
  padding: 20px 20px 22px;
  box-shadow:
    0 16px 35px rgba(0,0,0,0.5),
    0 0 0 1px rgba(148, 163, 184, 0.35);
}

.links h2,
.rechts h2 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.mt {
  margin-top: 18px;
}

/* ====================================================================== */
/* CHIP CONTAINER & CHIPS                                                */
/* ====================================================================== */

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.18s ease-out;
}

.chip.selected {
  background: rgba(250, 204, 21, 0.18);
  border-color: #facc15;
  color: #fef3c7;
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.25);
}

/* ====================================================================== */
/* ALKOHOLFREI SWITCH                                                    */
/* ====================================================================== */

.alko-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.alko-label {
  font-size: 0.9rem;
}

/* Toggle-Switch (klassisches CSS-Muster) */

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #4b5563;
  transition: .2s;
  border-radius: 999px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #f9fafb;
  transition: .2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #f59e0b;
}

input:checked + .slider:before {
  transform: translateX(18px);
}

/* ====================================================================== */
/* BUTTONS                                                                */
/* ====================================================================== */

.btn-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.mix-btn {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border: none;
  color: #111827;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.mix-btn.secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.mix-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
}

/* ====================================================================== */
/* RESULT CARD                                                            */
/* ====================================================================== */

.result-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#drinkName {
  font-size: 1.3rem;
}

.result-style {
  font-size: 0.9rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.result-story {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-top: 4px;
}

.result-ingredients {
  margin-top: 12px;
}

.result-ingredients h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #e5e7eb;
}

#ingredientsList {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

#ingredientsList li {
  margin-bottom: 3px;
}

/* Icons (Platzhalter, falls du später echte SVGs lädst) */

.main-icon {
  margin-top: 14px;
  min-height: 40px;
}

.icons-grid {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

@media (max-width: 900px) {
  .mm-hero {
    flex-direction: column;
  }

  .mm-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .mm-page {
    padding-inline: 14px;
  }

  .mm-hero {
    padding: 24px 18px;
    margin-inline: -4px;
    border-radius: 0 0 24px 24px;
  }
}

/* === Drink-Style als hübscher Tag =================================== */

.result-style {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e5e7eb;
  opacity: 0.95;
}

.result-style::before {
  content: "Style";
  font-weight: 600;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-right: 10px;
}

/* feine Trennung vor der Story */

.result-story {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  line-height: 1.45;
}

/* Zutatenbereich als eigene kleine Box */

.result-ingredients {
  margin-top: 14px;
  padding: 10px 12px 8px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.result-ingredients h3 {
  font-size: 0.85rem;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e5e7eb;
  opacity: 0.85;
}

#ingredientsList {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  column-count: 2;
  column-gap: 18px;
}

#ingredientsList li {
  margin-bottom: 4px;
  break-inside: avoid;
  position: relative;
  padding-left: 12px;
}

#ingredientsList li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #facc15;
  font-size: 0.85rem;
}

/* auf schmalen Screens wieder einspaltig */

@media (max-width: 600px) {
  #ingredientsList {
    column-count: 1;
  }
}

/* STYLE-BADGE */
.result-style {
  margin-top: 10px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.35);
  color: #fde68a;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ZUTATEN-BADGE GRID */
.ingredients-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ingredient-badge {
  padding: 6px 12px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  color: #e5e7eb;
  white-space: nowrap;
}

/* === Loading-Indicator im Ergebnisbereich ============================= */

.loading-indicator[hidden] {
  display: none;
}

.loading-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.85rem;
  color: #e5e7eb;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.5);
  border-top-color: #facc15;
  animation: mm-spin 0.7s linear infinite;
}

@keyframes mm-spin {
  to { transform: rotate(360deg); }
}

/* Magie: Wenn der Loader sichtbar ist, blende alle Geschwister aus */
.result-inner #loadingIndicator:not([hidden]) ~ * {
  display: none;
}

/* ====================================================================== */
/* BELLINI'S HEADER – Mobile First                                       */
/* ====================================================================== */

.mm-hero-bellinis {
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.04) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(248, 250, 252, 0.06) 0, transparent 55%),
    linear-gradient(135deg, #050608 0%, #101827 55%, #020617 100%);
  border-radius: 24px;
  padding: 20px 18px 22px;
  margin-bottom: 24px;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(148, 163, 184, 0.3);

  /* Mobile-First: alles untereinander */
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* Logo oben, kleiner als vorher */

.mm-hero-left {
  display: flex;
  justify-content: center;
}

.bellinis-logo {
  max-width: 180px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 10px rgba(0,0,0,0.8))
    drop-shadow(0 0 20px rgba(0,0,0,0.6));
}

/* Claim mittig */

.mm-hero-center {
  text-align: center;
  max-width: 420px;
}

.mood-claim {
  text-align: center;
}

.mood-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  opacity: 0.75;
  margin-bottom: 4px;
}

.mood-title {
  color: #facc15;
  font-weight: 700;
  letter-spacing: 0.05em;

  text-shadow:
    0 0 4px rgba(250,204,21,0.5),
    0 0 12px rgba(250,204,21,0.3),
    0 0 20px rgba(250,204,21,0.2);
}

.mood-subline {
  margin: 6px 0 10px;
  font-size: 0.9rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.mood-steps {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #e5e7eb;
}

.mood-steps span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
}

/* Ivo unten im Mobile-View */

.mm-hero-right {
  display: flex;
  justify-content: center;
}

.mm-hero-person {
  margin: 0;
  display: inline-block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.75);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.bellinis-barkeeper {
  display: block;
  width: 180px;
  height: auto;
  object-fit: cover;
}

/* ====================================================================== */
/* Desktop / größere Screens: drei Spalten                               */
/* ====================================================================== */

@media (min-width: 900px) {
  .mm-hero-bellinis {
    flex-direction: row;
    align-items: stretch;
    padding: 24px 26px;
    gap: 20px;
  }

  .mm-hero-left {
    flex: 0 0 180px;
    justify-content: flex-start;
    align-items: center;
  }

  .mm-hero-center {
    flex: 1.1;
    text-align: left;
  }

  .mood-claim {
    text-align: left;
  }

  .mm-hero-right {
    flex: 0 0 210px;
    justify-content: flex-end;
    align-items: center;
  }

  .bellinis-barkeeper {
    width: 210px;
  }
}

.alko-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* ===================================================== */
/* FOOD PAIRING – Eigene Card unter dem Drink            */
/* ===================================================== */

.food-pairing {
  margin-top: 16px;
}

/* Die eigentliche Karte */
.food-pairing-box {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 12, 20, 0.9); /* leicht dunkler als die Drink-Card */
  border: 1px solid rgba(250, 204, 21, 0.4); /* soft goldiger Rahmen */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Überschrift: etwas kleiner als Drink-Name, aber klar */
.food-pairing-box h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #facc15; /* Gold-Ton */
}

/* Name des Gerichts */
.food-pairing-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.food-pairing-box p strong {
  font-size: 1rem;
}

/* Section / Kategorie in klein und etwas ruhiger */
.food-pairing-box small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Optional: kleine Trennlinie über dem Begründungstext */
.food-pairing-box p:last-of-type {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
}

/* Kleines Teller-Emoji als optischer Marker (über pseudo-element) */
.food-pairing-box h3::before {
  content: "🍽️";
  margin-right: 6px;
  font-size: 1rem;
}

#result-card {
  display: none; /* erst mal versteckt */
}

/* ===================================================== */
/* PROMO-BOX – dezente Werbung in der Result-Card        */
/* ===================================================== */

.promo-box {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9); /* etwas kühler als Drink-Card */
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-title {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.promo-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5f5;
}

.promo-link {
  margin-top: 6px;
  align-self: flex-start;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #facc15;
  color: #facc15;
  text-decoration: none;
}

.promo-link:hover {
  background: #facc15;
  color: #111827;
}

/* PROMO BOX */
.promo-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  position: relative;
  background: rgba(18, 22, 33, 0.88);
  backdrop-filter: blur(4px);

  /* Gold-Kante */
  border: none;
  background-image:
    linear-gradient(rgba(18,22,33,0.88), rgba(18,22,33,0.88)),
    linear-gradient(120deg, #facc15 0%, #d97706 50%, #facc15 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 2px 28px rgba(250, 204, 21, 0.12);
}

/* ===================================================== */
/* Zutaten-Bereich hervorheben                           */
/* ===================================================== */

.result-ingredients {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04); /* leichter Glow */
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(3px);

  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Überschrift Zutaten */
.result-ingredients h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Badges optisch sauberer */
.ingredients-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* einzelne Zutaten-Badges */
.ingredient-badge {
  background: rgba(250, 204, 21, 0.15); /* golden halb-transparent */
  color: #facc15;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

/* ------------------------------------------------------ */
/* Button Row – mobile first: Buttons untereinander       */
/* ------------------------------------------------------ */

.btn-row {
  width: 100%;
  display: flex;
  flex-direction: column;     /* untereinander */
  gap: 12px;                  /* Abstand */
  margin-top: 20px;
}

/* Hauptbutton (Mixen) */
#mixen {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.05rem;
  border-radius: 12px;
}

/* Zufall-Button – dezenter, schmaler, zarter */
#zufall {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.3;
  border-radius: 10px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);

  backdrop-filter: blur(3px);
  transition: 0.2s ease;
}

#zufall:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.extra-options-wrapper {
  margin-top: 1.5rem;
}

.extra-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 0;
  text-align: left;
  width: 100%;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.extra-options {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.extra-switches {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.allergy-group {
  margin-top: 0.5rem;
}

.allergy-label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.chip-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip-row .chip {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.chip-row .chip.selected {
  background-color: #fff;
  color: #222;
}

.extra-wrapper {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #151515;
  border-radius: 12px;
}

#toggleExtra.toggle-extra-btn {
  background-color: #222;
  color: #eee;
  border: 1px solid #444;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

#toggleExtra.toggle-extra-btn:hover {
  background-color: #333;
}

/* Switch-Wrappers (bleiben wie von dir genutzt) */
.alko-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

/* Chips-Sektion abgrenzen */
.allergy-chips {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #1c1c1c;
  border: 1px dashed #555;
  border-radius: 12px;
}

.allergy-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #eee;
  margin-bottom: 0.5rem;
}

.allergy-chips .chip {
  background-color: #333;
  border: 1px solid #555;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.allergy-chips .chip:hover,
.allergy-chips .chip.selected {
  background-color: #555;
  border-color: #888;
}

.allergy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.allergy-label {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  background-color: #fffdfc;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.allergy-chips {
  margin-top: 30px;
  padding: 1rem 1rem 0.75rem;
  border: 1px dotted #bbb;
  border-radius: 8px;
  position: relative;
  /*background-color: #fffdfc; */
}

/********** WERBUNG **********/

#promoArea {
  margin-top: 40px;
  padding: 0 1rem;
}

.promoBox {
  /*background: #fff;*/
  border-left: 4px solid #d88c3c;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: fadeIn 0.3s ease forwards;
  margin-top: 0.5rem;
}

.promo-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.promo-teaser-group {
  width: 100%;
}

.promo-teaser {
  border: 2px solid var(--accent, #ffd700);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.promo-teaser:hover,
.promo-teaser.active {
  background: var(--accent, #ffd700);
  color: #000;
}

.promoBox {
  margin-top: 12px;
  /*background: #fffef9;*/
  border-left: 4px solid var(--accent, #151c2e);
  padding: 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.promo-teaser {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.promo-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Variante für "Jetzt anfragen" */
.promo-teaser--booking {
  border-color: #d88c3c;
  /*background: #fff9f3;*/
}

.promo-teaser--booking:hover,
.promo-teaser--booking.active {
  background: #d88c3c;
  color: #fff;
}

/* Variante für "Live Musik" */
.promo-teaser--event {
  border-color: #b1457b;
  /*background: #fff4f8;*/
}

.promo-teaser--event:hover,
.promo-teaser--event.active {
  background: #b1457b;
  color: #fff;
}

/* Variante für "Cocktail" */
.promo-teaser--cocktail {
  border-color: #5a5bd9;
  /*background: #fff4f8;*/
}

.promo-teaser--cocktail:hover,
.promo-teaser--cocktail.active {
  background: #5a5bd9;
  color: #fff;
}

.live-music-list {
  /*background: #fffefc;*/
  border-left: 3px dotted #d88c3c;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.95rem;
  animation: fadeIn 0.4s ease-in;
  margin-bottom: 20px;
}

.live-music-list .live-entry {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.live-music-list .live-entry:last-child {
  border-bottom: none;
}

.promo-cocktail .promo-teaser {
  border-color: #bb60d5; /* z. B. ein satter Lila-Ton */
}

.promo-cocktail .promo-teaser:hover,
.promo-cocktail .promo-teaser.active {
  background-color: #bb60d5;
  color: #fff;
}

.promo-cocktail .promoBox {
  border-left-color: #bb60d5;
}

.excluded-dishes-box {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #ccc;
  font-size: 0.9rem;
  color: #666;
}

.excluded-dishes-box h4 {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #999;
}

.excluded-dishes-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.excluded-dishes-box li {
  margin-bottom: 0.5rem;
}

.excluded-dishes-box {
  display: none !important;
}

#liveMusicList .highlight {
  background-color: #ffe9d6;
  border: 2px solid #ff7a00;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #3a2100;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
}

.live-entry.live-now {
  background: #ffe9a8;
  border: 2px solid #ffbf00;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.live-entry.live-now strong {
  color: #c27a00;
}

.live-highlight {
  background: #f3e5ab;
  padding: 6px 8px;
  border-radius: 5px;
  font-weight: bold;
}

.highlight-live-act {
  font-weight: bold;
  color: #D85E0B;
  background: #fff4e5;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

@media (min-width: 600px) {
  .promo-teasers {
    flex-direction: row;
    justify-content: space-between;
  }

  .promo-teaser {
    flex: 1;
    max-width: 48%;
  }
}

.result-alt-drink {
  /*margin: 24px 0 12px;*/
  padding: 12px;
  border-left: 3px solid #facc15;
  background: #fdf8f1;
  border-radius: 8px;
  font-size: 0.95em;
}

.result-alt-drink h4 {
  margin: 0 0 6px;
  font-size: 1.1em;
  color: #a86f33;
}

.alt-drink-name {
  font-weight: bold;
  margin-bottom: 4px;
}

.alt-drink-style {
  font-style: italic;
  color: #666;
  margin-bottom: 6px;
}

.alt-drink-reason {
  color: #444;
}

.alt-drink-box {
  /*background: #f4f4f4;
  border: 1px dashed #aaa;
  border-radius: 12px;*/
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
}

.alt-header {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #555;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alt-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 0.2rem;
}

.alt-style {
  font-style: italic;
  color: #666;
  margin-bottom: 0.4rem;
}

.alt-reason {
  color: #444;
  margin-bottom: 0.6rem;
}

.alt-ingredients {
  list-style: none;
  padding-left: 0rem;
  margin: 0;
}

.alt-ingredients li::before {
  content: "• ";
  color: #d88;
} 

.alt-drink-toggle {
  margin-top: 2rem;
  text-align: center;
}

.toggle-alt-drink {
  background-color: #eee;
  border: none;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-alt-drink:hover {
  background-color: #ddd;
}

.alt-drink-box {
  margin-top: 1rem;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  overflow: hidden;
  max-height: 1000px;
  opacity: 1;
}

.alt-drink-box.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.toggle-alt-drink {
  margin: 10px 0 0;
  background-color: #eee;
  color: #333;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  float: right;
}

.toggle-alt-drink:hover {
  background-color: #ddd;
}

.alt-drink-box {
  margin-top: 10px;
  padding: 10px;
  /*border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fafafa;*/
  animation: fadeIn 0.4s ease-in-out;
}

.toggle-alt-drink-badge {
display: block;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  text-align: center;
}

/*.toggle-alt-drink-badge:hover {
  background: #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}*/

.toggle-alt-drink-badge svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

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