/* =========================================================================
   ROBERT BURGER & RIBS - COMPLETE ENTERPRISE CSS DESIGN SYSTEM
   100% Mobile-First, Zero Layout Shifts, High-Performance Vanilla CSS
   ========================================================================= */

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

/* =========================================================================
   1. DESIGN TOKENS & VARIABLES
   ========================================================================= */
:root {
    --robert-dark: #0a121e;
    --robert-navy: #0f1a2c;
    --robert-cardDark: #132238;
    --robert-cream: #f5eee6;
    --robert-creamDark: #eae0d5;
    --robert-gold: #f5a623;
    --robert-goldHover: #e69512;
    --robert-goldLight: #fef3dc;
    --robert-textDark: #1c1917;
    --robert-border: #1e293b;
    --robert-slate-700: #334155;
    --robert-slate-800: #1e293b;
    --robert-slate-900: #0f172a;
}

/* =========================================================================
   2. BASE RESET & GLOBAL STYLES
   ========================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--robert-dark);
}

html, body {
    overflow-x: clip !important;
}

body {
    background-color: var(--robert-dark);
    color: #f1f5f9;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-bottom: 76px;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* =========================================================================
   2.1 ESSENTIAL COLOR & TYPOGRAPHY FALLBACK UTILITIES
   ========================================================================= */
