/* ===================================================
   CASA SUSHI - LUXURY JAPANESE RESTAURANT STYLESHEET
   Design System & Modern Dynamic Responsive Styles
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Palette Japonaise Contemporaine & Gastronomique */
    --bg-main: #0c0d12;
    --bg-card: rgba(22, 25, 34, 0.85);
    --bg-card-hover: rgba(30, 35, 48, 0.95);
    --bg-surface: #151821;
    --bg-surface-elevated: #1d212d;
    --bg-glass: rgba(18, 21, 29, 0.75);
    --bg-overlay: rgba(5, 6, 9, 0.82);

    /* Accents Couleurs */
    --crimson-primary: #e63946;
    --crimson-glow: rgba(230, 57, 70, 0.35);
    --crimson-dark: #b51726;
    --gold-primary: #f4a261;
    --gold-accent: #e9c46a;
    --gold-glow: rgba(233, 196, 106, 0.3);
    
    /* Textes */
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;
    --text-gold: #f3c98b;

    /* Bordures & Ombres */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(230, 57, 70, 0.3);
    --border-gold: rgba(233, 196, 106, 0.25);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(230, 57, 70, 0.25);

    /* Rayons & Transitions */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Typographies */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(233, 196, 106, 0.04) 0%, transparent 40%),
        linear-gradient(rgba(12, 13, 18, 0.95), rgba(12, 13, 18, 0.98)),
        radial-gradient(#1f2430 1px, transparent 1px);
    background-size: auto, auto, auto, 28px 28px;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===================================================
   NAVIGATION & HEADER
   =================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px var(--crimson-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffffff, #f4a261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-pdf-header {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(230, 57, 70, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(230, 57, 70, 0.35);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-pdf-header:hover {
    background: var(--crimson-primary);
    color: #ffffff;
    box-shadow: 0 4px 18px var(--crimson-glow);
    transform: translateY(-2px);
}

.btn-cart-header {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-surface-elevated);
    color: #fff;
    border: 1px solid var(--border-subtle);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.btn-cart-header:hover {
    background: var(--crimson-primary);
    border-color: var(--crimson-primary);
    box-shadow: 0 4px 15px var(--crimson-glow);
    transform: translateY(-2px);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold-accent);
    color: #12141a;
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ===================================================
   HERO BANNER
   =================================================== */
.hero-section {
    position: relative;
    padding: 3.5rem 1.5rem 2.5rem;
    max-width: 1380px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(29, 33, 45, 0.9), rgba(16, 18, 25, 0.95)),
                url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?auto=format&fit=crop&w=1600&q=80') center/cover;
    border: 1px solid var(--border-subtle);
    padding: 3.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 13, 18, 0.95) 0%, rgba(12, 13, 18, 0.6) 70%, rgba(12, 13, 18, 0.4) 100%);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 57, 70, 0.15);
    color: #ff758f;
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 30%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px var(--crimson-glow);
    transition: var(--transition-fast);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-box {
    background: rgba(18, 21, 29, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.highlight-box i {
    font-size: 1.6rem;
    color: var(--gold-accent);
}

.highlight-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.highlight-text p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ===================================================
   PROMOTIONAL PACKS BANNER (CLIENT FACING)
   =================================================== */
.promo-section-wrapper {
    max-width: 1380px;
    margin: 1.5rem auto 2.5rem;
    padding: 0 1.5rem;
}

.promo-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.promo-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(244, 162, 97, 0.2));
    border: 1px solid var(--border-gold);
    color: var(--gold-accent);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
}

.promo-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: #fff;
    margin-bottom: 0.4rem;
}

.promo-section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.8rem;
}

.client-promo-card {
    background: linear-gradient(135deg, rgba(28, 32, 45, 0.95), rgba(18, 20, 28, 0.98));
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 162, 97, 0.15);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.client-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(230, 57, 70, 0.25);
    border-color: var(--crimson-primary);
}

.client-promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px var(--crimson-glow);
    z-index: 5;
    letter-spacing: 0.8px;
}

.client-promo-img-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.client-promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.client-promo-card:hover .client-promo-img-wrapper img {
    transform: scale(1.08);
}

