/* style.css */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: clip; 
    background-color: #2b2b2b !important; /* Ανθρακί χρώμα */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #2b2b2b !important; /* Ανθρακί χρώμα */
    padding-bottom: 20px;
    color: #333;
    padding-bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    padding-bottom: 130px;
}

/* --- HEADER --- */
.restaurant-header {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.restaurant-header h1 { margin: 0; font-size: 28px; letter-spacing: 1px; }
.restaurant-header p { margin: 5px 0 15px 0; font-weight: 300; opacity: 0.9; }

/* --- KATHGOΡIES (STICKY) --- */
.category-nav {
    position: sticky;
    top: 0;
    background-color: #2b2b2b !important;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.cat-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    background: #3c3c3c;
    color: #eee;
    box-shadow: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.cat-btn.active {
    background: #FFCC00; /* Baghetto Yellow */
    color: #111; /* Μαύρα γράμματα για έντονη αντίθεση */
    transform: scale(1.05);
}

/* --- MENU ITEMS --- */
.container { padding: 20px; }

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Class για απόκρυψη όταν φιλτράρουμε */
.hidden { display: none !important; }

.item-text { flex: 1; padding-right: 15px; }
.item-text h3 { margin: 0 0 5px 0; font-size: 17px; }
.item-text p { margin: 0 0 10px 0; font-size: 13px; color: #777; }
.price { font-weight: 800; font-size: 15px; }

.item-img {
    width: 110px;
    height: 110px;
    position: relative;
    flex-shrink: 0;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* --- FOOTER & SOCIAL MEDIA --- */
.social-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
    margin-bottom: 60px;
    background-color: transparent;
    border-top: 1px solid #444;
}

.social-footer h3 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Εφέ Hover: Όταν ο πελάτης ακουμπάει το κουμπί, παίρνει το χρώμα της πλατφόρμας */
.social-icons a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icons a:has(.fa-instagram):hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 
}
.social-icons a:has(.fa-facebook-f):hover { background: #1877F2; }
.social-icons a:has(.fa-tiktok):hover { background: #000000; }
.social-icons a:has(.fa-google):hover { background: #DB4437; }

/* --- MENU INFO BAR (VAT & Αλλεργιογόνα) --- */
.menu-info-bar {
    padding: 20px 0 10px 0;
    margin-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center; /* Κεντράρει το κουμπί οριζόντια */
    justify-content: center;
    gap: 10px;
    text-align: center; /* Κεντράρει το κείμενο του ΦΠΑ */
}

.vat-text {
    margin: 0;
    font-size: 13px;
    color: #aaaaaa;
    width: 100%; /* Διασφαλίζει ότι το text-align θα δουλέψει */
}

.allergens-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 18px; /* Λίγο περισσότερο padding για να δείχνει καλύτερα στο κέντρο */
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    border-color: #666;
    cursor: pointer;
    width: fit-content; /* Το κουμπί θα έχει το μέγεθος του περιεχομένου του */
    transition: all 0.2s ease;
}

/* Τα υπόλοιπα (hover, εικονίδια κλπ) παραμένουν ως έχουν */
.allergens-btn i {
    font-size: 16px;
    color: #ffffff;
}

.allergens-btn:active {
    background: #eee;
    transform: scale(0.95);
}

/* --- MODAL (Αναδυόμενο Παράθυρο) --- */
.modal-overlay {
    display: none; /* Είναι κρυφό μέχρι να το καλέσει το κουμπί */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Σκοτεινό ημιδιάφανο φόντο */
    z-index: 1000; /* Πάνω από όλα τα άλλα στοιχεία */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    /* Το animation για την εμφάνιση */
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; 
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #222;
}

.allergens-list p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.allergens-list p em {
    font-size: 12px;
    color: #e74c3c; /* Κόκκινο για να τραβάει την προσοχή */
}

/* Κουμπί κλεισίματος "X" */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f1f1;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #555;
    font-size: 16px;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #e2e2e2;
    color: #000;
}

/* --- SCROLL TO TOP BUTTON --- */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99; /* Για να είναι πάνω από τα πιάτα */
    background-color: #FFCC00; /* Baghetto Yellow */
    color: #111; /* Μαύρο βελάκι για αντίθεση */
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4); /* Κίτρινη σκιά */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Αρχικά κρυμμένο */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Η κλάση που θα προσθέτει η Javascript όταν σκρολάρουμε */
#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Εφέ όταν το πατάει ο χρήστης */
#scrollToTopBtn:hover, #scrollToTopBtn:active {
    background-color: #e6b800; /* Ελαφρώς πιο σκούρο κίτρινο στο hover */
    transform: translateY(-3px);
}

/* --- STORE INFO MODAL STYLES --- */
.store-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.store-info-list p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    font-size: 15px;
    color: #444;
}

