/* =========================================
   GASTROFLOW - TEMPLATES GLOBAL STYLES
   ========================================= */

/* Βασικές Ρυθμίσεις / Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Βγάζει το μπλε κουτάκι στα κινητά */
}

/* Ομαλό scroll όταν πατάς μια κατηγορία */
html {
    scroll-behavior: smooth;
}

/* Κρύβουμε την κλασική μπάρα scroll για να φαίνεται σαν app */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

@media (min-width: 768px) {
    .category-nav { 
        justify-items: center;
    }
}

/* =========================================
   THEME 1: DARK GOLD (Premium)
   ========================================= */
.theme-elegant-dark {
    /* Gradient αποχρώσεις (πολύ σκούρο μπλε-γκρι προς μαύρο) */
    background: linear-gradient(135deg, #1c1c24 0%, #0d0d12 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* --- HEADER --- */
.menu-header {
    text-align: center;
    padding: 50px 20px 30px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e8d099; /* Απαλό χρυσό/σαμπανιζέ */
    margin-bottom: 5px;
}

.brand-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #8c8c9e;
}

/* --- TAGS NAVIGATION (Sticky & Horizontal Scroll) --- */
.category-nav {
    position: sticky;
    top: 0;
    /* Ημιδιαφανές χρώμα με blur για να φαίνεται ωραία όταν σκρολάρεις από κάτω */
    background-color: rgba(20, 20, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    padding: 0 20px;
    margin-top: 15px;
    gap: 25px;
    /* Κρύβει το οριζόντιο scrollbar στα tags */
    scrollbar-width: none; 
}

.category-list::-webkit-scrollbar {
    display: none; 
}

.category-list li {
    white-space: nowrap;
}

.category-list a {
    text-decoration: none;
    color: #8c8c9e;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.category-list a.active {
    color: #e8d099;
    border-bottom: 2px solid #e8d099;
}

/* --- MENU CONTENT --- */
.menu-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-section {
    /* Σημαντικό: Για να μην κρύβεται ο τίτλος πίσω από το sticky μενού όταν πατάς το tag */
    scroll-margin-top: 80px; 
    margin-bottom: 50px;
    padding-top: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #e8d099;
    margin-bottom: 25px;
    text-align: center;
}

/* --- MENU ITEMS (Text Only) --- */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Πολύ διακριτική γραμμή */
}

.menu-item:last-child {
    border-bottom: none;
}

.item-text {
    flex: 1;
    padding-right: 20px;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.item-desc {
    font-size: 0.85rem;
    color: #a0a0b5;
    line-height: 1.5;
}

.item-price {
    font-weight: 600;
    color: #e8d099;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-top: 2px;
}

/* --- FOOTER (Powered By) --- */
.menu-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-footer a {
    text-decoration: none;
    color: #8c8c9e;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu-footer a span {
    font-weight: 600;
    color: #ffffff;
}

.menu-footer a:hover span {
    color: #e8d099;
}


/* =========================================
   GASTROFLOW - THEME 2: LIGHT BRUNCH & CAFE
   ========================================= */

.theme-light-brunch {
    background-color: #F8F9FA; /* Πολύ απαλό "Off-White" */
    color: #2D3436;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* --- HEADER --- */
.theme-light-brunch .menu-header {
    text-align: center;
    padding: 50px 20px 30px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.theme-light-brunch .brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FF6B6B; /* Ένα ωραίο Κοραλί χρώμα / Salmon */
    margin-bottom: 5px;
}

.theme-light-brunch .brand-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #636E72;
}

/* --- TAGS NAVIGATION (Sticky) --- */
.theme-light-brunch .category-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Πολύ ελαφριά σκιά κάτω από τα tags */
}

.theme-light-brunch .category-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    padding: 0 20px;
    gap: 20px;
    scrollbar-width: none; 
}

.theme-light-brunch .category-list::-webkit-scrollbar {
    display: none; 
}

.theme-light-brunch .category-list a {
    text-decoration: none;
    color: #636E72;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 16px;
    background: #F1F2F6;
    border-radius: 20px; /* Κουμπάκια σε σχήμα "χαπιού" */
}

.theme-light-brunch .category-list a.active {
    background: #FF6B6B;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* --- MENU CONTENT --- */
.theme-light-brunch .menu-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.theme-light-brunch .menu-section {
    scroll-margin-top: 90px; 
    margin-bottom: 40px;
    padding-top: 10px;
}

.theme-light-brunch .section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2D3436;
    margin-bottom: 20px;
    text-align: left; /* Αριστερή στοίχιση για πιο μοντέρνο look */
    border-bottom: 2px solid #FF6B6B;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- MENU ITEMS (Κάρτες) --- */
.theme-light-brunch .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Ελαφριά σκιά για να ξεχωρίζει από το φόντο */
    border: 1px solid rgba(0,0,0,0.02);
}

