/* style.css */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden; 
    background-color: #22211f;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #22211f;
    padding-bottom: 20px;
    color: #e8e6e3;
    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('12.jpg');
    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: #22211f;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    z-index: 100;
    border-bottom: 1px solid #33312e;
}

.cat-btn {
    flex-shrink: 0;
    border: none;
    background: #2a2927;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #a8a5a0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.cat-btn.active {
    background: #00d4ff; /* Φωτεινό cyan μπλε */
    color: #121212; /* Σκούρο γράμμα για να κάνει αντίθεση με το ανοιχτό cyan */
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4); /* Ελαφρύ "glow" εφέ στο κουμπί */
}

/* --- MENU ITEMS --- */
.container { padding: 20px; }

.menu-item {
    background: #181716; 
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #33312e;
}

/* Class για απόκρυψη όταν φιλτράρουμε */
.hidden { display: none !important; }

.item-text { flex: 1; padding-right: 15px; }
.item-text h3 { margin: 0 0 5px 0; font-size: 17px; color: #e8e6e3; } 
.item-text p { margin: 0 0 10px 0; font-size: 13px; color: #a8a5a0; } 
.price { font-weight: 800; font-size: 15px; color: #00d4ff; } /* Cyan μπλε στην τιμή */

.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 #33312e; 
}

.social-footer h3 {
    font-size: 15px;
    color: #a8a5a0; 
    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: #2a2927; 
    color: #e8e6e3; 
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #00d4ff; /* Γίνεται cyan μπλε όταν περνάς το ποντίκι! */
    color: #121212;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Έβαλα κι ένα hover state για τα εικονίδια */
.social-icons a:hover {
    background: #00d4ff; /* Cyan μπλε στο γενικό hover */
    color: #121212;
}

/* Εφέ 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%); 
    color: white;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
}
.social-icons a:has(.fa-facebook-f):hover { 
    background: #1877F2; 
    color: white;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}
.social-icons a:has(.fa-tiktok):hover { 
    background: #000000; 
    color: #00d4ff; /* Βάζουμε το cyan αντί για άσπρο στο Tiktok για να ξεχωρίζει στο μαύρο φόντο */
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}
.social-icons a:has(.fa-google):hover { 
    background: #DB4437; 
    color: white;
    box-shadow: 0 0 15px rgba(219, 68, 55, 0.5);
}

/* --- MENU INFO BAR (VAT & Αλλεργιογόνα) --- */
.menu-info-bar {
    padding: 20px 0 10px 0;
    margin-top: 10px;
    border-top: 1px solid #33312e; /* Σκούρο περίγραμμα */
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 10px;
    text-align: center; 
}

.vat-text {
    margin: 0;
    font-size: 13px;
    color: #a8a5a0; /* Ανοιχτό γκρι αντί για #777 */
    width: 100%; 
}

.allergens-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #181716; /* Σκούρο φόντο στο κουμπί */
    border: 1px solid #33312e;
    padding: 10px 18px; 
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e8e6e3; /* Ανοιχτόχρωμο κείμενο */
    cursor: pointer;
    width: fit-content; 
    transition: all 0.2s ease;
}

.allergens-btn i {
    font-size: 16px;
    color: #00d4ff; /* Cyan εικονίδιο */
}

.allergens-btn:active {
    background: #2a2927;
    transform: scale(0.95);
    border-color: #00d4ff;
}

/* --- MODAL (Αναδυόμενο Παράθυρο) --- */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85); /* Πιο έντονο σκοτεινό φόντο */
    backdrop-filter: blur(5px); /* Θόλωμα στο background */
    z-index: 1000; 
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #181716; /* Σκούρο φόντο στο modal */
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 1px solid #33312e; /* Διακριτικό περίγραμμα */
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1); /* Απαλή cyan σκιά */
    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: #00d4ff; /* Cyan στον τίτλο των αλλεργιογόνων */
    border-bottom: 1px solid #33312e;
    padding-bottom: 10px;
}

.allergens-list p {
    font-size: 14px;
    color: #a8a5a0; /* Ανοιχτό γκρι κείμενο */
    margin-bottom: 12px;
    line-height: 1.5;
}

.allergens-list p em {
    font-size: 12px;
    color: #ff6b6b; /* Ένα πιο φωτεινό κόκκινο για την προειδοποίηση, ώστε να διαβάζεται στο μαύρο */
}

