/* ================= CSS VARIABLES & PALETTE ================= */
:root {
    /* Main Layout Colors (Merged light theme from original overrides) */
    --page-bg-gradient: linear-gradient(135deg, #fff7eb 0%, #fdf4e5 45%, #f4e1bf 100%);
    --panel-bg-gradient: linear-gradient(145deg, #fffaf2 0%, #ffe8c0 100%);
    --card-bg: #fffaf3;
    
    /* Text Colors */
    --text-main: #4a2614;
    --text-muted: #7a5840;
    --text-light: #9b7358;
    
    /* Brand Colors (Oranges/Browns) */
    --brand-400: #f5b053;
    --brand-500: #e07a1b;
    --brand-600: #ca5d11;
    --brand-900: #6f2710;
    
    /* Spicy Colors (Reds) */
    --spicy-500: #ef4444;
    --spicy-600: #dc2626;

    /* Fonts */
    --font-sans: "Plus Jakarta Sans", sans-serif;
    --font-serif: "Playfair Display", serif;
}

/* ================= CSS RESET & BASE STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--page-bg-gradient);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ================= UTILITY CLASSES ================= */
.container {
    max-width: 1280px;
    margin: auto;
}
.hidden { display: none !important; }
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.full-width { width: 100%; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.align-center { align-items: center; }

/* ================= BUTTONS ================= */
.btn-primary {
    background: linear-gradient(to right, var(--brand-600), var(--spicy-600));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
    box-shadow: 0 10px 22px rgba(165, 60, 15, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(165, 60, 15, 0.35);
}
.btn-whatsapp {
    background: linear-gradient(to right, #25D366, #128C7E);
    box-shadow: 0 10px 22px rgba(18, 140, 126, 0.3);
}
.btn-whatsapp .fa-whatsapp { font-size: 1.35rem; margin-right: 0.4rem; vertical-align: -0.1em; }
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 140, 126, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }
.btn-large { margin-top: 2.5rem; display: inline-flex; gap: 0.5rem; align-items: center; }
.btn-outline {
    background: transparent;
    border: 1px solid var(--brand-500);
    color: var(--brand-600);
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
}

/* ================= HEADER ================= */
.site-header {
    padding: 0.5rem 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(63, 18, 8, 0.97) 0%, rgba(116, 38, 16, 0.95) 50%, rgba(88, 29, 13, 0.97) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 213, 153, 0.26);
    transition: padding 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { padding: 0.5rem 0; box-shadow: 0 12px 30px rgba(74, 38, 20, 0.16); }
.header-container { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.brand-logo { display: flex; align-items: center; gap: 0.75rem; margin-right: auto; }
.logo-icon {
    height: 4rem;   /* Bigger logo, matched to the logo text block height */
    width: 6rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.logo-title {
    font-family: var(--font-serif);
    font-size: 2rem; font-weight: 900;
    color: #ffac26; line-height: 1; display: block;
}
.logo-title span { color: #ffd69e; }
.logo-subtitle { color: #f4d7ac; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: bold; }

/* Nav links on a single line, each with its own curved pill background */
.desktop-nav { display: flex; align-items: center; flex-wrap: nowrap; gap: 0.5rem; }
.desktop-nav a {
    color: #fce7c5;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 213, 153, 0.18);
    transition: color 0.2s, background 0.2s, transform 0.2s;
}
.desktop-nav a:hover {
    color: #fff;
    background: linear-gradient(to right, var(--brand-600), var(--spicy-600));
    border-color: transparent;
    transform: translateY(-2px);
}
.desktop-nav a.active {
    color: #fff;
    background: linear-gradient(to right, var(--brand-600), var(--spicy-600));
    border-color: transparent;
}
.header-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-menu-toggle .cart-btn { display: none; }
.cart-btn {
    position: relative; color: #fce7c5; font-size: 1.25rem;
    background: rgba(255,255,255,0.1); border-radius: 50%; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
}
.badge {
    position: absolute; top: -5px; right: -5px;
    background: var(--spicy-600); color: white;
    font-size: 0.7rem; font-weight: bold;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.mobile-menu-toggle { display: none; gap: 1rem; align-items: center; }
.menu-btn { color: #fce7c5; font-size: 1.5rem; }
.mobile-nav { background: #131313; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { color: #fce7c5; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }

/* ================= HERO SECTION ================= */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--page-bg-gradient); }
.hero-background { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; }
.hero-logo-bg { max-width: 60%; max-height: 70%; width: auto; height: auto; object-fit: contain; opacity: 0.7; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(111, 39, 16, 0.55) 0%, rgba(74, 38, 20, 0.92) 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(111, 39, 16, 0.4); border: 1px solid rgba(224, 122, 27, 0.3);
    color: var(--brand-400); padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-top: 3rem;
}
.hero-title { font-family: var(--font-serif); font-size: 5rem; font-weight: 900; color: white; line-height: 1.1; }
.hero-title span { color: var(--brand-400); }
.hero-description { color: #f6e5c6; max-width: auto; margin: 3rem auto; font-size: clamp(0.95rem, 1.6vw, 1.1rem); }
.hero-buttons { display: flex; justify-content: center; gap: 2rem; margin-top: 4rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0rem; }
.stat-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900; color: var(--brand-400); }
.stat-label { color: #f4d7ac; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 5; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 60px; fill: rgb(132 40 5); } /* Matches light theme page bg */

/* ================= COMMON SECTION STYLES ================= */
.page-section { padding: 5rem 0; scroll-margin-top: 1rem; }
#home { scroll-margin-top: 0; }
.section-subtitle { color: var(--brand-600); font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0rem; }
.section-title { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: var(--brand-900); margin-bottom: 0rem; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto 1rem auto; }

/* ================= FEATURES SECTION ================= */
.features-section { padding: 1rem 0; background: var(--panel-bg-gradient); border-bottom: 1px solid rgba(184, 75, 17, 0.1); }
.feature-card { display: flex; gap: 1rem; background: var(--card-bg); padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(184, 75, 17, 0.1); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.feature-icon { background: rgba(224, 122, 27, 0.1); color: var(--brand-600); width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.feature-card h3 { color: var(--brand-900); margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.875rem; }

/* ================= ABOUT SECTION ================= */
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-images img { border-radius: 1rem; object-fit: cover; width: 100%; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.img-tall { height: 250px; margin-bottom: 1rem; }
.img-short { height: 180px; }
.img-medium { height: 220px; }
.quote-card { background: linear-gradient(135deg, var(--brand-600), var(--spicy-600)); color: white; padding: 2rem; border-radius: 1rem; margin-bottom: 1rem; margin-top: 2rem; }
.quote-card i { font-size: 2rem; opacity: 0.5; margin-bottom: 1rem; }
.quote-card p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: white !important; }
.quote-card span { font-size: 0.75rem; text-transform: uppercase; margin-top: 1rem; display: block; }
.about-checklists { display: flex; gap: 1rem; margin: 2.5rem 0; padding: 0.5rem 0; border-top: 1px solid rgba(184, 75, 17, 0.1); border-bottom: 1px solid rgba(184, 75, 17, 0.1); }
.check-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: bold; }
.check-item i { background: rgba(224, 122, 27, 0.1); color: var(--brand-600); width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.about-actions { display: flex; align-items: center; gap: 1.5rem; }
.link-bold { font-weight: bold; color: var(--text-main); }
.link-bold:hover { color: var(--brand-600); }

/* ================= MENU SECTION ================= */
.menu-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.filter-btn { padding:0.5rem 1rem; border-radius: 50px; font-weight: bold; text-transform: uppercase; font-size: 0.875rem; background: var(--card-bg); color: var(--text-muted); border: 1px solid rgba(184, 75, 17, 0.2); transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--brand-600); color: white; border-color: var(--brand-600); }
.menu-card { background: var(--panel-bg-gradient); border: 1px solid rgba(184, 75, 17, 0.16); border-radius: 1.5rem; overflow: hidden; box-shadow: 0 16px 35px rgba(90, 39, 15, 0.12); transition: 0.3s; display: flex; flex-direction: column; text-align: left; }
.menu-card:hover { transform: translateY(-6px); }
.card-img-box { position: relative; height: 200px; overflow: hidden; }
.card-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .card-img-box img { transform: scale(1.05); }
.spice-badge { position: absolute; top: 1.8rem; right: 1rem; font-size: 0.65rem; font-weight: bold; text-transform: uppercase; padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.spice-badge.high { background: rgba(185, 28, 28, 0.9); color: #fca5a5; border: 1px solid #ef4444; }
.spice-badge.medium { background: rgba(111, 39, 16, 0.9); color: #fcd34d; border: 1px solid #e07a1b; }
.spice-badge.low { background: rgba(6, 78, 59, 0.9); color: #6ee7b7; border: 1px solid #10b981; }
.spice-badge.popular { background: rgba(16, 185, 129, 0.95); color: #fff; border: 1px solid #10b981; }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.5rem; }
.card-header h3 { font-family: var(--font-serif); color: #7c2e12; font-size: 1.125rem; font-weight: 800; }
.card-price { color: var(--brand-600); font-weight: bold; font-size: 1.25rem; }
.card-body p { color: #69462f; font-size: 0.85rem; margin-bottom: 1.5rem; flex-grow: 1; }
.btn-add-cart { background: linear-gradient(135deg, #a53c0f 0%, #d97706 100%); color: #fffaf3; padding: 0.75rem; border-radius: 0.75rem; font-weight: bold; text-transform: uppercase; font-size: 0.75rem; width: 100%; transition: 0.3s; }

/* ================= GALLERY ================= */
.gallery-item { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); opacity: 0; transition: 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: white; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--brand-400); font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }

/* ================= REVIEWS ================= */
.review-card { background: var(--card-bg); padding: 1.5rem; border-radius: 1.5rem; border: 1px solid rgba(184, 75, 17, 0.1); text-align: left; }
.stars { color: var(--brand-400); margin-bottom: 1rem; }
.review-text { font-style: italic; font-size: 0.9rem; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar { width: 2.5rem; height: 2.5rem; background: var(--brand-500); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.875rem; }
.reviewer h4 { font-size: 0.875rem; color: var(--brand-900); }
.reviewer span { font-size: 0.75rem; color: var(--text-light); }

/* ================= CONTACT ================= */
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 3rem; height: 3rem; background: rgba(224, 122, 27, 0.1); border: 1px solid rgba(224, 122, 27, 0.2); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--brand-600); font-size: 1.25rem; }
.contact-item h4 { font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-item p { font-weight: bold; color: var(--brand-900); }
.status-indicator { font-size: 0.75rem; color: var(--brand-600); display: flex; align-items: center; gap: 0.25rem; margin-top: 0.25rem; }
.contact-map { border-radius: 1.5rem; overflow: hidden; height: 350px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ================= FOOTER ================= */
.site-footer { background: #111; color: white; padding: 1rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 0.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 900; margin-bottom: 0rem; }
.footer-logo .highlight { color: var(--brand-500); }
.footer-brand p { color: #aaa; font-size: 0.875rem; margin-bottom: 0rem; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #aaa; transition: 0.3s; }
.social-links a:hover { background: var(--brand-600); color: white; }
.footer-links h4, .footer-trust h4 { font-size: 0.875rem; text-transform: uppercase; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.2rem; }
.footer-links a { color: #aaa; font-size: 0.875rem; transition: 0.3s; }
.footer-links a:hover { color: var(--brand-400); }
.footer-trust li { display: flex; align-items: center; gap: 0.75rem; color: #aaa; font-size: 0.75rem; margin-bottom: 1rem; }
.footer-trust i { color: var(--brand-500); font-size: 1.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 1rem; color: #777; }
.footer-bottom > p { flex-basis: 100%; }
.designer-credit { color: var(--brand-400); font-weight: 650; letter-spacing: 0.02em; }
.legal-links span { margin-left: 1rem; cursor: pointer; transition: 0.3s; }
.legal-links span:hover { color: var(--brand-400); }

/* ================= FLOATING CART & SIDEBAR ================= */
.floating-cart-btn {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
    background: linear-gradient(to right, var(--brand-600), var(--spicy-600)); color: white;
    width: 3.5rem; height: 3.5rem; border-radius: 50%; font-size: 1.25rem;
    box-shadow: 0 16px 35px rgba(155, 64, 16, 0.28); transition: 0.3s;
}
.floating-cart-btn:hover { transform: scale(1.05); }
.floating-cart-btn .badge { background: white; color: var(--brand-900); border: 2px solid var(--brand-600); }

.cart-drawer {
    position: fixed; top: 0; bottom: 0; right: 0; width: 400px; max-width: 100%;
    background: linear-gradient(180deg, #fffaf2 0%, #f8e4b9 100%);
    box-shadow: -10px 0 30px rgba(77, 34, 10, 0.2);
    z-index: 100; transform: translateX(100%); transition: transform 0.3s ease-in-out;
    display: flex; flex-direction: column; border-left: 1px solid rgba(184, 75, 17, 0.16);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { padding: 1.5rem; border-bottom: 1px solid rgba(184, 75, 17, 0.1); display: flex; justify-content: space-between; align-items: center; }
.drawer-header h3 { font-family: var(--font-serif); color: var(--brand-900); font-size: 1.25rem; }
.drawer-header h3 i { color: var(--brand-500); margin-right: 0.5rem; }
.drawer-body { flex-grow: 1; overflow-y: auto; padding: 1.5rem; }
.drawer-footer { padding: 1.5rem; border-top: 1px solid rgba(184, 75, 17, 0.1); background: rgba(255, 250, 243, 0.8); }

/* Cart Items */
.empty-cart-msg { text-align: center; padding: 3rem 0; color: var(--text-muted); }
.empty-cart-msg i { font-size: 3rem; color: rgba(184, 75, 17, 0.2); margin-bottom: 1rem; }
.cart-item { display: flex; align-items: center; gap: 1rem; background: white; padding: 0.75rem; border-radius: 1rem; margin-bottom: 1rem; border: 1px solid rgba(184, 75, 17, 0.1); }
.cart-item img { width: 4rem; height: 4rem; object-fit: cover; border-radius: 0.5rem; }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 0.875rem; color: var(--brand-900); }
.cart-item-info span { font-size: 0.75rem; color: var(--brand-600); font-weight: bold; }
.qty-controls { display: flex; align-items: center; background: var(--panel-bg-gradient); border-radius: 0.5rem; border: 1px solid rgba(184, 75, 17, 0.1); }
.qty-controls button { width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; color: var(--brand-900); font-weight: bold; }
.qty-controls span { font-size: 0.75rem; font-weight: bold; width: 1.5rem; text-align: center; }

/* Totals */
.price-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
.price-row.small { font-size: 0.75rem; color: var(--text-light); }
.price-row.total { border-top: 1px solid rgba(184, 75, 17, 0.1); padding-top: 0.5rem; font-weight: bold; font-size: 1rem; color: var(--brand-900); }
.price-row.total span:last-child { color: var(--brand-600); font-size: 1.25rem; }
.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1rem; }

/* ================= MODALS & WIZARD ================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(5px); }
.modal-content { background: var(--panel-bg-gradient); width: 100%; max-width: 600px; border-radius: 1.5rem; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 20px 50px rgba(77, 34, 10, 0.2); }
.modal-header { padding: 1.5rem; border-bottom: 1px solid rgba(184, 75, 17, 0.1); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-header h3 { font-family: var(--font-serif); color: var(--brand-900); font-size: 1.5rem; }
.modal-header p { font-size: 0.75rem; color: var(--text-muted); }
.modal-body { padding: 1.5rem; overflow-y: auto; flex-grow: 1; }
.modal-footer { padding: 1.5rem; border-top: 1px solid rgba(184, 75, 17, 0.1); display: flex; gap: 1rem; }
.flex-1 { flex: 1; }

.step-label { display: block; font-size: 0.75rem; font-weight: bold; color: var(--brand-600); text-transform: uppercase; margin-bottom: 1rem; }
.mode-card { background: white; border: 2px solid transparent; border-radius: 1rem; padding: 1.5rem; text-align: center; cursor: pointer; transition: 0.3s; position: relative; }
.mode-card.active { border-color: var(--brand-500); background: rgba(224, 122, 27, 0.05); }
.mode-icon { width: 3.5rem; height: 3.5rem; background: rgba(224, 122, 27, 0.1); color: var(--brand-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem auto; }
.mode-card h4 { color: var(--brand-900); margin-bottom: 0.25rem; }
.mode-card p { font-size: 0.75rem; color: var(--text-muted); }
.check-icon { position: absolute; top: 1rem; right: 1rem; color: #10b981; }

.form-group { background: white; padding: 1.5rem; border-radius: 1rem; margin-top: 1rem; border: 1px solid rgba(184, 75, 17, 0.1); }
.form-group h4 { font-size: 0.875rem; color: var(--brand-900); margin-bottom: 1rem; border-bottom: 1px solid rgba(184, 75, 17, 0.1); padding-bottom: 0.5rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: bold; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.5rem; margin-top: 1rem; }
.form-group input, .form-group select { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid rgba(184, 75, 17, 0.2); background: #fffaf3; font-family: inherit; color: var(--text-main); }

.order-summary-box { background: white; padding: 1rem; border-radius: 1rem; border: 1px solid rgba(184, 75, 17, 0.1); margin-bottom: 1rem; }
.summary-item { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; color: var(--text-muted); }
.summary-item strong { color: var(--brand-900); }
.price-summary-box { background: white; padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(184, 75, 17, 0.1); }

.success-icon { width: 5rem; height: 5rem; background: rgba(16, 185, 129, 0.1); color: #10b981; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1rem auto; }
.success-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--brand-900); margin-bottom: 1.5rem; }
.receipt-card { background: white; border: 1px solid #ddd; padding: 1.5rem; border-radius: 1rem; text-align: left; font-family: monospace; font-size: 0.85rem; max-width: 350px; margin: 0 auto; }
.receipt-header { text-align: center; border-bottom: 1px dashed #ccc; padding-bottom: 1rem; margin-bottom: 1rem; }
.receipt-items { border-top: 1px dashed #ccc; border-bottom: 1px dashed #ccc; padding: 1rem 0; margin: 1rem 0; }
.text-brand { color: var(--brand-600); }

/* Lightbox Specifics */
.bg-dark { background: rgba(0,0,0,0.95); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: white; font-size: 2rem; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 2rem; padding: 1rem; }
.lightbox-nav.left { left: 1rem; }
.lightbox-nav.right { right: 1rem; }
.lightbox-content { text-align: center; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; border-radius: 1rem; margin-bottom: 1rem; }
.lightbox-content p { color: white; font-weight: bold; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f4dfb8; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #c9681b 0%, #a53c0f 100%); border-radius: 4px; }

/* ================= MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .header-container { gap: 0.75rem; }
    .desktop-nav { gap: 0.35rem; }
    .desktop-nav a { padding: 0.45rem 0.7rem; font-size: 0.72rem; }
    .logo-subtitle { display: none; }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    /* Hide desktop-only header parts, show mobile toggle (cart + hamburger) */
    .desktop-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-toggle .cart-btn { display: flex; }
    /* Hero: clear fixed header, keep badge visible, tighten spacing */
    .hero-section { min-height: 100dvh; padding: 7rem 0 2rem 0; align-items: center; }
    .hero-content { padding: 0 0.5rem; line-height: 1.5; }
    .hero-description { line-height: 1.5; }
    .hero-badge { margin-top: 0; margin-bottom: 0.75rem; font-size: 0.7rem; padding: 0.35rem 0.85rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-description { margin: 1.25rem 0; }
    .hero-buttons { margin-top: 1.5rem; gap: 1rem; }
    .btn-large { margin-top: 0; }
    .hero-buttons .btn-large:first-child { margin-top: 2.5rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.65rem; }
    .about-images { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .page-section { padding: 4rem 0; }
    /* Prevent horizontal overflow on mobile */
    .container { padding-left: 1rem; padding-right: 1rem; }
    .logo-icon { width: 4.5rem; height: 3.5rem; }
    .logo-title { font-size: 1.75rem; }
    .logo-subtitle { display: block; font-size: 0.55rem; letter-spacing: 0.15em; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 0.95rem; margin: 1rem 0; }
    .hero-stats { gap: 0.75rem; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.6rem; }
    .drawer-actions { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .floating-cart-btn { width: 3rem; height: 3rem; font-size: 1rem; bottom: 1rem; right: 1rem; }
    .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .logo-icon { width: 3.5rem; height: 3rem; }
    .logo-title { font-size: 1.5rem; }
    .logo-subtitle { font-size: 0.5rem; letter-spacing: 0.1em; }
}
/* ================= TOAST NOTIFICATIONS (POPUP) ================= */
.toast-container {
    position: fixed;
    bottom: 6rem; /* Sits right above your floating cart button */
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none; /* So user clicks pass through the invisible box */
}

.toast-msg {
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--spicy-600) 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(184, 75, 17, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Animation defaults (hidden state) */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* The state triggered by JavaScript */
.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-msg i {
    font-size: 1.1rem;
}
/* ================= MENU IN-CARD QUANTITY CONTROLS ================= */
.menu-qty-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent; /* Blends seamlessly with the card/page background */
    border: 2px solid var(--brand-600); /* Adds a brown border to keep the exact button shape */
    padding: 0.25rem 0.75rem; /* Specially calculated to match the exact height of the original button */
    border-radius: 0.75rem; /* Matches original button radius */
    font-weight: bold;
    width: 100%;
    min-height: 42px; /* Locks in the height to match .btn-add-cart */
}

.menu-qty-controls button {
    width: 2rem;
    height: 2rem;
    background: transparent;
    border-radius: 0.5rem;
    color: var(--brand-900); /* Deep brown color for the plus and minus icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s;
}

.menu-qty-controls button:hover {
    background: rgba(165, 60, 15, 0.1); /* Gives a very light brown highlight when hovered */
    transform: scale(1.1);
}

.menu-qty-controls span {
    font-size: 1rem;
    width: 2rem;
    text-align: center;
    color: var(--brand-900); /* Deep brown color for the number */
}
/* ================= KITCHEN STATUS COLORS ================= */
.status-open {
    color: #10b981 !important; /* Vibrant Green */
}

.status-closed {
    color: #ef4444 !important; /* Vibrant Red */
}