.theme-light-brunch .item-text {
    flex: 1;
    padding-right: 15px;
}

.theme-light-brunch .item-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2D3436;
}

.theme-light-brunch .item-desc {
    font-size: 0.85rem;
    color: #636E72;
    line-height: 1.4;
}

.theme-light-brunch .item-price {
    font-weight: 600;
    color: #FF6B6B;
    font-size: 1.1rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

/* --- FOOTER --- */
.theme-light-brunch .menu-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 10px;
}

.theme-light-brunch .menu-footer a {
    text-decoration: none;
    color: #636E72;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.theme-light-brunch .menu-footer a span {
    font-weight: 700;
    color: #FF6B6B;
}

/* =========================================
   GASTROFLOW - THEME 3: STREET FOOD & BURGERS
   ========================================= */

.theme-street-food {
    background-color: #111111; /* Πολύ σκούρο γκρι/μαύρο */
    color: #f4f4f4;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

/* =========================================
   LANGUAGE SWITCHER (GR / EN) - FLEXBOX FIX
   ========================================= */

/* Μετατρέπουμε το Header σε Flexbox για τέλεια στοίχιση */
.theme-street-food .menu-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Κεντράρει το URBAN BITES */
    padding: 25px 20px 30px; /* Αφήνει σωστό αέρα από το "notch" του κινητού */
}

/* Το κουμπί δεν είναι πια absolute. Ευθυγραμμίζεται φυσικά δεξιά */
.lang-switcher {
    align-self: flex-end; /* Το σπρώχνει τέρμα δεξιά μέσα στο header */
    display: flex;
    background: rgba(30, 30, 30, 0.85); 
    backdrop-filter: blur(8px); 
    border: 1px solid #333333;
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 15px; /* Δίνει ωραίο αέρα πριν το URBAN BITES */
    z-index: 100;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #888888;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ενεργή κατάσταση */
.lang-btn.active {
    background: #FFD700; /* Street food κίτρινο */
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

/* Λογική Εμφάνισης/Απόκρυψης Γλωσσών */
body.lang-el .lang-en { display: none !important; }
body.lang-en .lang-el { display: none !important; }
/* --- HEADER --- */
.theme-street-food .menu-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: #1a1a1a;
    border-bottom: 3px solid #FFD700; /* Neon Yellow Accent */
}

.theme-street-food .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #FFD700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.theme-street-food .brand-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaaaaa;
}

/* --- TAGS NAVIGATION --- */
.theme-street-food .category-nav {
    position: sticky;
    top: 0;
    background-color: #1a1a1a;
    z-index: 100;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.theme-street-food .category-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    padding: 0 20px;
    gap: 15px;
    scrollbar-width: none; 
}

.theme-street-food .category-list::-webkit-scrollbar {
    display: none; 
}

.theme-street-food .category-list a {
    text-decoration: none;
    color: #888888;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 8px;
}

.theme-street-food .category-list a.active {
    color: #111;
    background-color: #FFD700;
    border-color: #FFD700;
}

/* --- MENU CONTENT --- */
.theme-street-food .menu-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.theme-street-food .menu-section {
    scroll-margin-top: 90px; 
    margin-bottom: 50px;
}

.theme-street-food .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MENU ITEMS ΜΕ THUMBNAILS (Efood/Wolt Style) --- */
.theme-street-food .menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #2a2a2a;
}

.theme-street-food .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-street-food .item-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.theme-street-food .item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.theme-street-food .item-desc {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.4;
    margin-bottom: 10px;
    padding-right: 10px;
}

.theme-street-food .item-price {
    font-weight: 700;
    color: #FFD700;
    font-size: 1.15rem;
}