/* Κουμπί κλεισίματος "X" */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2a2927; /* Σκούρο γκρι αντί για ανοιχτό */
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #a8a5a0; /* Ανοιχτό γκρι αντί για σκούρο */
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
    background: #00d4ff; /* Cyan στο hover για να ξεχωρίζει */
    color: #121212; /* Σκούρο εικονίδιο για αντίθεση με το cyan */
}

/* --- SCROLL TO TOP BUTTON --- */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99; 
    background-color: #00d4ff; /* Cyan χρώμα για να ταιριάζει με το active κουμπί των κατηγοριών */
    color: #121212; /* Σκούρο εικονίδιο */
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.4); /* Cyan "glow" σκιά */
    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: #00b8e6; /* Λίγο πιο σκούρο cyan στο 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: #a8a5a0; /* Ανοιχτόχρωμο κείμενο */
}

/* Χρώμα και μέγεθος για τα εικονίδια (πινέζα, τηλέφωνο κλπ) */
.store-info-list i {
    color: #00d4ff; /* Cyan εικονίδια */
    font-size: 18px;
    width: 20px; 
    text-align: center;
}

.store-info-list a {
    color: #e8e6e3; /* Ανοιχτόχρωμο κείμενο στα links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.store-info-list a:hover {
    color: #00d4ff; /* Γίνονται cyan στο hover */
    text-decoration: none;
}

/* --- GOOGLE REVIEWS BANNER --- */
.reviews-banner {
    background: #181716; /* Σκούρο φόντο στο banner */
    border-radius: 15px;
    padding: 25px 20px;
    margin: 30px 20px 10px 20px; 
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Πιο έντονη σκιά */
    border: 1px solid #33312e; /* Σκούρο περίγραμμα */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reviews-text h3 {
    margin: 0 0 5px 0;
    font-size: 17px;
    color: #e8e6e3; /* Ανοιχτόχρωμος τίτλος */
    font-weight: 800;
}

.reviews-text p {
    margin: 0;
    font-size: 13px;
    color: #a8a5a0; /* Ανοιχτό γκρι κείμενο */
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #181716; /* Σκούρο φόντο στο κουμπί */
    color: #e8e6e3; /* Ανοιχτό γράμμα */
    border: 1px solid #33312e; /* Σκούρο περίγραμμα */
    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.3); /* Πιο έντονη σκιά */
}

/* Το G της Google σε κόκκινο χρώμα για να τραβάει διακριτικά την προσοχή */
.google-review-btn i {
    color: #DB4437;
    font-size: 16px;
}

/* Εφέ όταν ο χρήστης πατάει το κουμπί */
.google-review-btn:hover, .google-review-btn:active {
    background: #2a2927;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 68, 55, 0.2); /* Κόκκινη απαλή σκιά της Google */
    border-color: #DB4437;
}


/* --- ΕΙΔΙΚΑ ΣΤΥΛ ΓΙΑ ΤΟ MODAL ΤΩΝ ΚΡΙΤΙΚΩΝ --- */
.reviews-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviews-modal-content h2 {
    margin-bottom: 5px;
    color: #00d4ff; /* Cyan στον τίτλο των κριτικών */
}

.reviews-subtitle {
    color: #a8a5a0; /* Ανοιχτό γκρι αντί για #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: rgba(211, 84, 0, 0.2); /* Ημιδιάφανο πορτοκαλί φόντο για να μη χτυπάει πολύ στο μαύρο */
    color: #e67e22; /* Πιο φωτεινό πορτοκαλί στα γράμματα */
    border: 1px solid #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: #22211f; /* Ίδιο με το background του site */
}

.search-box {
    background: #181716; /* Σκούρο κουτί αναζήτησης */
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Πιο έντονη σκιά */
    border: 1px solid #33312e;
    transition: all 0.3s ease;
}

/* Εφέ όταν ο χρήστης επιλέγει την αναζήτηση */
.search-box:focus-within {
    border-color: #00d4ff; /* Cyan περίγραμμα όταν γράφεις */
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2); /* Cyan glow */
}

.search-box i {
    color: #a8a5a0;
    margin-right: 12px;
    font-size: 16px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #e8e6e3; /* Ανοιχτό γράμμα για να διαβάζεται στο μαύρο κουτί */
    background: transparent;
}