.client-promo-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.client-promo-timer {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    background: rgba(244, 162, 97, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

.client-promo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.client-promo-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.client-promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    gap: 0.8rem;
}

.client-promo-prices {
    display: flex;
    flex-direction: column;
}

.client-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.client-new-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-accent);
}

.client-new-price small {
    font-size: 0.9rem;
}

.btn-add-cart-promo {
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.75rem 1.3rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--crimson-glow);
    transition: var(--transition-fast);
}

.btn-add-cart-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 57, 70, 0.6);
}

/* Out of Stock Styling */
.dish-card.out-of-stock {
    opacity: 0.75;
}

.dish-out-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(230, 57, 70, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.controls-section {
    position: sticky;
    top: 73px;
    z-index: 850;
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.controls-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.search-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.search-box-wrapper {
    position: relative;
    flex: 1;
    max-width: 600px;
}

.search-box-wrapper i.search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
}

.search-input {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 2.8rem 0.75rem 2.8rem;
    border-radius: var(--radius-full);
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--crimson-primary);
    box-shadow: 0 0 0 3px var(--crimson-glow);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.clear-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.clear-search-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.results-counter {
    font-size: 0.85rem;
    color: var(--gold-accent);
    font-weight: 600;
    white-space: nowrap;
}

/* Category Navigation (Multi-lignes sans scroll) */
.category-nav-bar {
    overflow: visible;
    padding: 0.3rem 0;
}

.category-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
}

.cat-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.cat-tab-btn i {
    font-size: 0.9rem;
}

.cat-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-surface-elevated);
}

.cat-tab-btn.active {
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: #ffffff;
    border-color: var(--crimson-primary);
    box-shadow: 0 4px 15px var(--crimson-glow);
}

/* Quick Filter Tags (Pills Multi-lignes) */
.quick-tags-bar {
    overflow: visible;
    padding-top: 0.2rem;
}

.quick-tags-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
}

.tag-pill-btn {
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.tag-pill-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.tag-pill-btn.active {
    background: var(--gold-accent);
    color: #11131a;
    border-color: var(--gold-accent);
    font-weight: 700;
}

.tag-pill-btn.active {
    background: rgba(244, 162, 97, 0.18);
    color: var(--gold-accent);
    border-color: var(--border-gold);
}

/* ===================================================
   ORDERS MANAGEMENT BOARD (ADMIN)
   =================================================== */
.orders-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.order-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    border-left: 4px solid var(--crimson-primary);
}

.order-card.status-nouvelle {
    border-left-color: #f4a261;
    animation: order-pulse 2s infinite;
}

@keyframes order-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(244, 162, 97, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(244, 162, 97, 0.5); }
}

.order-card.status-en-preparation {
    border-left-color: #3a86ff;
}

.order-card.status-en-livraison {
    border-left-color: #9d4edd;
}

.order-card.status-livree {
    border-left-color: #2ec4b6;
    opacity: 0.85;
}

.order-card.status-annulee {
    border-left-color: #ff4d4d;
    opacity: 0.65;
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.8rem;
}

