/* Grundlegende Einstellungen */
:root {
    --dark-bg: #111;
    --dark-surface: #1c1c1c;
    --text-light: #f0f0f0;
    --text-secondary: #aaa;
    --accent-color: #d4af37; /* Goldton */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --border-color: #333; /* Neue Variable für Ränder */
    --header-height-desktop: 150px; /* Geschätzte Höhe des großen Headers */
    --header-height-mobile: 80px; /* Geschätzte Höhe des mobilen Headers */
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /* WICHTIG: Erlaubt horizontales Scrollen nur, wenn es absolut nötig ist, nicht durch fehlerhafte Elemente */
    overflow-x: hidden; 
}

/* ======================================================= */
/* I. HEADER & NAVIGATION */
/* ======================================================= */

.header-actions-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

paypal-cart-button {
    display: block;
}

.header-nav-trigger {
    cursor: pointer;
}

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.header-inner .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 190px;
    filter: brightness(0) invert(1);
    transition: height 0.3s ease; /* Fügt Übergang für Mobile-Logo-Größe hinzu */
}

.header-spacer-left {
    flex-grow: 1;
}

.header-nav-trigger {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Dropdown Menü (Mobile & Desktop) */
.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    background-color: var(--dark-surface);
    z-index: 999;
    padding: var(--header-height-mobile) 2rem 2rem; /* Start-Padding basierend auf Header-Höhe */
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
}

.main-nav.open {
    transform: translateX(0);
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

/* ======================================================= */
/* II. HAUPTINHALTE & SEKTIONEN */
/* ======================================================= */

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.uten-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/uten-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.prod-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/prod-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.content-section {
    padding: 8rem 5%;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 4rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* --- Produkt-Grid Regeln --- */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    /* WICHTIG: Auf der Index-Seite beibehalten, da es nur wenige Produkte sind */
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px; /* Platz für Schatten/Scrollbar */
}

.product-link {
    cursor: pointer;
}

.product-link,
.product-item {
    text-decoration: none;
    color: inherit;
    display: block;
    /* Feste Größe für Index-Grid */
    flex: 0 0 320px;
    max-width: 350px;
}

.product-item {
    background-color: var(--dark-surface);
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-link:hover .product-image-container img {
    transform: scale(1.05);
}

.hover-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    box-sizing: border-box;
}

.product-link:hover .hover-description {
    opacity: 1;
}

.hover-description p {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
}

.product-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* --- Buttons und Formulare --- */
.btn-discover {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: #f7d780;
    transform: scale(1.05);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
}
.btn-primary:hover {
    background-color: #f7d780;
}

.btn-secondary {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}
.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}


.btn-primary-outline {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

/* Kontakt-Sektion */
.contact-section .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 600px;
    margin: 3rem auto 0;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background-color: var(--dark-surface);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: 1px solid var(--accent-color);
}

/* Footer */
.main-footer {
    background-color: var(--dark-surface);
    padding: 3rem 5%;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav ul, .footer-info p {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Pop-up für Altersbestätigung */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate-content {
    background-color: var(--dark-surface);
    color: var(--text-light);
    padding: 3rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.age-gate-content h2 {
    font-family: var(--font-serif);
    margin-top: 0;
    font-size: 2rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.age-gate-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.age-gate-actions .btn-primary,
.age-gate-actions .btn-secondary {
    font-weight: 700;
}

/* ======================================================= */
/* III. COCKTAIL-SEITE LAYOUT & FILTER */
/* ======================================================= */

.full-width-container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.cocktail-page-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-direction: column;
}

.sidebar h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.filter-group {
    margin-bottom: 2rem;
}

/* Filter Akkordeon-Styling */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--text-secondary);
    padding-bottom: 0.5rem;
}
.filter-toggle-icon {
    transition: transform 0.3s ease;
}
.filter-group.open .filter-toggle-icon {
    transform: rotate(180deg);
}

/* Inhalte der Filtergruppen für Akkordeon-Effekt */
.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding-top: 0;
}
.filter-group.open .filter-content {
    max-height: 500px; 
    padding-top: 15px;
}
/* Die Suchleiste soll auf Desktop und Mobile geöffnet sein, aber die Übergänge sollen nicht auf sie angewandt werden */
.filter-content.open-by-default {
    max-height: 500px; 
    overflow: visible;
    transition: none;
    padding-top: 0;
}
.filter-group.open .filter-content.open-by-default {
    max-height: 500px;
    padding-top: 0;
}

.filter-group input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--dark-bg);
    border: 1px solid var(--text-secondary);
    color: var(--text-light);
}


.cocktail-grid-container {
    flex-grow: 1;
}

.cocktail-grid {
    display: grid;
    gap: 2rem;
}