/* Χρώμα και μέγεθος για τα εικονίδια (πινέζα, τηλέφωνο κλπ) */
.store-info-list i {
    color: #222; 
    font-size: 18px;
    width: 20px; /* Σταθερό πλάτος για να στοιχίζονται ωραία τα κείμενα δίπλα τους */
    text-align: center;
}

.store-info-list a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.store-info-list a:hover {
    color: #000;
    text-decoration: underline;
}

/* --- GOOGLE REVIEWS BANNER --- */
.reviews-banner {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    margin: 30px 20px 10px 20px; /* Κενά για να "αναπνέει" */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Πολύ απαλή σκιά */
    border: 1px solid #f2f2f2; /* Λεπτό, διακριτικό περίγραμμα */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reviews-text h3 {
    margin: 0 0 5px 0;
    font-size: 17px;
    color: #222;
    font-weight: 800;
}

.reviews-text p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Το G της Google σε κόκκινο χρώμα για να τραβάει διακριτικά την προσοχή */
.google-review-btn i {
    color: #DB4437; 
    font-size: 16px;
}

/* Εφέ όταν ο χρήστης πατάει το κουμπί */
.google-review-btn:hover, .google-review-btn:active {
    background: #fcfcfc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ccc;
}


/* --- ΕΙΔΙΚΑ ΣΤΥΛ ΓΙΑ ΤΟ MODAL ΤΩΝ ΚΡΙΤΙΚΩΝ --- */
.reviews-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviews-modal-content h2 {
    margin-bottom: 5px;
}

.reviews-subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

/* --- ΤΙΤΛΟΙ ΠΙΑΤΩΝ ΚΑΙ BADGES (Top & Vegan) --- */
.item-text h3 { 
    margin: 0 0 8px 0; 
    font-size: 17px; 
    display: flex; 
    align-items: center; 
    flex-wrap: wrap; /* Αν ο τίτλος είναι τεράστιος, το εικονίδιο πάει από κάτω αντί να χαλάσει η διάταξη */
    gap: 8px; /* Κενό ανάμεσα στον τίτλο και τα καρτελάκια */
}

/* Το πράσινο φυλλαράκι */
.vegan-icon {
    color: #27ae60; /* Φυσικό, ξεκούραστο πράσινο */
    font-size: 14px;
}