.search-box input::placeholder {
    color: #7a7772; /* Σκούρο γκρι για το placeholder */
}


/* --- ΜΠΑΡΑ ΓΛΩΣΣΩΝ (Ξεχωριστή & Non-Sticky) --- */
.top-lang-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 10px 10px 10px;
    background: #22211f; /* Δένει με το φόντο της σελίδας */
}

.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.3); /* Πιο έντονη σκιά */
}

.lang-flag:hover {
    opacity: 0.8;
}

.lang-flag.active {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); /* Cyan glow γύρω από την επιλεγμένη σημαία! */
    border: 1px solid #00d4ff;
}

/* --- ΚΑΤΗΓΟΡΙΕΣ (Ξεχωριστές) --- */
.category-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #22211f; /* Δένει με το φόντο της σελίδας */
    padding: 10px 20px 15px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid #33312e;
}
.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.6); /* Λίγο πιο σκούρο ημιδιάφανο */
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(0, 212, 255, 0.3); /* Απαλό cyan περίγραμμα αντί για λευκό */
    color: #e8e6e3;
    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, 212, 255, 0.2); /* Στο hover παίρνει μια απαλή cyan απόχρωση */
    border-color: #00d4ff;
    color: #00d4ff; /* Τα γράμματα και το εικονίδιο γίνονται cyan */
    transform: scale(0.95);
}

/* --- LANG MODAL STYLES (Κομψή λίστα γλωσσών) --- */
.lang-modal-content {
    text-align: center;
}

.lang-modal-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00d4ff; /* Cyan τίτλος */
}

.lang-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-list button {
    background: #2a2927; /* Σκούρο γκρι */
    border: 1px solid #33312e;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #e8e6e3; /* Ανοιχτό γράμμα */
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-list button:active, .lang-list button:hover {
    background: #00d4ff; /* Cyan όταν επιλέγει γλώσσα */
    color: #121212;
    border-color: #00d4ff;
}

/* --- DEVELOPER CREDIT (ΑΠΟΛΥΤΟ ΚΑΤΩ ΜΕΡΟΣ) --- */
.developer-credit {
    background-color: #121212; /* Ακόμα πιο σκούρο από το φόντο για να ξεχωρίζει το τέλος της σελίδας */
    text-align: center;
    padding: 20px 20px;
    
    /* Η μαγεία που το κάνει edge-to-edge και πάντα στο τέρμα: */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    box-sizing: border-box;
    display: block;
    margin: 0; 
}

.developer-credit a {
    color: #a8a5a0; /* Ανοιχτό γκρι αντί για άσπρο */
    text-decoration: none;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.developer-credit a:hover,
.developer-credit a:active {
    opacity: 1;
    color: #00d4ff; /* Cyan στο hover του Developer Credit */
}

/* --- ΑΙΩΡΟΥΜΕΝΟ ΚΟΥΜΠΙ ΠΑΡΑΓΓΕΛΙΑΣ --- */
#floating-order-btn {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(150px); 
    background: #00d4ff; /* Έντονο Cyan για το καλάθι */
    color: #121212; /* Σκούρο γράμμα για αντίθεση */
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4); /* Cyan glow σκιά */
    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: #121212; /* Σκούρο φόντο στο κυκλάκι */
    color: #00d4ff; /* Cyan νούμερο */
    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: #181716; /* Σκούρο φόντο στο συντάκι */
    color: #00d4ff; /* Το + γίνεται Cyan */
    border: 1px solid #33312e;
    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.5); 
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    z-index: 10;
}

/* Όταν το πατάει ο πελάτης */
.add-to-order-btn:active, .add-to-order-btn:hover {
    transform: scale(0.9);
    background: #00d4ff; /* Γίνεται όλο Cyan */
    color: #121212; /* Το + γίνεται Σκούρο */
    border-color: #00d4ff;
}

/* Διαγράφουμε το .price-action γιατί δεν το χρειαζόμαστε πια! */
.price-action {
    display: none; 
}

/* --- MODAL ΠΑΡΑΓΓΕΛΙΑΣ (PREMIUM UI) --- */
#order-items-list {
    max-height: 55vh;
    overflow-y: auto;
    margin: 20px 0;
    padding-right: 5px; 
}