/* Filter Tags */
.filter-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.filter-tag {
    background-color: var(--dark-surface);
    color: var(--text-light);
    border: 1px solid var(--text-secondary);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.filter-tag:hover {
    border-color: var(--accent-color);
}

.filter-tag.selected {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 700;
    border-color: var(--accent-color);
}


/* --- Mobil-Filter-Steuerung --- */
.mobile-filter-bar {
    /* ... (vorhandener Code) ... */
}

#mobile-filter-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    border-radius: 5px;
    /* NEU: Auffällige Farbe und Stil des "Filter öffnen" Buttons */
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    font-weight: 700;
}

#mobile-filter-btn:hover {
    background-color: #f7d780; /* Leichter Hover-Effekt */
}

/* Wichtig: Auch der SCHLIESSEN-Button im Sidebar-Footer soll auffällig sein */
.mobile-only-filter .btn-primary { 
    width: 100%;
    margin: 0;
    /* Der Style des btn-primary wird hier verwendet, was bereits gelb ist */
}

/* ======================================================= */
/* IV. RESPONSIVE DESIGN */
/* ======================================================= */

@media (max-width: 991px) {
    
    /* 1. Header und Logo anpassen */
    .header-inner .logo {
        position: static;
        transform: none;
    }
    
    .logo img {
        height: 80px; /* Reduzierte Höhe für Mobile */
    }
    
    .header-inner {
        padding: 1rem 5%;
        height: var(--header-height-mobile); /* Mobile Header-Höhe setzen */
    }
    
    .main-header {
        /* WICHTIG: Hintergrund auf Mobile sichtbar machen, um darunter liegende Inhalte auszublenden */
        background-color: var(--dark-bg); 
    }
    
    /* Mobile Navigation Padding korrigieren */
    .main-nav {
        padding-top: var(--header-height-mobile); 
    }

    /* 2. Aktiviere den Mobile-Filter-Button */
    .mobile-filter-bar {
        display: block; 
    }
    
    .content-section {
        padding-top: 5rem; 
    }
    .full-width-container {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* 3. Deaktiviere das Spalten-Layout */
    .cocktail-page-layout {
        display: block; 
    }

    /* 4. Sidebar als mobiles Overlay/Modales */
    .sidebar {
        position: fixed; 
        top: 0;
        right: -85%; 
        width: 85%; 
        max-width: 400px;
        height: 100vh;
        /* ANPASSUNG 1: Scrollbarkeit des Overlays */
        overflow-y: scroll; /* WICHTIG: Erlaubt Scrollen des gesamten Overlays */
        background-color: var(--dark-surface); 
        z-index: 2000; 
        padding: 0; /* Entfernt Padding, da wir jetzt einen Wrapper verwenden */
        transition: right 0.3s ease-in-out; 
        box-shadow: -5px 0 20px rgba(0,0,0,0.8);
    }
    
    /* NEUE KLASSE: Header-Klickbereich */
    .sidebar-header-click-area {
        position: fixed; /* Bleibt beim Scrollen oben */
        top: 0;
        right: 0;
        /* WICHTIG: Muss die volle Breite der geöffneten Sidebar haben */
        width: 85%; 
        max-width: 400px;
        height: var(--header-height-mobile); /* Gleiche Höhe wie Main-Header */
        z-index: 2005; 
        cursor: pointer;
        background-color: var(--dark-surface); /* Hintergrund, um den Inhalt dahinter zu verdecken */
        border-bottom: 1px solid var(--border-color);
    }
    
    /* NEUE KLASSE: Wrapper für den scrollbaren Filter-Inhalt */
    .sidebar-content-wrapper {
        /* Verschiebt den Inhalt nach unten, um Platz für die Klick-Fläche zu schaffen */
        padding: var(--header-height-mobile) 20px 0 20px;
    }
    
    /* Zustand, wenn der Filter geöffnet ist */
    .sidebar.open-mobile {
        right: 0; 
    }
    
    /* WICHTIG: Body-Fix beim Öffnen von Navi oder Filter */
    body.nav-open,
    body.filter-open {
        overflow: hidden;
    }
    
    /* 5. Filter schließen Button (sticky Footer) */
    .mobile-only-filter {
        display: block !important;
        margin-top: 20px;
        width: 100%;
        position: sticky;
        bottom: 0;
        background-color: var(--dark-surface); 
        /* Padding innen des Wrappers, damit es unter dem Wrapper bleibt */
        padding: 15px 0 5px 0; 
        z-index: 2001;
    }
    
    /* 6. Cocktail-Grid anpassen */
    .cocktail-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Etwas kleiner für besseren Fit */
        gap: 15px;
    }
    
    .cocktail-grid .product-link {
        flex: 1 1 140px;
    }
    
    /* Kontakt Sektion auf Mobile */
    .contact-section .section-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }
    
    /* Hero Content kleiner auf Mobile */
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}