/* Το καρτελάκι για τα Δημοφιλέστερα */
.popular-badge {
    background-color: #fff3cd; /* Απαλό κίτρινο/πορτοκαλί φόντο */
    color: #d35400; /* Σκούρο πορτοκαλί στα γράμματα */
    font-size: 11px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge i {
    font-size: 11px;
}

/* --- SEARCH BAR STYLES --- */
.search-container {
    padding: 10px 20px;
    background-color: #2b2b2b !important; /* Ίδιο με το background του site */
}

.search-box {
    background: white;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Εφέ όταν ο χρήστης επιλέγει την αναζήτηση */
.search-box:focus-within {
    border-color: #222;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.search-box i {
    color: #999;
    margin-right: 12px;
    font-size: 16px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.search-box input::placeholder {
    color: #aaa;
}


/* --- ΜΠΑΡΑ ΓΛΩΣΣΩΝ (Ξεχωριστή & Non-Sticky) --- */
.top-lang-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 10px 10px 10px;
    background-color: #2b2b2b !important;; /* Δένει με το φόντο της σελίδας */
}

.lang-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Πολύ απαλή σκιά */
}

.lang-flag:hover {
    opacity: 0.8;
}

.lang-flag.active {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* --- ΚΑΤΗΓΟΡΙΕΣ (Ξεχωριστές) --- */
.category-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #444;
    padding: 10px 20px 15px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid #eee;
}
.category-nav::-webkit-scrollbar { display: none; }

/* --- GLOBE LANG BUTTON (Πάνω δεξιά στην εικόνα) --- */
.restaurant-header {
    position: relative; /* Απαραίτητο για να "κάτσει" το κουμπί σωστά μέσα του */
}

.globe-lang-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4); /* Ημιδιάφανο μαύρο */
    backdrop-filter: blur(8px); /* Εφέ θολωμένου γυαλιού (Premium!) */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
    z-index: 10;
}

.globe-lang-btn:hover, .globe-lang-btn:active {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(0.95);
}

/* --- LANG MODAL STYLES (Κομψή λίστα γλωσσών) --- */
.lang-modal-content {
    text-align: center;
}

.lang-modal-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #222;
}

.lang-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-list button {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-list button:active {
    background: #222;
    color: white;
}

/* --- DEVELOPER CREDIT (ΑΠΟΛΥΤΟ ΚΑΤΩ ΜΕΡΟΣ) --- */
.developer-credit {
    background-color: #1a1a1a; 
    text-align: center;
    padding: 20px 20px; 
    
    /* Η μαγεία που το κάνει edge-to-edge και πάντα στο τέρμα: */
    bottom: 0;
    left: 0;
    width: 100%; 
    
    box-sizing: border-box; 
    display: block;
    margin: 0; /* Μηδενίζουμε τα margins γιατί χρησιμοποιούμε absolute */
}

/* Αυτά παραμένουν ίδια */
.developer-credit a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px; 
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.7; 
    transition: opacity 0.3s ease;
}

.developer-credit a:hover, 
.developer-credit a:active {
    opacity: 1; 
}

/* --- ΠΡΟΣΘΗΚΗ ΠΙΑΤΩΝ ΣΤΗΝ ΠΑΡΑΓΓΕΛΙΑ --- */
.price-action {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}

.add-to-order-btn {
    background: #FFCC00; /* Baghetto Yellow */
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #111; /* Μαύρο σταυρουδάκι για αντίθεση */
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3); /* Απαλή κίτρινη σκιά */
}

.add-to-order-btn:active {
    background: #e6b800; /* Πιο σκούρο κίτρινο όταν το πατάς */
    color: #111;
    transform: scale(0.85);
}

/* --- ΑΙΩΡΟΥΜΕΝΟ ΚΟΥΜΠΙ ΠΑΡΑΓΓΕΛΙΑΣ --- */
#floating-order-btn {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(150px); /* Αρχικά κρυμμένο προς τα κάτω */
    background: #FFCC00;
    color: #111;
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* ΑΥΤΗ Η ΚΛΑΣΗ ΕΙΝΑΙ ΚΡΙΣΙΜΗ ΓΙΑ ΝΑ ΕΜΦΑΝΙΣΤΕΙ ΟΤΑΝ ΒΑΛΕΙΣ ΠΙΑΤΟ */
#floating-order-btn.visible {
    transform: translateX(-50%) translateY(0);
}

#order-count {
    background: #111; /* Μαύρο κυκλάκι */
    color: #FFCC00; /* Κίτρινος αριθμός */
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

