:root {
    /* Colors */
    --navy-blue: #0A192F;
    --navy-blue-light: #112240;
    --gold: #D4AF37;
    --gold-hover: #FADB5F;
    --red-accent: #C8102E;
    --bg-cream: #FCFCFA;
    --bg-gray: #F5F6F8;
    --text-dark: #1F2937;
    --text-light: #FFFFFF;
    --text-muted: #6B7280;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Variables */
    --section-padding: 100px 0;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* elimina flash azul al tocar en móvil */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-gray);
}

.text-gold {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline-dark:hover {
    background-color: var(--navy-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-nav {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-outline-nav:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    background-color: rgba(10, 25, 47, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo imagen real — fondo transparente via SVG */
.logo {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
}

/* viewBox SVG: 5264 × 4024 → ratio 1.308:1 */
.logo-img {
    height: 88px;
    width: auto;
    transition: opacity 0.3s ease;
    display: block;
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.logo-img--footer {
    height: 130px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('hero_bg_colores.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%);
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: block;
    color: var(--red-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.title-separator {
    color: var(--gold);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    opacity: 0.8;
}

.title-separator::before,
.title-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.title-separator::before {
    right: 180%;
}

.title-separator::after {
    left: 180%;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    top: 0;
}

.card:hover {
    top: -10px;
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.1);
}

.card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: var(--navy-blue-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pending-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(10, 25, 47, 0.85);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    border: 1px solid var(--gold);
    backdrop-filter: blur(4px);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.06);
}

.card-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-content {
    padding: 35px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.card-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-text {
    color: var(--red-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--navy-blue);
}

.btn-text:hover i {
    transform: translateX(6px);
}

/* Menú Diario Section */
.container-menu {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.menu-info {
    padding-right: 10px;
}

.menu-info .section-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.menu-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.menu-price-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.menu-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: var(--gold);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 15px;
}

.price-amount .cents {
    font-size: 2.5rem;
    vertical-align: super;
}

.price-includes {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

.includes-badge {
    background-color: rgba(0, 0, 0, 0.25);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.includes-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

.includes-badge:hover {
    border-color: var(--gold);
    background-color: rgba(0, 0, 0, 0.4);
}

.promo-box {
    background-color: var(--red-accent);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
    border: 2px dashed rgba(255,255,255,0.3);
}

.menu-tabs-wrapper {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.location-switcher-premium {
    display: flex;
    background-color: var(--navy-blue);
    padding: 8px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px;
    border-radius: 12px;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.location-btn.active {
    background-color: var(--gold);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.location-btn:not(.active):hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Global Location Switcher - Sliding Toggle Premium */
.global-location-switcher {
    position: relative;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 280px;
}

.switcher-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: var(--gold);
    border-radius: 36px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.global-location-switcher[data-active="madrid"] .switcher-bg {
    transform: translateX(100%);
}

.location-btn {
    position: relative;
    z-index: 2;
    flex: 1;
    background: transparent !important;
    border: none !important;
    padding: 10px 24px !important;
    color: var(--text-light) !important;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    box-shadow: none !important;
    white-space: nowrap;
    font-size: 0.85rem;
}

.location-btn.active {
    color: var(--navy-blue) !important;
}

.location-btn:not(.active):hover {
    color: var(--gold) !important;
}

/* Cross-Promotion Alert */
.cross-promo-alert {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px dashed var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--navy-blue);
    animation: fadeIn 1s ease;
}

.cross-promo-alert i {
    margin-right: 8px;
}

#breakfast-cross-promo {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#breakfast-cross-promo.show {
    display: block;
    opacity: 1;
}

.alert-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(212, 175, 55, 0.1);
    padding: 18px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInDown 0.6s ease forwards;
}

.alert-premium i {
    color: var(--gold);
    font-size: 1.4rem;
}

.alert-premium p {
    color: var(--navy-blue);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tabs-header {
    display: flex;
    background-color: var(--navy-blue-light);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 24px 10px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.tab-btn:hover {
    color: var(--text-light);
    background-color: rgba(255,255,255,0.05);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background-color: rgba(255,255,255,0.05);
}

.tabs-content {
    padding: 50px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

/* Breakfast Specific styling */
#desayunos .menu-category {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 0;
    transition: var(--transition);
}

#desayunos .menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.dish-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* breakfast-grid y toggle-chevron → ver sección "Nuevas clases" al final */

.dish-price {
    font-weight: 700;
    color: var(--gold);
    background-color: var(--bg-gray);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-category h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px dotted #E5E7EB;
    padding-bottom: 10px;
    display: inline-block;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 1.15rem;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
    color: var(--text-dark);
}

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

.menu-list li::before {
    content: '\2693\FE0E';
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 0.85rem;
    color: var(--navy-blue);
    opacity: 0.7;
}

.menu-list li span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 6px;
}
.menu-list li .small {
    font-size: 0.85rem;
    display: inline;
    margin-left: 6px;
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: rgba(255,255,255,0.8);
    padding: 100px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-desc {
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 350px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-4px);
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.location-name {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-list, .hours-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    align-items: flex-start;
    font-size: 1.05rem;
}

.contact-list li i {
    color: var(--gold);
    margin-top: 5px;
    font-size: 1.2rem;
}

.contact-list li small {
    color: #9CA3AF;
    display: block;
    margin-top: 6px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
    font-size: 1.05rem;
}

.footer-bottom {
    background-color: var(--navy-blue-light);
    padding: 30px 0;
    padding-bottom: calc(30px + env(safe-area-inset-bottom)); /* notch phones */
    text-align: center;
    color: #9CA3AF;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .container-menu {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        background-color: rgba(10, 25, 47, 0.98) !important;
        padding: 8px 0 10px 0 !important;
    }
    .nav-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    .logo {
        flex: 1;
    }
    .logo-img {
        height: 60px;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        order: 2;
        font-size: 1.6rem;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
    .global-location-switcher {
        order: 3;
        width: 100%;
        min-width: unset;
        margin-top: 4px;
    }
    .location-btn {
        font-size: 0.82rem !important;
        padding: 10px 14px !important;
    }

    /* --- Hero ---
       navbar: logo(60px) + padding(8+10=18px) = ~78px
       + switcher row: ~42px + gap(8px) = ~50px
       total navbar height: ~128px + margin de seguridad */
    .hero {
        align-items: flex-start;
        background-attachment: scroll; /* fix iOS parallax */
        min-height: 100svh;
    }
    .hero-content {
        padding-top: 155px;
        padding-bottom: 50px;
    }
    .badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        min-height: 52px;
    }

    /* --- Secciones --- */
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2.3rem;
    }

    /* --- Menú Diario --- */
    .menu-info {
        padding-right: 0;
        text-align: center;
    }
    .menu-info .section-title {
        font-size: 2.3rem;
    }
    .menu-desc {
        text-align: center;
    }
    .menu-price-box {
        padding: 28px 20px;
    }
    .price-amount {
        font-size: 3.2rem;
    }
    .price-amount .cents {
        font-size: 1.7rem;
    }
    .promo-box {
        font-size: 1rem;
    }

    /* --- Tabs menú --- */
    .tabs-header {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-shadow: inset -20px 0 20px -20px rgba(0,0,0,0.5);
    }
    .tabs-header::-webkit-scrollbar { display: none; }
    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 16px 18px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    .tabs-content {
        padding: 26px 18px;
    }
    .menu-list li {
        font-size: 1.05rem;
        padding: 14px 0;
        padding-left: 26px;
    }

    /* --- Alertas y promos --- */
    .alert-premium {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 20px;
    }
    .cross-promo-alert,
    .cross-promo-tabs {
        margin: 16px 16px 0 16px !important;
        font-size: 0.88rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 60px 0 0 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 50px;
    }
    .footer-logo .logo-img--footer {
        height: 100px;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-desc {
        max-width: 100%;
    }
    .social-links {
        justify-content: center;
    }
    .hours-list li {
        font-size: 0.95rem;
    }
    .footer-bottom {
        padding: 24px 0;
        font-size: 0.85rem;
    }
}

/* Teléfonos pequeños ≤ 480px (iPhone SE, Galaxy A) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-content {
        padding-top: 148px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.98rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .menu-info .section-title {
        font-size: 2rem;
    }
    .price-amount {
        font-size: 2.8rem;
    }
    .price-amount .cents {
        font-size: 1.5rem;
    }
    .tabs-content {
        padding: 20px 14px;
    }
    .menu-list li {
        font-size: 1rem;
    }
    #breakfast-status-banner {
        font-size: 0.85rem !important;
        padding: 14px 16px !important;
    }
    .location-btn {
        font-size: 0.76rem !important;
        padding: 9px 10px !important;
    }
    .global-location-switcher {
        min-width: unset;
    }
    .modal-content {
        padding: 38px 20px;
    }
    .btn-modal-call {
        padding: 16px 16px;
    }
    .loc-name {
        font-size: 1rem;
    }
    .loc-phone {
        font-size: 0.88rem;
    }
    .section {
        padding: 42px 0;
    }
}

/* Teléfonos muy pequeños ≤ 360px */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    .logo-img {
        height: 52px;
    }
    .hero-content {
        padding-top: 140px;
    }
    .price-amount {
        font-size: 2.4rem;
    }
}

/* Modal Selector de Llamada */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--red-accent);
}

.modal-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-modal-call {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: var(--bg-gray);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

.btn-modal-call:hover {
    background-color: var(--navy-blue);
    color: var(--text-light);
    transform: translateX(5px);
    border-color: var(--navy-blue);
}

.loc-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.loc-phone {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.btn-modal-call i {
    color: var(--gold);
    font-size: 0.9rem;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--navy-blue);
    z-index: 9999;
    padding: 80px 40px;
    transition: right 0.4s ease-in-out;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    visibility: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.drawer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.drawer-link:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* ============================================
   NUEVAS CLASES — UI DESIGNER + FRONTEND DEV
   ============================================ */

/* --- Status banner desayunos --- */
.status-banner {
    margin: 0 auto 40px;
    max-width: 800px;
    padding: 18px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-banner--active {
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--navy-blue);
}

.status-banner--inactive {
    background-color: rgba(10, 25, 47, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
}

/* --- Toggle breakfast button — centrado --- */
.btn-centered {
    display: block;
    margin: 0 auto 30px;
}

.toggle-chevron {
    margin-left: 8px;
    transition: transform 0.35s ease;
    display: inline-block;
}

#toggle-breakfast-btn.active .toggle-chevron {
    transform: rotate(180deg);
}

/* --- Breakfast grid (reemplaza container-menu inline) --- */
.breakfast-grid {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    grid-template-columns: 1fr;
    gap: 24px;
}

.breakfast-grid.expanded {
    display: grid;
    opacity: 1;
}

/* --- Cross promo en tabs con margen correcto --- */
.cross-promo-tabs {
    margin: 20px 50px 0;
}

/* --- includes-badges layout --- */
.includes-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* --- Menu footer note --- */
.menu-footer-note {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.menu-footer-note i {
    color: var(--gold);
    margin-right: 5px;
}

/* --- Footer contact intro --- */
.footer-contact-intro {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-contact-intro i {
    color: var(--gold);
    margin-right: 8px;
}

/* --- Footer location block spacing --- */
.footer-location-block--spaced {
    margin-top: 25px;
}

/* --- Footer tel link --- */
.footer-tel {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-tel:hover {
    color: var(--gold);
}

/* --- Hours list spaced --- */
.hours-list--spaced {
    margin-bottom: 25px;
}

/* --- Drawer CTA --- */
.drawer-cta {
    margin-top: 40px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   ✨ WHIMSY — SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger en items del menú al aparecer el tab */
.tab-pane.active .menu-list li {
    animation: itemSlideIn 0.4s ease both;
}

.tab-pane.active .menu-list li:nth-child(1) { animation-delay: 0.04s; }
.tab-pane.active .menu-list li:nth-child(2) { animation-delay: 0.08s; }
.tab-pane.active .menu-list li:nth-child(3) { animation-delay: 0.12s; }
.tab-pane.active .menu-list li:nth-child(4) { animation-delay: 0.16s; }
.tab-pane.active .menu-list li:nth-child(5) { animation-delay: 0.20s; }

@keyframes itemSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Hover en items de menú — feedback táctil */
.menu-list li {
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    border-radius: 6px;
    padding-right: 8px;
}

.menu-list li:hover {
    background-color: rgba(212, 175, 55, 0.06);
    padding-left: 32px;
}

/* Backdrop desenfocado en modal visible */
[hidden] { display: none !important; }


/* ============================================
   QUICK NAV — 3 botones de intención
   ============================================ */
.quick-nav {
    background-color: var(--navy-blue);
    padding: 0;
    position: relative;
    z-index: 10;
}

.quick-nav-inner {
    display: flex;
    width: 100%;
}

.quick-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 12px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.08);
    min-height: 80px;
}

.quick-nav-btn:last-child {
    border-right: none;
}

.quick-nav-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.quick-nav-btn:hover i {
    transform: scale(1.2);
}

.quick-nav-btn--carta {
    color: #FFFFFF;
    background-color: var(--navy-blue-light);
}
.quick-nav-btn--carta:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--gold);
}

.quick-nav-btn--menu {
    color: var(--navy-blue);
    background-color: var(--gold);
}
.quick-nav-btn--menu:hover {
    background-color: var(--gold-hover);
}

.quick-nav-btn--desayunos {
    color: #FFFFFF;
    background-color: #C8102E;
}
.quick-nav-btn--desayunos:hover {
    background-color: #a50d26;
}

/* ============================================
   FAB — Llamar para Reservar
   ============================================ */
.fab-call {
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom));
    right: 20px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background-color: #C8102E;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(200, 16, 46, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    animation: fabSlideUp 0.5s ease 0.8s both;
}

.fab-call i {
    font-size: 1.1rem;
}

.fab-call:hover {
    background-color: #a50d26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.55);
}

.fab-call:active {
    transform: translateY(0);
}

@keyframes fabSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* En móvil: solo icono + texto corto */
@media (max-width: 768px) {
    .fab-call {
        padding: 16px 18px;
        border-radius: 50px;
        font-size: 0.88rem;
        gap: 8px;
    }
    .fab-label {
        display: inline;
    }
}

/* ============================================
   SECCIÓN CARTA
   ============================================ */
.section-subtitle-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: -10px;
    margin-bottom: 24px;
    font-style: italic;
}

.allergen-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background-color: #FFF8E7;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.allergen-disclaimer i {
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   CARTA — SECTION HEADER + TOGGLE
   ============================================ */
.carta-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.carta-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--navy-blue);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.25s, border-color 0.25s;
    align-self: center;
}

.carta-toggle-btn:hover {
    background: var(--navy-blue-light);
    border-color: var(--gold);
}

.carta-toggle-chevron {
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.35s ease;
}

/* ============================================
   CARTA — PILLS (horizontal scrollable tabs)
   ============================================ */
.carta-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.carta-pills::-webkit-scrollbar {
    display: none;
}

.carta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 2px solid rgba(10,25,47,0.15);
    border-radius: 50px;
    background: #fff;
    color: var(--navy-blue);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.carta-pill i {
    font-size: 0.9rem;
    color: var(--gold);
    transition: color 0.2s;
}

.carta-pill:hover {
    border-color: var(--gold);
    background: rgba(212,175,55,0.07);
}

.carta-pill.active {
    background: var(--navy-blue);
    border-color: var(--gold);
    color: #fff;
}

.carta-pill.active i {
    color: var(--gold);
}

/* ============================================
   CARTA — PANEL (items list)
   ============================================ */
.carta-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Item individual */
.carta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 4px;
    border-bottom: 1px solid #F3F4F6;
    transition: background-color 0.2s ease;
}

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

.carta-item:hover {
    background-color: rgba(212,175,55,0.04);
}

/* Foto — siempre reservada (real o placeholder) */
.carta-item-foto {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.carta-item-foto--placeholder {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.25;
}

.carta-item-foto--placeholder i {
    font-size: 1.5rem;
    color: var(--gold);
}

.carta-item-info {
    flex: 1;
    min-width: 0;
}

.carta-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.carta-item-nombre {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--navy-blue);
    line-height: 1.3;
}

.carta-item-precio {
    font-weight: 800;
    font-size: 0.97rem;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.carta-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.45;
}

/* Badges alérgenos */
.allergen-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.allergen-badge {
    font-size: 0.92rem;
    line-height: 1;
    cursor: default;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.allergen-badge:hover {
    opacity: 1;
}

/* Desktop */
@media (min-width: 769px) {
    .carta-item {
        padding: 16px 8px;
    }
    .carta-item-nombre {
        font-size: 1.02rem;
    }
    .carta-item-desc {
        font-size: 0.88rem;
    }
    .carta-item-foto,
    .carta-item-foto--placeholder {
        width: 88px;
        height: 88px;
    }
    .carta-panel {
        max-width: 860px;
        margin: 0 auto;
    }
}

/* Mobile carta */
@media (max-width: 480px) {
    .carta-pill {
        padding: 8px 13px;
        font-size: 0.8rem;
    }
    .carta-item {
        padding: 12px 2px;
        gap: 11px;
    }
    .carta-item-foto,
    .carta-item-foto--placeholder {
        width: 68px;
        height: 68px;
    }
    .carta-item-nombre {
        font-size: 0.9rem;
    }
    .carta-item-precio {
        font-size: 0.9rem;
    }
    .carta-toggle-btn {
        padding: 9px 14px;
        font-size: 0.82rem;
    }
}

/* ============================================
   QUICK NAV — RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    .quick-nav-btn {
        font-size: 0.78rem;
        padding: 18px 6px;
        gap: 6px;
        min-height: 72px;
    }
    .quick-nav-btn i {
        font-size: 1.2rem;
    }
}