/* --- Desktop/PC-Design beibehalten (min-width: 992px) --- */
@media (min-width: 992px) {
    /* Setzt das Layout für PC auf zwei Spalten */
    .cocktail-page-layout {
        flex-direction: row;
        justify-content: center;
        padding-top: var(--header-height-desktop); /* Korrekter Abstand unter dem großen Header */
    }
    
    /* Setzt die Sidebar auf Sticky für PC-Ansicht */
    .sidebar {
        width: 300px;
        flex-shrink: 0;
        background-color: var(--dark-surface); 
        padding: 2rem;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        
        /* WICHTIG: Sticky auf PC */
        position: sticky;
        top: 150px; /* Abstand vom oberen Rand */
        height: calc(100vh - 150px - 2rem);
        overflow-y: auto;
    }
    
    /* Header-Padding für Desktop */
    .header-inner {
        padding: 2rem 5%;
    }
    
    /* WICHTIG: Mobilen Button auf PC verstecken */
    .mobile-filter-bar,
    .mobile-only-filter,
    .sidebar-header-click-area { /* Auch den Click-Bereich auf Desktop verstecken */
        display: none !important;
    }
    
    .sidebar-content-wrapper {
        padding: 0; /* Wrapper-Padding auf Desktop entfernen */
    }
    
    /* Cocktail-Grid für PC-Ansicht */
    .cocktail-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* ======================================================= */
/* V. MODAL/POP-UP STRUKTUR */
/* ======================================================= */

.recipe-modal {
    display: none; 
    position: fixed;
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    overflow-y: auto; 
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    padding-top: 50px;
}

.recipe-modal.open {
    display: block;
}

.recipe-modal-content {
    background-color: var(--dark-surface);
    margin: 40px auto; 
    padding: 30px;
    border: 1px solid var(--accent-color); 
    border-radius: 8px;
    width: 90%; 
    max-width: 900px;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.2); 
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.close-btn {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
    z-index: 2002;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-color);
    text-decoration: none;
}


/* Überschreibt die Center-Ausrichtung von h1/h2/h3 für den Modal-Titel */
.modal-content-text h2 {
    color: var(--accent-color);
    text-align: left !important;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.modal-content-text .modal-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* BILD im Modal-Kopf */
.modal-header-image img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Sterne-Style */
.fa-star {
    color: var(--text-secondary); /* Leere Sterne */
    font-size: 1.1rem;
}

.fa-star.filled {
    color: var(--accent-color); /* Gefüllte Sterne */
}


/* ======================================================= */
/* VI. MODAL SPALTEN-ANSICHT */
/* ======================================================= */

/* Container für 2-Spalten-Layout (Desktop) */
.modal-columns-container {
    display: flex;
    gap: 40px;
    margin-top: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color); 
}

/* Beide Spalten nehmen gleich viel Platz ein */
.modal-ingredients-column, 
.modal-meta-column {
    flex: 1; 
}

/* Styling der Überschriften in den Spalten */
.modal-meta-column h3,
.modal-ingredients-column h3 {
    font-family: var(--font-serif);
    color: var(--accent-color); 
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Listen-Styling für Zutaten */
.modal-ingredients-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.modal-ingredients-column li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color); 
    font-weight: 400;
}

.modal-ingredients-column li:last-child {
    border-bottom: none; 
}

/* Styling der Metadaten/Fakten */
.modal-meta-column p {
    line-height: 2;
    margin: 0;
}

.modal-content-text strong {
    color: var(--text-light); 
    margin-right: 5px;
}

/* Styling für die Zubereitung */
.modal-content-text h3:last-of-type { 
    margin-top: 25px; 
}
.modal-content-text .instructions-text {
    white-space: pre-wrap; 
}


/* Responsive Design: Spalten auf Mobilgeräten stapeln */
@media (max-width: 768px) {
    .modal-columns-container {
        flex-direction: column; 
        gap: 0;
        border-bottom: none;
    }

    /* Fügt Trennlinien nur zwischen den gestapelten Sektionen hinzu */
    .modal-ingredients-column {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 20px;
    }
    
    .recipe-modal-content {
        padding: 20px;
        margin: 20px auto;
    }
    
    .close-btn {
        right: 15px;
    }
}

/* ========================================= */
/* VII. SONSTIGES & KORREKTUREN */
/* ========================================= */

/* Korrigierter Selektor für die (wahrscheinlich) unerwünschte Zeile im Modal */
/* Ziel: Falls die Zubereitungsmethode im Skript doppelt gerendert wird */
/* Bitte anpassen, wenn der genaue HTML-Selektor bekannt ist! */
.modal-content-text .cocktail-prep-method {
    /* Beispiel-Korrektur, falls ein unnötiges Element existiert */
    /* display: none; */ 
}