.order-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.order-status-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status-badge.Nouvelle { background: rgba(244, 162, 97, 0.2); color: #f4a261; border: 1px solid #f4a261; }
.order-status-badge.En-preparation { background: rgba(58, 134, 255, 0.2); color: #3a86ff; border: 1px solid #3a86ff; }
.order-status-badge.En-livraison { background: rgba(157, 78, 221, 0.2); color: #9d4edd; border: 1px solid #9d4edd; }
.order-status-badge.Livree { background: rgba(46, 196, 182, 0.2); color: #2ec4b6; border: 1px solid #2ec4b6; }
.order-status-badge.Annulee { background: rgba(255, 77, 77, 0.2); color: #ff4d4d; border: 1px solid #ff4d4d; }

.order-client-info {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.order-client-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.order-items-list {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    font-size: 0.85rem;
    max-height: 160px;
    overflow-y: auto;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

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

.order-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.order-total-amount {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-accent);
}

.order-action-btns {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.btn-order-action {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

/* ===================================================
   INTERACTIVE MAP & REAL-TIME GEOLOCATION
   =================================================== */
.restaurant-map-section {
    max-width: 1380px;
    margin: 3.5rem auto 2.5rem;
    padding: 0 1.5rem;
}

.map-section-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.map-interactive-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-toolbar {
    padding: 1rem 1.5rem;
    background: var(--bg-surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-live-gps {
    background: linear-gradient(135deg, #2ec4b6, #1b9aaa);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.35);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-live-gps:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.55);
}

.btn-live-gps.tracking {
    background: linear-gradient(135deg, #e63946, #b51726);
    animation: gps-pulse 1.5s infinite;
}

@keyframes gps-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 0 25px rgba(230, 57, 70, 0.8); }
}

.map-distance-info {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.casa-sushi-map-frame {
    height: 440px;
    width: 100%;
    z-index: 10;
}

/* Custom Leaflet Dark Popup */
.leaflet-popup-content-wrapper {
    background: #191c26 !important;
    color: #fff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(244, 162, 97, 0.4) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6) !important;
    font-family: var(--font-body) !important;
}

.leaflet-popup-tip {
    background: #191c26 !important;
}

.leaflet-container {
    background: #11131a !important;
}

/* ===================================================
   SEARCH & FILTER CONTROLS (STICKY)
   =================================================== */

/* ===================================================
   MENU GRID & CARDS
   =================================================== */
.menu-main-section {
    max-width: 1380px;
    margin: 2rem auto 5rem;
    padding: 0 1.5rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dish-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.dish-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(230, 57, 70, 0.12);
}

.dish-img-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
    cursor: pointer;
    background: #11131a;
}

.dish-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-img-wrapper img {
    transform: scale(1.08);
}

.dish-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 13, 18, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.dish-img-overlay span {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dish-img-wrapper:hover .dish-img-overlay {
    opacity: 1;
}

.dish-piece-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(12, 13, 18, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold-accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dish-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(12, 13, 18, 0.7);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.dish-fav-btn:hover {
    background: var(--crimson-primary);
    transform: scale(1.1);
}

.dish-fav-btn.active {
    background: var(--crimson-primary);
    color: #ffffff;
}

.dish-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dish-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.dish-subcategory {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--gold-accent);
}

.dish-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.dish-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.badge-default {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.badge-signature {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.25), rgba(181, 23, 38, 0.35));
    color: #ff6b6b;
    border: 1px solid rgba(230, 57, 70, 0.4);
}

.badge-bestseller {
    background: rgba(233, 196, 106, 0.18);
    color: var(--gold-accent);
    border: 1px solid var(--border-gold);
}

.badge-spicy {
    background: rgba(230, 57, 70, 0.2);
    color: #ff4d6d;
}

.badge-veggie {
    background: rgba(46, 196, 182, 0.18);
    color: #2ec4b6;
}

.badge-cheese {
    background: rgba(255, 183, 3, 0.18);
    color: #ffb703;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    cursor: pointer;
    line-height: 1.3;
    transition: var(--transition-fast);
}

.dish-title:hover {
    color: var(--gold-accent);
}

.dish-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-ingredients {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.dish-ingredients i {
    color: var(--gold-accent);
    font-size: 0.75rem;
}

.dish-footer {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dish-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.dish-price-box .price-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.dish-price-box .price-curr {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-surface-elevated);
    color: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.btn-add-cart:hover {
    background: var(--crimson-primary);
    border-color: var(--crimson-primary);
    box-shadow: 0 4px 14px var(--crimson-glow);
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-reset-filters {
    display: inline-block;
    background: var(--crimson-primary);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* ===================================================
   FLOATING WHATSAPP BUTTON & CART TRIGGER
   =================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 850;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 0.8rem 1.3rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45), 0 0 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition-fast);
    text-decoration: none;
    animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp-btn i {
    font-size: 1.35rem;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-cart-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: #ffffff;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px var(--crimson-glow), 0 0 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.floating-cart-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.6);
}

/* ===================================================
   CART DRAWER (SIDEBAR) & CHECKOUT
   =================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.3rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface-elevated);
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cart-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-clear-cart {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.btn-clear-cart:hover {
    color: var(--crimson-primary);
}

.btn-close-drawer {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-close-drawer:hover {
    background: var(--crimson-primary);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-subtle);
}

.cart-empty p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cart-item-row img {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.cart-item-unit-price {
    font-size: 0.8rem;
    color: var(--gold-accent);
    margin-bottom: 0.4rem;
}

.cart-item-qty-control {
    display: inline-flex;
    align-items: center;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0.15rem 0.4rem;
    gap: 0.6rem;
}

.cart-item-qty-control button {
    color: var(--text-secondary);
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty-control button:hover {
    color: #ffffff;
}

.cart-item-qty-control span {
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 14px;
    text-align: center;
}

.cart-item-total-col {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.subtotal-val {
    font-weight: 700;
    font-size: 0.92rem;
    color: #ffffff;
}

.btn-remove-item {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.btn-remove-item:hover {
    color: var(--crimson-primary);
}

/* Cart Footer & Form */
.cart-drawer-footer {
    padding: 1.3rem 1.5rem;
    background: var(--bg-surface-elevated);
    border-top: 1px solid var(--border-subtle);
}

.cart-summary-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.cart-summary-box span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cart-summary-box h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--gold-accent);
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-radio {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}

.radio-pill {
    flex: 1;
    cursor: pointer;
}

.radio-pill input {
    display: none;
}

.radio-pill span {
    display: block;
    text-align: center;
    padding: 0.45rem;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.radio-pill input:checked + span {
    background: rgba(230, 57, 70, 0.2);
    border-color: var(--crimson-primary);
    color: #ffffff;
}

.cart-input {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    outline: none;
}

.cart-input:focus {
    border-color: var(--crimson-primary);
}

.btn-submit-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
    margin-top: 0.4rem;
}

.btn-submit-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===================================================
   DISH DETAIL MODAL
   =================================================== */
.dish-modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dish-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.dish-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 780px;
    max-height: 90vh;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dish-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(12, 13, 18, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.btn-close-modal:hover {
    background: var(--crimson-primary);
}

.modal-dish-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-dish-img-side {
    position: relative;
    background: #11131a;
    min-height: 280px;
}

.modal-dish-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-dish-page-ref {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
}

.modal-dish-info-side {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
}

.modal-dish-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.modal-dish-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.modal-dish-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.modal-dish-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.modal-dish-ingredients-box {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.modal-dish-ingredients-box h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.modal-dish-ingredients-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
}

.modal-dish-ingredients-box li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.modal-dish-ingredients-box li i {
    color: var(--gold-accent);
    font-size: 0.7rem;
}

.modal-options-group {
    margin-bottom: 1.5rem;
}

.modal-options-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.options-selector {
    display: flex;
    gap: 0.8rem;
}

.option-pill {
    cursor: pointer;
    flex: 1;
}

.option-pill input {
    display: none;
}

.option-pill span {
    display: block;
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.option-pill input:checked + span {
    background: rgba(230, 57, 70, 0.2);
    border-color: var(--crimson-primary);
    color: #ffffff;
}

.modal-dish-action-bar {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.modal-price .price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.modal-price .price-curr {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.btn-modal-add-cart {
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--crimson-glow);
    transition: var(--transition-fast);
}

.btn-modal-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
}

/* ===================================================
   TOAST NOTIFICATION
   =================================================== */
#app-toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-accent);
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#app-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#app-toast i {
    color: #2ec4b6;
}

/* ===================================================
   FOOTER
   =================================================== */
.main-footer {
    background: #090a0d;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 1rem 0 1.5rem;
    max-width: 340px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.footer-social-link.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
}

.footer-social-link.instagram-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.5);
}

.btn-instagram-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-social-link.facebook-link {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.footer-social-link.facebook-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5);
}

.btn-facebook-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #1877f2;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-facebook-header:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.55);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold-accent);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1380px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media (max-width: 1024px) {
    .hero-banner {
        flex-direction: column;
        padding: 2.5rem 1.8rem;
    }

    .hero-highlights {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .controls-section {
        top: 65px;
        padding: 0.8rem 1rem;
    }

    .search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .search-box-wrapper {
        max-width: 100%;
    }

    .modal-dish-layout {
        grid-template-columns: 1fr;
    }

    .modal-dish-img-side {
        height: 200px;
        min-height: auto;
    }

    .modal-dish-info-side {
        padding: 1.5rem;
    }

    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}