#order-count {
    background: #fff;
    color: #222;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

/* --- ΚΟΥΜΠΙ ΠΑΡΑΓΓΕΛΙΑΣ (+) ΠΑΝΩ ΣΤΗΝ ΕΙΚΟΝΑ --- */

/* Βεβαιωνόμαστε ότι το κουτί της εικόνας μπορεί να κρατήσει το κουμπί */
.item-img {
    width: 110px;
    height: 110px;
    position: relative; /* Απαραίτητο για να καρφιτσωθεί το κουμπί πάνω του */
    flex-shrink: 0;
}

.add-to-order-btn {
    position: absolute;
    bottom: -8px;  /* Βγαίνει λίγο πιο κάτω από την εικόνα */
    right: -8px;   /* Βγαίνει λίγο πιο δεξιά από την εικόνα */
    background: #222; /* Σκούρο/Premium χρώμα */
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Απαλή σκιά για βάθος */
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Ελαστικό εφέ */
    z-index: 10;
}

/* Όταν το πατάει ο πελάτης, "βουλιάζει" ελαφρώς */
.add-to-order-btn:active {
    transform: scale(0.85);
    background: #000;
}

/* Διαγράφουμε το .price-action γιατί δεν το χρειαζόμαστε πια! */
.price-action {
    display: none; 
}

/* --- MODAL ΠΑΡΑΓΓΕΛΙΑΣ (PREMIUM UI) --- */
#order-items-list {
    max-height: 55vh;
    overflow-y: auto;
    margin: 20px 0;
    padding-right: 5px; /* Μικρό κενό για τη μπάρα κύλισης */
}

/* Custom Μπάρα Κύλισης (Scrollbar) για να θυμίζει App */
#order-items-list::-webkit-scrollbar { width: 4px; }
#order-items-list::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
#order-items-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* Η γραμμή κάθε πιάτου */
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f2f2f2;
}

.order-item-row:last-child {
    border-bottom: none; /* Η τελευταία γραμμή δεν χρειάζεται περίγραμμα */
}

/* Το όνομα του πιάτου */
.order-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    flex: 1; /* Πιάνει όλο τον κενό χώρο αριστερά */
    text-align: left;
    padding-right: 15px;
}

/* Το δεξί κομμάτι (Τιμή + Κουμπί Διαγραφής) */
.order-item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-item-price {
    font-size: 15px;
    color: #555;
    font-weight: 600;
}

/* Το κουμπάκι διαγραφής (Κάδος) */
.remove-item-btn {
    background: #fff0f0; /* Απαλό κόκκινο φόντο */
    border: none;
    color: #e74c3c; /* Έντονο κόκκινο εικονίδιο */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.remove-item-btn:hover, .remove-item-btn:active {
    background: #e74c3c;
    color: white;
    transform: scale(0.9);
}

/* Η μπάρα του συνόλου στο κάτω μέρος */
.order-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    background: #f9f9f9;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid #eee;
}