/* Για να ταιριάζει και το scrollbar του καλαθιού με το Dark Mode */
#order-items-list::-webkit-scrollbar {
    width: 6px;
}
#order-items-list::-webkit-scrollbar-track {
    background: #181716; 
}
#order-items-list::-webkit-scrollbar-thumb {
    background: #33312e; 
    border-radius: 10px;
}
#order-items-list::-webkit-scrollbar-thumb:hover {
    background: #00d4ff; 
}

/* Custom Μπάρα Κύλισης (Scrollbar) για να θυμίζει App */
#order-items-list::-webkit-scrollbar { width: 4px; }
#order-items-list::-webkit-scrollbar-track { background: #181716; border-radius: 4px; }
#order-items-list::-webkit-scrollbar-thumb { background: #33312e; border-radius: 4px; }

/* Η γραμμή κάθε πιάτου */
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #33312e; /* Σκούρη διαχωριστική γραμμή */
}

.order-item-row:last-child {
    border-bottom: none; /* Η τελευταία γραμμή δεν χρειάζεται περίγραμμα */
}

/* Το όνομα του πιάτου */
.order-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #e8e6e3; /* Ανοιχτό γράμμα για να διαβάζεται */
    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: #00d4ff; /* Cyan τιμή στο καλάθι */
    font-weight: 600;
}

/* Το κουμπάκι διαγραφής (Κάδος) */
.remove-item-btn {
    background: rgba(231, 76, 60, 0.1); /* Ημιδιάφανο απαλό κόκκινο φόντο */
    border: none;
    color: #ff6b6b; /* Φωτεινό κόκκινο εικονίδιο για το Dark Mode */
    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: #00d4ff; /* Cyan νούμερο συνόλου */
    background: #181716; /* Σκούρο φόντο */
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid #33312e;
}

/* --- QUANTITY CONTROLS (- 1 +) ΣΤΟ ΚΑΛΑΘΙ --- */
.qty-control {
    display: flex;
    align-items: center;
    background: #2a2927; /* Σκούρο γκρι φόντο */
    border-radius: 25px;
    padding: 4px;
    gap: 10px;
}

.qty-btn {
    background: #181716; /* Πιο σκούρο κουμπί */
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #e8e6e3; 
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.qty-btn:active {
    transform: scale(0.85);
}

/* Το κουμπί + το κάνουμε Cyan για να ξεχωρίζει */
.qty-btn.plus {
    background: #00d4ff; 
    color: #121212; /* Σκούρο σταυρουδάκι */
}

.qty-btn.plus:active {
    background: #00b8e6; /* Λίγο πιο σκούρο Cyan στο κλικ */
}

/* Ο αριθμός της ποσότητας */
.qty-text {
    font-weight: 700;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
    color: #e8e6e3;
}

/* --- ΩΡΑΡΙΟ ΛΕΙΤΟΥΡΓΙΑΣ ΣΤΟ INFO MODAL --- */
.info-divider {
    border: 0;
    height: 1px;
    background: #33312e; /* Σκούρα γραμμή */
    margin: 25px 0 20px 0;
}

.store-schedule h3 {
    font-size: 15px;
    color: #00d4ff; /* Cyan στον τίτλο του ωραρίου */
    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: #00d4ff; /* Cyan ρολόι */
    font-size: 16px;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #a8a5a0; /* Ανοιχτό γκρι στις μέρες */
    padding-bottom: 8px;
    border-bottom: 1px dashed #33312e; /* Σκούρη διακεκομμένη γραμμή */
}

.schedule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-row strong {
    color: #e8e6e3; /* Φωτεινό χρώμα στις ώρες */
    font-weight: 700;
}

/* --- ΤΙΤΛΟΙ ΚΑΤΗΓΟΡΙΩΝ ΜΕΣΑ ΣΤΟ ΜΕΝΟΥ (EFOOD STYLE) --- */
.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #e8e6e3; /* Ανοιχτόχρωμοι τίτλοι (π.χ. "Καφέδες") */
    margin: 35px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #33312e;
    text-transform: capitalize;
}

/* Η πρώτη κατηγορία δεν χρειάζεται τεράστιο κενό από πάνω */
.menu-section:first-child .section-title {
    margin-top: 5px;
}
