/* --- BASIS UND GEMEINSAME ELEMENTE --- */
.insta-menu-container {
    max-width: 900px;
    margin: 50px auto;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1a1a1a;
}

.insta-menu-cat-title {
    text-align: center;
    margin: 60px 0 40px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.insta-menu-cat-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #c0392b;
    margin: 10px auto;
}

/* --- STIL 1: MODERN CARD (style-modern) --- */
.style-modern .insta-dish-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
}

.style-modern .insta-dish-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.style-modern .insta-dish-price {
    background: #c0392b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
}

/* --- STIL 2: CLASSIC BISTRO (style-classic) --- */
.style-classic .insta-dish-item {
    margin-bottom: 30px;
}

.style-classic .insta-dish-main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.style-classic .insta-dish-spacer {
    flex: 1;
    border-bottom: 1px dotted #999;
    margin: 0 15px;
}

.style-classic .insta-dish-name {
    font-family: serif;
    font-size: 1.3rem;
}

.style-classic .insta-dish-price {
    font-weight: bold;
    font-family: serif;
}

/* --- STIL 3: MINIMALIST (style-minimal) --- */
.style-minimal .insta-dish-item {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.style-minimal .insta-dish-main {
    display: block;
    margin-bottom: 5px;
}

.style-minimal .insta-dish-price {
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 300;
}

.style-minimal .insta-dish-name {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- LEGENDE (Global angepasst) --- */
.insta-menu-legend {
    margin-top: 80px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.insta-menu-legend h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.insta-menu-legend ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.insta-menu-legend li {
    font-size: 0.8rem;
    color: #666;
}

.insta-menu-legend li strong {
    color: #000;
}


/* --- STIL 4: RUSTICO TRATTORIA (style-rustico) --- */
.style-rustico {
    background: #fffdfa;
    padding: 40px;
    border: 15px solid #f2f2f2;
    border-image: repeating-conic-gradient(#c0392b 0 25%, #fff 0 50%) 25% / 15px;
}

.style-rustico .insta-menu-cat-title {
    font-family: 'Georgia', serif;
    color: #c0392b;
    font-weight: bold;
}

.style-rustico .insta-dish-item {
    border-bottom: 1px dashed #c0392b;
    padding-bottom: 15px;
}

.style-rustico .insta-dish-name {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
}

/* --- STIL 5: LUXURY DARK (style-luxury) --- */
.style-luxury {
    background: #1a1a1a;
    color: #d4af37; /* Gold */
    padding: 50px;
    border-radius: 0;
}

.style-luxury .insta-menu-cat-title {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
}

.style-luxury .insta-dish-item {
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    background: #222;
}

.style-luxury .insta-dish-name {
    color: #fff;
    letter-spacing: 2px;
}

.style-luxury .insta-dish-price {
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 2px 10px;
}

.style-luxury .insta-dish-description {
    color: #999;
}

.style-luxury .insta-menu-legend {
    background: #222;
    border: 1px solid #d4af37;
}