/* --- QUANTITY CONTROLS (- 1 +) ΣΤΟ ΚΑΛΑΘΙ --- */
.qty-control {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 4px;
    gap: 10px;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.qty-btn:active {
    transform: scale(0.85);
}

/* Το κουμπί + το κάνουμε μαύρο για να ξεχωρίζει */
.qty-btn.plus {
    background: #FFCC00;
    color: #111;
}

.qty-btn.plus:active {
    background: #e6b800;
}

/* Ο αριθμός της ποσότητας */
.qty-text {
    font-weight: 700;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
    color: #222;
}

/* --- ΩΡΑΡΙΟ ΛΕΙΤΟΥΡΓΙΑΣ ΣΤΟ INFO MODAL --- */
.info-divider {
    border: 0;
    height: 1px;
    background: #f0f0f0;
    margin: 25px 0 20px 0;
}

.store-schedule h3 {
    font-size: 15px;
    color: #222;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Βάζουμε αυτόματα ένα εικονίδιο ρολογιού δίπλα στον τίτλο */
.store-schedule h3::before {
    content: '\f017'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    color: #777;
    font-size: 16px;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e5e5; /* Κομψή διακεκομμένη γραμμή */
}

.schedule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-row strong {
    color: #111;
    font-weight: 700;
}
/* --- ΤΙΤΛΟΙ ΚΑΤΗΓΟΡΙΩΝ ΜΕΣΑ ΣΤΟ ΜΕΝΟΥ (EFOOD STYLE) --- */
.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    border-bottom: 2px solid #444;
    margin: 35px 0 15px 0;
    padding-bottom: 8px;
    text-transform: capitalize;
}

/* Η πρώτη κατηγορία (πχ Pizza) δεν χρειάζεται τεράστιο κενό από πάνω */
.menu-section:first-child .section-title {
    margin-top: 5px; 
}

/* --- ΚΟΥΜΠΙ ΑΠΟΣΤΟΛΗΣ ΠΑΡΑΓΓΕΛΙΑΣ --- */
.submit-order-btn {
    width: 100%;
    background: #FFCC00;
    color: #111;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    cursor: pointer;
    display: flex; /* ΑΥΤΟ ΤΟ ΕΜΦΑΝΙΖΕΙ! */
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.submit-order-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.submit-order-btn:active {
    transform: scale(0.98);
}

.submit-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* --- ΔΙΑΤΑΞΗ ΓΡΑΜΜΗΣ ΚΑΛΑΘΙΟΥ --- */
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Αλλαγή σε flex-start για να μην στριμώχνεται το input */
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px; /* Απόσταση ασφαλείας μεταξύ αριστερού και δεξιού μέρους */
}

/* Το αριστερό μέρος (Τίτλος + Σχόλιο) */
.order-item-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Κενό ανάμεσα στον τίτλο και το πεδίο */
}

.order-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

/* Το δεξί μέρος (Τιμή + Ποσότητα) */
.order-item-right {
    display: flex;
    flex-direction: column; /* Τα βάζουμε το ένα κάτω από το άλλο για πιο καθαρό UI */
    align-items: flex-end;
    gap: 12px;
}

.order-item-price {
    font-size: 15px;
    color: #222;
    font-weight: 800;
}


/* --- ΣΤΥΛ ΓΙΑ ΤΑ ΠΕΔΙΑ ΣΧΟΛΙΩΝ --- */

/* Σχόλιο ανά πιάτο */
.item-comment-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background-color: #fafafa;
    color: #333;
    transition: all 0.25s ease;
}

.item-comment-input::placeholder {
    color: #aaa;
}

.item-comment-input:focus {
    outline: none;
    border-color: #222;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

/* Γενικό Σχόλιο Παραγγελίας */
.general-comment-box {
    margin: 25px 0 15px 0;
}

#general-order-comment {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    resize: vertical;
    min-height: 85px;
    background-color: #fafafa;
    color: #333;
    transition: all 0.25s ease;
}

#general-order-comment::placeholder {
    color: #aaa;
}

#general-order-comment:focus {
    outline: none;
    border-color: #222;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}



















/* --- BOTTOM SHEET MODAL (Επιλογή Υλικών) --- */
#customization-modal {
    align-items: flex-end; /* Το κολλάει στο κάτω μέρος της οθόνης */
    padding: 0;
}