.bg-robert-dark { background-color: #0a121e !important; }
.bg-robert-navy { background-color: #0f1a2c !important; }
.bg-robert-cardDark { background-color: #132238 !important; }
.bg-robert-cream { background-color: #f5eee6 !important; color: #1c1917 !important; }
.bg-robert-gold { background-color: #f5a623 !important; }
.text-robert-gold { color: #f5a623 !important; }
.text-robert-dark { color: #0a121e !important; }
.border-robert-border { border-color: #1e293b !important; }
.border-robert-gold { border-color: #f5a623 !important; }
.font-bebas { font-family: 'Bebas Neue', cursive, sans-serif !important; }
.font-display { font-family: 'Outfit', sans-serif !important; }

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

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

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

/* =========================================================================
   3. GLOBAL UTILITY CLASSES (Matching all HTML markup natively)
   ========================================================================= */
.hidden, [hidden], div.hidden, section.hidden, button.hidden, a.hidden, p.hidden,
#heroBtnReserva.hidden, #reserva.hidden, #bottomNav-reserva.hidden, #drawerLinkReserva.hidden {
    display: none !important;
}

/* Typography */
.font-bebas { font-family: 'Bebas Neue', cursive, sans-serif !important; }
.font-display { font-family: 'Outfit', sans-serif !important; }
.font-serif { font-family: 'Playfair Display', serif !important; }
.font-sans { font-family: 'Plus Jakarta Sans', sans-serif !important; }

.text-xs { font-size: 12px !important; }
.text-sm { font-size: 14px !important; }
.text-base { font-size: 16px !important; }
.text-lg { font-size: 18px !important; }
.text-xl { font-size: 20px !important; }
.text-2xl { font-size: 24px !important; }
.text-3xl { font-size: 30px !important; }
.text-4xl { font-size: 36px !important; }
.text-\[9px\] { font-size: 9px !important; }
.text-\[10px\] { font-size: 10px !important; }
.text-\[11px\] { font-size: 11px !important; }

.font-normal { font-weight: 400 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-black { font-weight: 900 !important; }
.italic { font-style: italic !important; }
.uppercase { text-transform: uppercase !important; }

.tracking-tighter { letter-spacing: -0.05em !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }

.leading-none { line-height: 1 !important; }
.leading-tight { line-height: 1.25 !important; }
.leading-relaxed { line-height: 1.625 !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Colors */
.text-white { color: #ffffff !important; }
.text-robert-gold { color: var(--robert-gold) !important; }
.text-robert-dark { color: var(--robert-dark) !important; }
.text-robert-navy { color: var(--robert-navy) !important; }
.text-robert-textDark { color: var(--robert-textDark) !important; }
.text-slate-200 { color: #e2e8f0 !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-700 { color: #334155 !important; }
.text-emerald-400 { color: #34d399 !important; }
.text-emerald-500 { color: #10b981 !important; }
.text-red-400 { color: #f87171 !important; }

/* Backgrounds */
.bg-robert-dark { background-color: var(--robert-dark) !important; }
.bg-robert-navy { background-color: var(--robert-navy) !important; }
.bg-robert-cardDark { background-color: var(--robert-cardDark) !important; }
.bg-robert-cream { background-color: var(--robert-cream) !important; }
.bg-robert-gold { background-color: var(--robert-gold) !important; }
.bg-robert-goldHover { background-color: var(--robert-goldHover) !important; }
.bg-white { background-color: #ffffff !important; }
.bg-slate-900 { background-color: #0f172a !important; }
.bg-slate-800 { background-color: #1e293b !important; }
.bg-slate-700 { background-color: #334155 !important; }
.bg-slate-100 { background-color: #f1f5f9 !important; }
.bg-emerald-600 { background-color: #059669 !important; }
.bg-emerald-500 { background-color: #10b981 !important; }
.bg-red-600 { background-color: #dc2626 !important; }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8) !important; }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6) !important; }
.bg-robert-dark\/90 { background-color: rgba(10, 18, 30, 0.9) !important; }
.bg-robert-dark\/95 { background-color: rgba(10, 18, 30, 0.95) !important; }
.bg-robert-gold\/10 { background-color: rgba(245, 166, 35, 0.1) !important; }
.bg-robert-gold\/15 { background-color: rgba(245, 166, 35, 0.15) !important; }

/* Borders & Radii */
.rounded-lg { border-radius: 8px !important; }
.rounded-xl { border-radius: 12px !important; }
.rounded-2xl { border-radius: 16px !important; }
.rounded-3xl { border-radius: 24px !important; }
.rounded-full { border-radius: 9999px !important; }

.border { border: 1px solid rgba(255, 255, 255, 0.1) !important; }
.border-0 { border: 0 !important; }
.border-t { border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }
.border-b { border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; }
.border-slate-800 { border-color: rgba(30, 41, 59, 0.8) !important; }
.border-slate-700 { border-color: rgba(51, 65, 85, 0.8) !important; }
.border-slate-700\/80 { border-color: rgba(51, 65, 85, 0.8) !important; }
.border-slate-700\/60 { border-color: rgba(51, 65, 85, 0.6) !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }
.border-slate-200\/80 { border-color: rgba(226, 232, 240, 0.8) !important; }
.border-robert-gold { border-color: var(--robert-gold) !important; }
.border-robert-gold\/25 { border-color: rgba(245, 166, 35, 0.25) !important; }
.border-robert-gold\/50 { border-color: rgba(245, 166, 35, 0.5) !important; }

/* Layout & Flex / Grid */
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.shrink-0 { flex-shrink: 0 !important; }
.flex-1 { flex: 1 1 0% !important; }

.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }

.gap-1 { gap: 4px !important; }
.gap-1\.5 { gap: 6px !important; }
.gap-2 { gap: 8px !important; }
.gap-2\.5 { gap: 10px !important; }
.gap-3 { gap: 12px !important; }
.gap-3\.5 { gap: 14px !important; }
.gap-4 { gap: 16px !important; }
.gap-5 { gap: 20px !important; }
.gap-6 { gap: 24px !important; }

.space-y-1 > * + * { margin-top: 4px !important; }
.space-y-1\.5 > * + * { margin-top: 6px !important; }
.space-y-2 > * + * { margin-top: 8px !important; }
.space-y-2\.5 > * + * { margin-top: 10px !important; }
.space-y-3 > * + * { margin-top: 12px !important; }
.space-y-3\.5 > * + * { margin-top: 14px !important; }
.space-y-4 > * + * { margin-top: 16px !important; }
.space-y-6 > * + * { margin-top: 24px !important; }
.space-y-8 > * + * { margin-top: 32px !important; }

/* Dimensions & Spacing */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.w-4 { width: 16px !important; } .h-4 { height: 16px !important; }
.w-5 { width: 20px !important; } .h-5 { height: 20px !important; }
.w-8 { width: 32px !important; } .h-8 { height: 32px !important; }
.w-9 { width: 36px !important; } .h-9 { height: 36px !important; }
.w-10 { width: 40px !important; } .h-10 { height: 40px !important; }
.w-12 { width: 48px !important; } .h-12 { height: 48px !important; }
.w-14 { width: 56px !important; } .h-14 { height: 56px !important; }
.h-36 { height: 144px !important; }
.h-44 { height: 176px !important; }
.h-48 { height: 192px !important; }
.h-52 { height: 208px !important; }
.h-56 { height: 224px !important; }
.min-h-\[90px\] { min-height: 90px !important; }
.min-h-\[140px\] { min-height: 140px !important; }
.max-h-\[260px\] { max-height: 260px !important; }
.max-h-\[90vh\] { max-height: 90vh !important; }
.aspect-square { aspect-ratio: 1 / 1 !important; }

.max-w-xs { max-width: 320px !important; }
.max-w-sm { max-width: 384px !important; }
.max-w-md { max-width: 448px !important; }
.max-w-lg { max-width: 512px !important; }
.max-w-xl { max-width: 576px !important; }
.max-w-2xl { max-width: 672px !important; }
.max-w-4xl { max-width: 896px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.p-2 { padding: 8px !important; }
.p-2\.5 { padding: 10px !important; }
.p-3 { padding: 12px !important; }
.p-3\.5 { padding: 14px !important; }
.p-4 { padding: 16px !important; }
.p-5 { padding: 20px !important; }
.p-6 { padding: 24px !important; }
.px-3 { padding-left: 12px !important; padding-right: 12px !important; }
.px-3\.5 { padding-left: 14px !important; padding-right: 14px !important; }
.px-4 { padding-left: 16px !important; padding-right: 16px !important; }
.px-5 { padding-left: 20px !important; padding-right: 20px !important; }
.px-6 { padding-left: 24px !important; padding-right: 24px !important; }
.px-8 { padding-left: 32px !important; padding-right: 32px !important; }
.py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
.py-2\.5 { padding-top: 10px !important; padding-bottom: 10px !important; }
.py-3 { padding-top: 12px !important; padding-bottom: 12px !important; }
.py-3\.5 { padding-top: 14px !important; padding-bottom: 14px !important; }
.py-4 { padding-top: 16px !important; padding-bottom: 16px !important; }
.py-5 { padding-top: 20px !important; padding-bottom: 20px !important; }
.py-8 { padding-top: 32px !important; padding-bottom: 32px !important; }
.py-10 { padding-top: 40px !important; padding-bottom: 40px !important; }
.py-12 { padding-top: 48px !important; padding-bottom: 48px !important; }
.pt-3 { padding-top: 12px !important; }
.pt-4 { padding-top: 16px !important; }
.pt-6 { padding-top: 24px !important; }
.pt-8 { padding-top: 32px !important; }
.pb-2 { padding-bottom: 8px !important; }
.pb-4 { padding-bottom: 16px !important; }
.pb-6 { padding-bottom: 24px !important; }

.mt-0\.5 { margin-top: 2px !important; }
.mt-1 { margin-top: 4px !important; }
.mt-1\.5 { margin-top: 6px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-2\.5 { margin-top: 10px !important; }
.mt-3 { margin-top: 12px !important; }
.mt-3\.5 { margin-top: 14px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-5 { margin-top: 20px !important; }
.mt-6 { margin-top: 24px !important; }
.mt-8 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 4px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 12px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-5 { margin-bottom: 20px !important; }
.mb-6 { margin-bottom: 24px !important; }

.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }
.top-2 { top: 8px !important; } .left-2 { left: 8px !important; }
.top-3 { top: 12px !important; } .left-3 { left: 12px !important; }
.top-4 { top: 16px !important; } .right-4 { right: 16px !important; }
.bottom-2 { bottom: 8px !important; } .right-2 { right: 8px !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }

.overflow-hidden { overflow: hidden !important; }
.overflow-y-auto { overflow-y: auto !important; }
.overflow-x-auto { overflow-x: auto !important; }
.object-cover { object-fit: cover !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.shadow-gold { box-shadow: 0 10px 25px -5px rgba(245, 166, 35, 0.35) !important; }
.shadow-card { box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08) !important; }

.backdrop-blur-sm { backdrop-filter: blur(4px) !important; -webkit-backdrop-filter: blur(4px) !important; }
.backdrop-blur-md { backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }

/* Transitions */
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease !important; }
.transition-transform { transition: transform 0.15s ease !important; }
.transition-all { transition: all 0.2s ease !important; }
.active\:scale-95:active { transform: scale(0.95) !important; }
#mainApp {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

@media (min-width: 1024px) {
    #mainApp {
        max-width: 1120px !important;
    }
}

/* =========================================================================
   4. TOP PROMO BANNER
   ========================================================================= */
#topPromoBanner {
    background: linear-gradient(90deg, #f59e0b, #f5a623, #d97706) !important;
    color: #0a121e !important;
    padding: 7px 14px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
    z-index: 50 !important;
}

#topPromoBanner span.badge {
    background-color: #0a121e !important;
    color: #ffffff !important;
    padding: 2px 7px !important;
    border-radius: 9999px !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    flex-shrink: 0 !important;
}

#topPromoBanner a {
    color: #0a121e !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    margin-left: 4px !important;
    flex-shrink: 0 !important;
}

#contacto {
    padding-bottom: 90px !important;
}

/* =========================================================================
   5. TOP STICKY HEADER
   ========================================================================= */
header, header.sticky {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    background-color: rgba(10, 18, 30, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(30, 41, 59, 0.8) !important;
    padding: 10px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 64px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.header-brand-logo {
    display: flex !important;
    align-items: center !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 20 !important;
    transition: transform 0.2s ease !important;
}

.header-brand-logo img {
    height: 38px !important;
    max-width: 180px !important;
    width: auto !important;
    object-fit: contain !important;
    border-radius: 10px !important;
}

.header-brand-logo:hover {
    transform: translate(-50%, -50%) scale(1.04) !important;
}

.desktop-nav-links,
.header-phone-btn {
    display: none !important;
}

@media (min-width: 768px) {
    header {
        padding: 10px 32px !important;
    }

    .header-brand-logo {
        position: static !important;
        transform: none !important;
    }

    .header-brand-logo:hover {
        transform: scale(1.04) !important;
    }

    .header-brand-logo img {
        height: 44px !important;
        max-width: 220px !important;
        width: auto !important;
        border-radius: 12px !important;
    }

    .desktop-nav-links,
    header nav {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;
    }

    .desktop-nav-links a,
    header nav a {
        color: #cbd5e1 !important;
        font-family: 'Outfit', sans-serif !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        transition: color 0.15s ease !important;
        display: inline-flex !important;
        flex-direction: row !important;
    }

    .desktop-nav-links a:hover,
    header nav a:hover {
        color: var(--robert-gold) !important;
    }

    #hamburgerBtn,
    header button[onclick*="toggleMobileMenu"] {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .header-phone-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
}

.header-install-btn {
    display: none !important;
}

@media (min-width: 768px) {
    .header-install-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        border-radius: 14px !important;
    }
    .header-install-btn .header-install-text {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .header-install-btn {
        width: auto !important;
        height: 42px !important;
        padding: 0 16px !important;
        border-radius: 14px !important;
        gap: 8px !important;
    }
    .header-install-btn .header-install-text {
        display: inline !important;
    }
}

header button:not(.header-install-btn):not(#hamburgerBtn):not([onclick*="toggleMobileMenu"]) {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: transform 0.15s ease, background-color 0.15s ease !important;
    flex-shrink: 0 !important;
}

header button:active {
    transform: scale(0.94);
}

@media (max-width: 767px) {
    #hamburgerBtn,
    header button[onclick*="toggleMobileMenu"] {
        width: 42px !important;
        height: 42px !important;
        border-radius: 14px !important;
        background-color: var(--robert-cardDark) !important;
        border: 1px solid rgba(51, 65, 85, 0.8) !important;
        color: #f1f5f9 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

header button:last-child {
    background-color: var(--robert-gold) !important;
    border: none !important;
    color: var(--robert-dark) !important;
    font-size: 17px !important;
    position: relative !important;
    box-shadow: 0 4px 15px -2px rgba(245, 166, 35, 0.45) !important;
}

header a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    user-select: none !important;
}

header a span:first-child {
    font-family: 'Bebas Neue', cursive, sans-serif !important;
    font-size: 2.1rem !important;
    line-height: 0.9 !important;
    color: var(--robert-gold) !important;
    letter-spacing: 0.06em !important;
}

header a span:last-child {
    font-family: 'Outfit', sans-serif !important;
    font-size: 8.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.24em !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin-top: -1px !important;
}

/* =========================================================================
   6. HERO SECTION
   ========================================================================= */
#inicio {
    padding: 28px 18px 34px 18px !important;
    text-align: center !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
}

.tag-pill,
.hero-pill-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 14px !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(245, 166, 35, 0.4) !important;
    background-color: rgba(245, 166, 35, 0.12) !important;
    color: var(--robert-gold) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    margin: 0 auto 14px auto !important;
}

.hero-main-title,
.hero-headline {
    font-family: 'Bebas Neue', cursive, sans-serif !important;
    font-size: clamp(3.2rem, 12vw, 4.4rem) !important;
    line-height: 0.88 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    margin: 0 auto 14px auto !important;
    max-width: 360px !important;
    color: #ffffff !important;
}

.hero-main-title .gold,
.hero-headline .line-gold {
    color: var(--robert-gold) !important;
    display: block !important;
}

.hero-headline .line-white {
    color: #ffffff !important;
    display: block !important;
}

.hero-main-title + p,
.subtitle,
.hero-subtitle {
    color: #94a3b8 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    max-width: 290px !important;
    margin: 0 auto 24px auto !important;
}

.hero-img-box,
.hero-image-card {
    position: relative !important;
    width: 100% !important;
    max-width: 360px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin: 0 auto !important;
}

@media (min-width: 900px) {
    #inicio {
        padding: 48px 24px 56px 24px !important;
        align-items: stretch !important;
    }
    
    .hero-container {
        display: grid !important;
        grid-template-columns: 1.15fr 0.85fr !important;
        align-items: center !important;
        gap: 48px !important;
        max-width: 1100px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .hero-content .tag-pill,
    .hero-content .hero-pill-badge {
        margin: 0 0 16px 0 !important;
        align-self: flex-start !important;
    }

    .hero-content .hero-main-title,
    .hero-content .hero-headline {
        font-size: 4.8rem !important;
        max-width: 480px !important;
        margin: 0 0 16px 0 !important;
        text-align: left !important;
        align-self: flex-start !important;
    }

    .hero-content .hero-main-title + p,
    .hero-content .subtitle,
    .hero-content .hero-subtitle {
        max-width: 440px !important;
        margin: 0 0 28px 0 !important;
        text-align: left !important;
        align-self: flex-start !important;
        font-size: 14px !important;
    }

    .hero-content #heroActionsContainer {
        flex-direction: row !important;
        max-width: 440px !important;
        margin: 0 !important;
        align-self: flex-start !important;
    }

    .hero-media {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-img-box {
        max-width: 440px !important;
        margin-bottom: 0 !important;
    }

    .hero-img-box img {
        height: 380px !important;
    }
}

.hero-img-box img,
.hero-image-card img {
    width: 100% !important;
    height: 310px !important;
    object-fit: cover !important;
    display: block !important;
}

.hero-img-overlay,
.hero-floating-badge {
    position: absolute !important;
    bottom: 14px !important;
    left: 14px !important;
    right: 14px !important;
    background-color: rgba(10, 18, 30, 0.88) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 18px !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
}

.hero-img-overlay .badge-label,
.hero-floating-badge .badge-tag {
    font-size: 8.5px !important;
    font-weight: 900 !important;
    color: var(--robert-gold) !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.hero-img-overlay .badge-title,
.hero-floating-badge .badge-name {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
}

.hero-img-overlay .badge-price,
.hero-floating-badge .badge-price {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 17px !important;
    color: var(--robert-gold) !important;
}

#heroActionsContainer,
.hero-actions-grid {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#heroBtnCarta,
.hero-btn-gold {
    width: 100% !important;
    background-color: var(--robert-gold) !important;
    color: var(--robert-dark) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 15px 24px !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 25px -5px rgba(245, 166, 35, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

#heroBtnCarta:hover,
.hero-btn-gold:hover {
    background-color: var(--robert-goldHover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px -4px rgba(245, 166, 35, 0.5) !important;
}

#heroBtnCarta:active,
.hero-btn-gold:active {
    transform: scale(0.97) !important;
}

#heroBtnReserva:not(.hidden),
.hero-btn-dark:not(.hidden) {
    width: 100% !important;
    background-color: var(--robert-cardDark) !important;
    border: 1px solid rgba(51, 65, 85, 0.8) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 14px 24px !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: transform 0.15s ease !important;
}

#heroBtnReserva:active,
.hero-btn-dark:active {
    transform: scale(0.97) !important;
}

/* =========================================================================
   7. QUICK INFO STRIP & CARDS (PREMIUM REDESIGN)
   ========================================================================= */
#quickInfoStrip {
    padding: 10px 16px 28px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: transparent !important;
    border: none !important;
}

.quick-info-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

@media (min-width: 640px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

@media (min-width: 1024px) {
    .quick-info-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }
}

.quick-info-card {
    background: linear-gradient(155deg, rgba(18, 29, 46, 0.92) 0%, rgba(10, 18, 30, 0.98) 100%) !important;
    border: 1px solid rgba(51, 65, 85, 0.7) !important;
    border-radius: 22px !important;
    padding: 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 152px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.45) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.quick-info-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(245, 166, 35, 0.45) !important;
    box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 166, 35, 0.08) !important;
}

.quick-info-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    background-color: var(--robert-cardDark) !important;
    border: 1px solid rgba(71, 85, 105, 0.6) !important;
    color: var(--robert-gold) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

.quick-info-tag {
    font-family: 'Outfit', sans-serif !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    display: block !important;
}

.quick-info-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-top: 1px !important;
}

.quick-info-desc {
    font-size: 11px !important;
    color: #94a3b8 !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
}

.quick-info-action-link {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 10px !important;
    color: var(--robert-gold) !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.quick-info-action-link:hover {
    color: #ffffff !important;
}

.quick-info-cta-btn {
    width: 100% !important;
    background: linear-gradient(135deg, #f5a623 0%, #e09415 100%) !important;
    color: #0a121e !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 9px 12px !important;
    border-radius: 12px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.quick-info-cta-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.45) !important;
}

.quick-info-cta-btn:active {
    transform: scale(0.97) !important;
}

/* =========================================================================
   8. CARTA / MENU SECTION (CREAM SAND BACKGROUND) - FULLY RESPONSIVE
   ========================================================================= */
#carta {
    background-color: var(--robert-cream) !important;
    color: var(--robert-textDark) !important;
    padding: 40px 16px 56px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    #carta {
        padding: 60px 24px 72px 24px !important;
    }
}

.carta-container {
    width: 100% !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
}

.carta-header {
    text-align: center !important;
    margin-bottom: 24px !important;
}

.carta-header .sub-badge {
    color: var(--robert-gold) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

.carta-header h2 {
    font-family: 'Bebas Neue', cursive, sans-serif !important;
    font-size: 3rem !important;
    color: var(--robert-navy) !important;
    line-height: 0.95 !important;
    margin-top: 4px !important;
}

@media (min-width: 768px) {
    .carta-header h2 {
        font-size: 3.8rem !important;
    }
}

.carta-header p {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 13px !important;
    color: #475569 !important;
    margin-top: 6px !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Category Filter Tabs Bar */
.categories-bar,
#carta .overflow-x-auto {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 4px 4px 12px 4px !important;
    margin-bottom: 20px !important;
    scrollbar-width: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.categories-bar::-webkit-scrollbar {
    display: none !important;
}

@media (min-width: 768px) {
    .categories-bar,
    #carta .overflow-x-auto {
        flex-wrap: wrap !important;
        justify-content: center !important;
        overflow-x: visible !important;
        gap: 10px !important;
        margin-bottom: 32px !important;
    }
}

.category-tab,
.menu-tab,
#carta button[onclick*="filterCategory"],
#carta button[onclick*="filterMenu"] {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(203, 213, 225, 0.9) !important;
    background-color: #ffffff !important;
    color: #334155 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s ease !important;
}

@media (min-width: 768px) {
    .category-tab,
    .menu-tab,
    #carta button[onclick*="filterCategory"],
    #carta button[onclick*="filterMenu"] {
        font-size: 12px !important;
        padding: 9px 18px !important;
    }
}

.category-tab:hover,
.menu-tab:hover,
#carta button[onclick*="filterCategory"]:hover,
#carta button[onclick*="filterMenu"]:hover {
    border-color: var(--robert-gold) !important;
    color: #0a121e !important;
}

.category-tab.active,
.menu-tab.active,
#carta button[onclick*="filterCategory"].active,
#carta button[onclick*="filterMenu"].active {
    background-color: var(--robert-gold) !important;
    color: var(--robert-dark) !important;
    border-color: var(--robert-gold) !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3) !important;
}

/* =========================================================================
   8.1 CARTA LIVE SEARCH & ALLERGEN FILTERS TOOLBAR
   ========================================================================= */
.carta-toolbar {
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto 24px auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.search-box-wrapper {
    position: relative !important;
    width: 100% !important;
}

.search-box-wrapper .search-icon {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #64748b !important;
    pointer-events: none !important;
}

.dish-search-input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 13px 44px 13px 46px !important;
    border-radius: 18px !important;
    background-color: #ffffff !important;
    border: 1.5px solid rgba(203, 213, 225, 0.9) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    color: #0a121e !important;
    outline: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.dish-search-input:focus {
    border-color: var(--robert-gold) !important;
    box-shadow: 0 4px 18px rgba(245, 166, 35, 0.2) !important;
}

.dish-search-input::placeholder {
    color: #94a3b8 !important;
    font-size: 12px !important;
}

.clear-search-btn {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background-color: #f1f5f9 !important;
    border: none !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease, color 0.15s ease !important;
}

.clear-search-btn:hover {
    background-color: #e2e8f0 !important;
    color: #0a121e !important;
}

/* Allergen & Preference Chips Bar */
.allergen-chips-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding-bottom: 4px !important;
    scrollbar-width: none !important;
}

.allergen-chips-bar::-webkit-scrollbar {
    display: none !important;
}

@media (min-width: 768px) {
    .allergen-chips-bar {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

.allergen-chip {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border-radius: 9999px !important;
    padding: 6px 13px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    background-color: #ffffff !important;
    color: #475569 !important;
    border: 1px solid rgba(203, 213, 225, 0.8) !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.allergen-chip:hover {
    border-color: #94a3b8 !important;
    color: #0a121e !important;
}

.allergen-chip.active {
    background-color: #0f1a2c !important;
    color: var(--robert-gold) !important;
    border-color: #0f1a2c !important;
    box-shadow: 0 4px 10px rgba(15, 26, 44, 0.25) !important;
}

.dish-results-info {
    text-align: center !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    margin-top: 2px !important;
}

/* =========================================================================
   8.2 MODIFIER FAMILIES & ITEM DETAIL MODAL UPGRADES
   ========================================================================= */
.mod-family-box {
    background-color: var(--robert-cardDark) !important;
    border: 1px solid rgba(51, 65, 85, 0.7) !important;
    border-radius: 18px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
}

.mod-family-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.mod-family-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.mod-family-badge {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 2px 8px !important;
    border-radius: 9999px !important;
    background-color: rgba(245, 166, 35, 0.15) !important;
    color: var(--robert-gold) !important;
    border: 1px solid rgba(245, 166, 35, 0.3) !important;
}

.mod-family-badge.optional {
    background-color: rgba(148, 163, 184, 0.12) !important;
    color: #94a3b8 !important;
    border-color: rgba(148, 163, 184, 0.25) !important;
}

/* Radio chips grid for single selection */
.mod-radio-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 7px !important;
}

.mod-radio-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px 12px !important;
    border-radius: 12px !important;
    background-color: var(--robert-dark) !important;
    border: 1px solid rgba(71, 85, 105, 0.6) !important;
    color: #e2e8f0 !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: all 0.15s ease !important;
}

.mod-radio-card:hover {
    border-color: rgba(245, 166, 35, 0.5) !important;
}

.mod-radio-card.selected {
    background-color: rgba(245, 166, 35, 0.12) !important;
    border-color: var(--robert-gold) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.2) !important;
}

.mod-radio-card input {
    display: none !important;
}

.mod-radio-card .check-dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    border: 2px solid #64748b !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.15s ease !important;
}

.mod-radio-card.selected .check-dot {
    border-color: var(--robert-gold) !important;
    background-color: var(--robert-gold) !important;
}

.mod-radio-card.selected .check-dot::after {
    content: '' !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background-color: #0a121e !important;
}

/* Checkbox rows for multiple supplements */
.mod-checkbox-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px 12px !important;
    margin-bottom: 6px !important;
    border-radius: 12px !important;
    background-color: var(--robert-dark) !important;
    border: 1px solid rgba(71, 85, 105, 0.6) !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: all 0.15s ease !important;
}

.mod-checkbox-row:last-child {
    margin-bottom: 0 !important;
}

.mod-checkbox-row:hover {
    border-color: rgba(245, 166, 35, 0.5) !important;
}

.mod-checkbox-row.selected {
    background-color: rgba(245, 166, 35, 0.08) !important;
    border-color: var(--robert-gold) !important;
}

.mod-checkbox-row input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    accent-color: var(--robert-gold) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

/* Dish Allergens Badges */
.dish-allergens-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-top: 6px !important;
}

.dish-allergen-tag {
    font-size: 9px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 1.5px 6px !important;
    border-radius: 6px !important;
    background-color: rgba(241, 245, 249, 0.9) !important;
    color: #475569 !important;
    border: 1px solid rgba(203, 213, 225, 0.7) !important;
}

/* Responsive Menu Dishes Grid */
#menuGrid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    #menuGrid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }
}

@media (min-width: 1200px) {
    #menuGrid {
        gap: 20px !important;
    }
}

/* Product Card - Fluid & Responsive across Mobile, Tablet & Desktop */
.product-card {
    background-color: #ffffff !important;
    border-radius: 18px !important;
    padding: 10px 12px !important;
    box-shadow: 0 3px 12px -2px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

@media (min-width: 480px) {
    .product-card {
        padding: 12px 14px !important;
        gap: 14px !important;
        border-radius: 20px !important;
    }
}

@media (min-width: 768px) {
    .product-card {
        padding: 14px 16px !important;
        border-radius: 22px !important;
    }
}

.product-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(245, 166, 35, 0.45) !important;
}

.product-card:active {
    transform: scale(0.985) !important;
}

.product-card .card-thumb,
.product-card .product-card-thumb,
.product-card > div:first-child {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background-color: #f1f5f9 !important;
    position: relative !important;
}

@media (min-width: 480px) {
    .product-card .card-thumb,
    .product-card .product-card-thumb,
    .product-card > div:first-child {
        width: 82px !important;
        height: 82px !important;
        min-width: 82px !important;
        max-width: 82px !important;
        border-radius: 16px !important;
    }
}

@media (min-width: 768px) {
    .product-card .card-thumb,
    .product-card .product-card-thumb,
    .product-card > div:first-child {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
        max-width: 90px !important;
    }
}

.product-card .card-thumb img,
.product-card .product-card-thumb img,
.product-card > div:first-child img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.product-card-tag {
    position: absolute !important;
    top: 3px !important;
    left: 3px !important;
    padding: 2px 4px !important;
    border-radius: 4px !important;
    background-color: var(--robert-gold) !important;
    color: var(--robert-dark) !important;
    font-weight: 900 !important;
    font-size: 7.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.product-card .card-info,
.product-card .product-card-body,
.product-card > div:nth-child(2) {
    flex: 1 !important;
    min-width: 0 !important;
    padding-right: 4px !important;
}

.product-card h3,
.product-card .product-card-title {
    font-family: 'Bebas Neue', cursive, sans-serif !important;
    font-size: 1.35rem !important;
    line-height: 1.05 !important;
    color: var(--robert-navy) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
    letter-spacing: 0.03em !important;
}

@media (min-width: 480px) {
    .product-card h3,
    .product-card .product-card-title {
        font-size: 1.45rem !important;
    }
}

@media (min-width: 768px) {
    .product-card h3,
    .product-card .product-card-title {
        font-size: 1.6rem !important;
    }
}

.product-card p,
.product-card .product-card-desc {
    color: #64748b !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin-top: 2px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

@media (min-width: 768px) {
    .product-card p,
    .product-card .product-card-desc {
        font-size: 12px !important;
        line-height: 1.35 !important;
        margin-top: 3px !important;
    }
}

.product-card .price-tag,
.product-card .product-card-price,
.product-card span[class*="text-robert-gold"] {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    color: var(--robert-gold) !important;
    margin-top: 3px !important;
    display: inline-block !important;
}

@media (min-width: 768px) {
    .product-card .price-tag,
    .product-card .product-card-price,
    .product-card span[class*="text-robert-gold"] {
        font-size: 17px !important;
    }
}

.product-card button.add-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 50% !important;
    background-color: var(--robert-navy) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

@media (min-width: 768px) {
    .product-card button.add-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }
}

.product-card button.add-btn:hover {
    background-color: var(--robert-gold) !important;
    color: var(--robert-dark) !important;
    transform: scale(1.08) !important;
}

.product-card button.add-btn:active {
    transform: scale(0.88) !important;
}

/* =========================================================================
   9. EXPERIENCIA ROBERT (4 BADGES)
   ========================================================================= */
#experiencia {
    background-color: var(--robert-navy) !important;
    color: #ffffff !important;
    padding: 48px 20px !important;
    border-top: 1px solid rgba(30, 41, 59, 0.8) !important;
    text-align: center !important;
}

#experiencia .award-box {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    background-color: rgba(245, 166, 35, 0.1) !important;
    border: 1px solid rgba(245, 166, 35, 0.25) !important;
    color: var(--robert-gold) !important;
    margin: 0 auto 12px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}

#experiencia .badge-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

#experiencia .badge-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    background-color: var(--robert-cardDark) !important;
    border: 1px solid rgba(51, 65, 85, 0.8) !important;
    color: var(--robert-gold) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    margin-bottom: 8px !important;
}

/* =========================================================================
   10. STICKY BOTTOM APP NAVIGATION
   ========================================================================= */
nav.bottom-app-nav, #bottomNav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background-color: rgba(10, 18, 30, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(30, 41, 59, 0.9) !important;
    padding: 8px 12px 10px 12px !important;
    display: block !important;
}

@media (min-width: 768px) {
    nav.bottom-app-nav, #bottomNav {
        display: none !important;
    }
}

#bottomNavGrid,
.bottom-nav-grid {
    display: grid !important;
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
}

#bottomNavGrid.grid-cols-4,
.bottom-nav-grid.grid-cols-4,
.bottom-nav-grid.cols-4,
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#bottomNavGrid.grid-cols-5,
.bottom-nav-grid.grid-cols-5,
.bottom-nav-grid.cols-5,
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.nav-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 9.5px !important;
    letter-spacing: 0.05em !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px 2px !important;
    transition: color 0.15s ease !important;
}

.nav-link svg {
    color: currentColor !important;
}

.nav-link.nav-active,
.nav-link:hover {
    color: var(--robert-gold) !important;
}

/* =========================================================================
   11. MODALS & SIDE DRAWER
   ========================================================================= */
#sideDrawer[class*="-translate-x-full"],
.-translate-x-full,
.\-translate-x-full {
    transform: translateX(-100%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

#sideDrawer:not([class*="-translate-x-full"]) {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Form Controls */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    font-family: inherit !important;
    font-size: 13px !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--robert-dark);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--robert-gold);
}

/* =========================================================================
   12. BLOG & CONTACTO RESPONSIVE DESKTOP LAYOUTS
   ========================================================================= */
#blog .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    #blog .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }
}

#contacto .grid-cols-1.md\:grid-cols-2,
#contacto > div > div.grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    #contacto .grid-cols-1.md\:grid-cols-2,
    #contacto > div > div.grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 32px !important;
    }
}

/* =========================================================================
   INSTAGRAM FEED & SOCIAL GALLERY CARDS
   ========================================================================= */
.ig-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--robert-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ig-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.25);
    border-color: rgba(245, 166, 35, 0.4);
}

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

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

.ig-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    opacity: 0.9;
}

.ig-card:hover .ig-card-badge {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.5);
    opacity: 1;
}

.ig-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    color: #ffffff;
    z-index: 1;
}

.ig-card:hover .ig-card-overlay {
    opacity: 1;
    visibility: visible;
}

#instagramFeedGrid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (min-width: 640px) {
    #instagramFeedGrid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 14px !important;
    }
}

@media (min-width: 1024px) {
    #instagramFeedGrid {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 14px !important;
    }
}

/* =========================================================================
   SCROLL REVEAL & STAGGER ANIMATIONS (GPU ACCELERATED, 60-120 FPS)
   ========================================================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96) translateY(18px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Stagger delay utilities */
.delay-75  { transition-delay: 0.075s; }
.delay-150 { transition-delay: 0.15s; }
.delay-225 { transition-delay: 0.225s; }
.delay-300 { transition-delay: 0.3s; }
.delay-375 { transition-delay: 0.375s; }
.delay-450 { transition-delay: 0.45s; }