/* Thumbnails (Δεξιά Εικόνα) */
.theme-street-food .item-thumb {
    width: 90px;
    height: 90px;
    flex-shrink: 0; /* Δεν μικραίνει ποτέ */
    margin-left: 15px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #2a2a2a; /* Placeholder χρώμα αν λείπει η εικόνα */
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-street-food .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BADGES (Ετικέτες) --- */
.theme-street-food .badge {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular { background: #FFD700; color: #111; }
.badge-spicy { background: #E53935; color: #fff; }
.badge-new { background: #8E24AA; color: #fff; }
.badge-vegan { background: #43A047; color: #fff; }

/* --- FOOTER --- */
.theme-street-food .menu-footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #2a2a2a;
}

.theme-street-food .menu-footer a {
    text-decoration: none;
    color: #888888;
    font-size: 0.85rem;
}

.theme-street-food .menu-footer a span {
    font-weight: 700;
    color: #FFD700;
}
/* =========================================
   GASTROFLOW - THEME 4: BEACH BAR ACCORDION
   ========================================= */

.theme-beach-bar {
    background-color: #F0F4F8; /* Πολύ απαλό, δροσερό γαλάζιο/γκρι */
    color: #2C3E50;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    padding-bottom: 80px; /* Χώρος για το floating button */
}

/* --- HEADER --- */
.theme-beach-bar .menu-header {
    text-align: center;
    background: linear-gradient(135deg, #005C97 0%, #363795 100%);
    color: white;
    padding: 60px 20px 40px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 92, 151, 0.2);
    margin-bottom: 30px;
}

.theme-beach-bar .brand-name {
    font-family: 'Kufam', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.theme-beach-bar .brand-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* --- ACCORDION SYSTEM --- */
.theme-beach-bar .menu-content {
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
}

.theme-beach-bar .accordion-section {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden; /* Κρατάει τα πάντα μέσα στις στρογγυλές γωνίες */
}

/* Το Κουμπί / Τίτλος της Κατηγορίας */
.theme-beach-bar .accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    font-family: 'Kufam', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #005C97;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.theme-beach-bar .accordion-header span i {
    margin-right: 10px;
    color: #363795;
    width: 20px;
    text-align: center;
}

.theme-beach-bar .icon-arrow {
    font-size: 1rem;
    color: #95a5a6;
    transition: transform 0.4s ease; /* Ομαλή περιστροφή του βέλους */
}

/* Ειδικό χρώμα για "Highlight" κατηγορία (π.χ. Cocktails) */
.theme-beach-bar .accordion-header.highlight {
    background: #FFF5F5;
    color: #E74C3C;
}
.theme-beach-bar .accordion-header.highlight span i { color: #E74C3C; }

/* Το περιεχόμενο (Πιάτα) - Κρυμμένο by default */
.theme-beach-bar .accordion-content {
    display: none; /* Κρύβεται εντελώς αντί για max-height */
    background: #fafbfc;
}

/* ΟΤΑΝ ΕΙΝΑΙ ΑΝΟΙΧΤΟ (Active State) */
.theme-beach-bar .accordion-section.active .accordion-content {
    display: block; /* Εμφανίζεται ακαριαία */
    padding: 10px 20px 20px;
    border-top: 1px solid #f0f0f0;
}


.theme-beach-bar .accordion-section.active .icon-arrow {
    transform: rotate(180deg);
    color: #005C97;
}

/* --- MENU ITEMS --- */
.theme-beach-bar .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.theme-beach-bar .menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.theme-beach-bar .item-text {
    flex: 1;
    padding-right: 15px;
}

.theme-beach-bar .item-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 4px;
}

.theme-beach-bar .item-desc {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.4;
}

.theme-beach-bar .item-price {
    font-weight: 700;
    color: #005C97;
    font-size: 1.1rem;
}

/* --- FLOATING ACTION BUTTON (FAB) --- */
.theme-beach-bar .floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #E74C3C; /* Έντονο κόκκινο/κοραλί */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.theme-beach-bar .floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
}

/* --- FOOTER --- */
.theme-beach-bar .menu-footer {
    text-align: center;
    padding: 20px;
}
.theme-beach-bar .menu-footer a {
    text-decoration: none;
    color: #95a5a6;
    font-size: 0.85rem;
}
.theme-beach-bar .menu-footer a span {
    font-weight: 700;
    color: #005C97;
}

/* =========================================
   GASTROFLOW - THEME 5: LIGHT LINE-ART PIZZERIA
   ========================================= */

.theme-italian-light {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* --- ΓΡΑΦΙΚΑ ΦΟΝΤΟΥ (Line Art) --- */
.theme-italian-light .bg-graphic {
    position: absolute;
    color: #000000;
    opacity: 0.04; /* Πολύ αχνό για να μην ενοχλεί το διάβασμα */
    z-index: 0;
    pointer-events: none;
}

.theme-italian-light .bg-pizza { top: 80px; right: -20px; font-size: 8rem; transform: rotate(15deg); }
.theme-italian-light .bg-leaf { top: 400px; left: -10px; font-size: 6rem; transform: rotate(-25deg); }
.theme-italian-light .bg-pepper { bottom: 200px; right: 10px; font-size: 5rem; transform: rotate(45deg); }

/* --- HEADER --- */
.theme-italian-light .menu-header {
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 10;
}

.theme-italian-light .brand-name {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.theme-italian-light .brand-subtitle {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TAGS ΜΕ ΕΙΚΟΝΙΔΙΑ --- */
.theme-italian-light .category-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    z-index: 100;
}

.theme-italian-light .category-scroll-container {
    display: flex;
    overflow-x: auto;
    padding: 10px 15px;
    scrollbar-width: none;
    gap: 20px;
}

.theme-italian-light .category-scroll-container::-webkit-scrollbar { display: none; }

.theme-italian-light .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #a0a0a0;
    transition: all 0.3s;
    min-width: 60px;
}

.theme-italian-light .category-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.theme-italian-light .category-item span {
    font-size: 0.75rem;
    font-weight: 700;
}

.theme-italian-light .category-item.active {
    color: #000000;
}

/* --- MENU CONTENT & TITLES --- */
.theme-italian-light .menu-content {
    padding: 20px;
    position: relative;
    z-index: 10;
}

.theme-italian-light .menu-section {
    scroll-margin-top: 100px; 
    margin-bottom: 40px;
}

.theme-italian-light .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.theme-italian-light .section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.theme-italian-light .tiny-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    margin-left: 8px;
}

/* --- ΚΑΡΟΥΖΕΛ (SIGNATURE) --- */
.theme-italian-light .signature-cards-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.theme-italian-light .signature-cards-container::-webkit-scrollbar { display: none; }

.theme-italian-light .signature-card {
    min-width: 160px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    scroll-snap-align: start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.theme-italian-light .card-graphic {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 12px;
    opacity: 0.8;
}

.theme-italian-light .signature-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.theme-italian-light .signature-card .description {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.3;
    margin-bottom: 10px;
}

.theme-italian-light .signature-card .price {
    font-weight: 700;
    font-size: 1.1rem;
}
/* --- ΛΙΣΤΑ ΜΕ ΔΙΑΚΕΚΟΜΜΕΝΕΣ ΓΡΑΜΜΕΣ (100% MOBILE-FRIENDLY) --- */
.theme-italian-light .list-item {
    margin-bottom: 25px; /* Λίγος παραπάνω αέρας για τα κινητά */
}

.theme-italian-light .item-line {
    display: flex;
    align-items: flex-end; /* ΣΗΜΑΝΤΙΚΟ: Ευθυγραμμίζει τα πάντα στην ΚΑΤΩ μεριά (έτσι αν το κείμενο σπάσει σε 2η γραμμή, η τιμή ακολουθεί σωστά) */
    width: 100%;
    margin-bottom: 6px;
}

.theme-italian-light .item-name {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1; /* Σταθερό ύψος γραμμής για να μην "πηδάει" το κείμενο */
    color: #000;
    flex-shrink: 1; /* Επιτρέπει στο όνομα να σπάσει σε 2η γραμμή στα πολύ μικρά κινητά */
}

/* Διορθώνει τα εικονίδια για να μην χαλάνε την ευθυγράμμιση */
.theme-italian-light .item-name i {
    font-size: 0.85rem;
    margin-left: 6px;
    vertical-align: middle;
}
.theme-italian-light .icon-vegan { color: #2A9D8F; }
.theme-italian-light .icon-spicy { color: #E63946; }

.theme-italian-light .dotted-line {
    flex-grow: 1;
    border-bottom: 2px dotted #cccccc;
    margin: 0 10px;
    position: relative;
    top: -4px; /* Σηκώνει ελαφρώς τη γραμμή για οπτική ισορροπία */
    min-width: 20px; /* Εξασφαλίζει ότι θα υπάρχει πάντα λίγη γραμμή, ακόμα και σε στενές οθόνες */
}

.theme-italian-light .item-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.1; /* Ίδιο ύψος με τον τίτλο */
    color: #000;
    white-space: nowrap; /* Απαγορεύει στην τιμή να κοπεί στη μέση */
    flex-shrink: 0; /* Απαγορεύει στην τιμή να συμπιεστεί αν δεν υπάρχει χώρος */
}

.theme-italian-light .item-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    padding-right: 15px; /* Αποτρέπει το κείμενο από το να κολλάει στην άκρη στο κινητό */
}

/* --- STICKY CHECKOUT BAR --- */
.theme-italian-light .sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

.theme-italian-light .cart-total {
    font-size: 1.1rem;
    color: #000;
}

.theme-italian-light .cart-total i {
    margin-right: 8px;
    color: #666;
}

.theme-italian-light .btn-checkout {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- FOOTER --- */
.theme-italian-light .menu-footer {
    text-align: center;
    padding: 20px;
}
.theme-italian-light .menu-footer a {
    text-decoration: none;
    color: #888;
    font-size: 0.85rem;
}
.theme-italian-light .menu-footer a span {
    font-weight: 700;
    color: #000;
}