.bottom-sheet-content {
    background: #fff;
    width: 100%;
    border-radius: 25px 25px 0 0; /* Στρογγυλές γωνίες μόνο πάνω */
    padding: 25px 20px 35px 20px;
    position: relative;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    /* Εφέ εμφάνισης από κάτω προς τα πάνω */
    animation: slideUpSheet 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* --- Διόρθωση για μεγάλα Modals (ώστε να μην κόβεται το πάνω μέρος) --- */
.bottom-sheet-content, 
.modal-content {
    max-height: 85vh; /* Το παράθυρο θα πιάνει το πολύ το 85% του ύψους της οθόνης */
    overflow-y: auto; /* Αν το περιεχόμενο είναι μεγαλύτερο, δημιουργεί κάθετο scroll */
}

/* Προαιρετικά: Για να μην φαίνεται άσχημα το scrollbar στα κινητά */
.bottom-sheet-content::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.bottom-sheet-content::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

@keyframes slideUpSheet {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 40px; /* Για να μην πέφτει πάνω στο X */
}

.sheet-header h2 { margin: 0; font-size: 20px; color: #222; }
.sheet-header .price { font-size: 18px; font-weight: 800; color: #27ae60; }

.customization-section {
    margin-bottom: 20px;
}

.customization-section h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Όμορφα Checkboxes */
.ingredient-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #eee;
    transition: all 0.2s;
}

.ingredient-checkbox:active { transform: scale(0.98); }

/* Διορθώνει την ευθυγράμμιση κειμένου-κουτιού */
.ingredient-checkbox div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingredient-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #111; /* Σκούρο μαύρο/γκρι για να ταιριάζει με το Baghetto */
    margin: 0; /* Αφαιρεί περιττά κενά */
}

#custom-item-comment {
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #f9f9f9;
    resize: vertical;
    min-height: 80px;
}

#custom-item-comment:focus {
    outline: none;
    border-color: #222;
    background: #fff;
}

.add-to-cart-confirm-btn {
    margin-top: 10px;
    background: #FFCC00; /* Baghetto Yellow */
    color: #111; /* Μαύρα γράμματα για έντονη αντίθεση */
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3); /* Απαλή κίτρινη σκιά */
}


/* --- BILL DIVIDER (Διαχωρισμός Λογαριασμού) --- */
#toggle-divider-btn {
    background: transparent;
    border: 2px dashed #e0e0e0;
    color: #555;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    margin-top: 15px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#toggle-divider-btn:hover {
    background: #fafafa;
    border-color: #222;
    color: #222;
}

#bill-divider-container {
    background: #fdfdfd;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    display: none; /* Κρυφό αρχικά */
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    animation: slideDownDivider 0.3s ease forwards;
}

@keyframes slideDownDivider {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.divider-left { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.divider-left > span { 
    font-size: 13px; 
    color: #555; 
    font-weight: 600; 
}

.divider-right { text-align: right; }
.divider-right span { font-size: 13px; color: #777; }
.divider-right strong { 
    display: block; 
    font-size: 22px; 
    color: #27ae60; 
    font-weight: 800; 
    margin-top: 2px;
}




















/* --- ULTIMATE APP-STYLE DARK MODE --- */

/* 1. Το απόλυτο True Dark φόντο */
html, body {
    background-color: #121212 !important; 
    color: #ffffff;
}

/* 2. Κατηγορίες - Τέλειο blending στο φόντο */
.category-nav {
    background-color: #121212 !important;
    border: none !important;
    box-shadow: none !important; 
    padding-top: 15px;
}

.cat-btn {
    background: #242424; 
    border: 1px solid #333;
    color: #bbb;
    border-radius: 30px; 
}

.cat-btn.active {
    background: #FFCC00;
    color: #111;
    border-color: #FFCC00;
    font-weight: 800;
}

/* 3. Αναζήτηση - Κομψή και διακριτική */
.search-container {
    background-color: #121212 !important;
    padding: 10px 20px 20px 20px;
}

.search-box {
    background: #1e1e1e; 
    border: 1px solid #2c2c2c !important;
    box-shadow: none !important;
    border-radius: 18px; 
}

.search-box input { color: #ffffff; }
.search-box input::placeholder { color: #666; }
.search-box i { color: #666; }

/* 4. Τίτλοι - Καθαροί, χωρίς καμία απολύτως γραμμή */
.section-title {
    color: #ffffff;
    border-bottom: none !important; 
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 20px; /* Περισσότερος αέρας μέχρι το πρώτο πιάτο */
}

/* 5. Κάρτες Πιάτων - Το Premium άγγιγμα */
.menu-item {
    background: #1e1e1e; /* Ίδιο με την αναζήτηση για οπτική συνοχή */
    border: 1px solid #2a2a2a !important; /* Διακριτικό περίγραμμα, σαν ελαφρύ φως */
    box-shadow: 0 8px 25px rgba(0,0,0,0.6); /* Πιο βαθιά, μαλακή σκιά που χάνεται στο φόντο */
    border-radius: 20px; /* Πιο στρογγυλά, θυμίζει iOS */
}

.item-text h3 { color: #ffffff; font-weight: 700; }
.item-text p { color: #999999; }
.price { color: #FFCC00; font-weight: 900; font-size: 16px; }

/* 6. Κουμπί (+) - Κίτρινη Λάμψη */
.add-to-order-btn {
    background: #FFCC00;
    color: #111;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.25); /* Ελαφριά κίτρινη σκιά */
    width: 40px; 
    height: 40px;
}

/* --- ΕΠΑΝΑΦΟΡΑ & STYLING ΤΩΝ ΓΡΑΜΜΩΝ ΔΙΑΧΩΡΙΣΜΟΥ --- */

/* 1. Γραμμή κάτω από τους τίτλους των sections (π.χ. Starters, Sauce) */
.section-title {
    color: #ffffff !important;
    font-size: 22px !important; 
    padding-bottom: 12px !important;
    margin-top: 35px !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #2c2c2c !important; /* Η διαχωριστική γραμμή σε dark απόχρωση! */
}

/* 2. Γραμμή πάνω από την μπάρα πληροφοριών (ΦΠΑ, Αλλεργιογόνα) */
.menu-info-bar {
    border-top: 2px solid #2c2c2c !important;
    margin-top: 20px !important;
}

/* 3. Γραμμή πάνω από το Footer (Ακολουθήστε μας) */
.social-footer {
    border-top: 2px solid #2c2c2c !important;
}

/* --- Λευκά Γράμματα και Εικονίδια --- */

/* Κατάλευκα γράμματα στα κουμπιά των κατηγοριών (όταν δεν είναι ενεργά) */
.cat-btn {
    color: #ffffff !important;
}

/* Κατάλευκο εικονίδιο (μεγεθυντικός φακός) στην αναζήτηση */
.search-box i {
    color: #ffffff !important;
}


/* --- Μείωση του κενού μεταξύ Αναζήτησης και Πρώτης Κατηγορίας --- */

/* Μειώνουμε το πάνω κενό του κεντρικού container που έχει τα πιάτα */
.container {
    padding-top: 5px !important; 
}

/* Αφαιρούμε το μεγάλο περιθώριο ΕΙΔΙΚΑ από την πρώτη κατηγορία (π.χ. Starters) */
.menu-section:first-child .section-title {
    margin-top: 5px !important; 
}

/* Μειώνουμε λίγο το κενό κάτω από την μπάρα αναζήτησης */
.search-container {
    padding-bottom: 5px !important; 
}


/* --- Διόρθωση κειμένου μέσα στα λευκά Modals --- */
.modal-content, 
.bottom-sheet-content {
    color: #222222 !important; 
}

.modal-content h2, 
.modal-content h3, 
.modal-content p, 
.modal-content span, 
.modal-content div,
.bottom-sheet-content h2, 
.bottom-sheet-content h3, 
.bottom-sheet-content p, 
.bottom-sheet-content span, 
.bottom-sheet-content div {
    color: #222222 !important; 
}

/* Για να μην επηρεαστεί το πράσινο χρώμα της τιμής πάνω δεξιά */
.sheet-header .price {
    color: #27ae60 !important;
}