:root {
    --primary-green: #063023;
    /* Updated Brand Green */
    --secondary-green: #042018;
    /* Darker shade */
    --accent-gold: #AD9855;
    /* Updated Brand Gold */
    --color-black: #141414;
    /* Brand Black */

    --text-light: #f5f5f5;
    --text-muted: #a3b8b0;

    --font-heading: 'Antonio', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-black);
    color: var(--text-light);
    font-family: var(--font-body);
    width: 100%;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    /* iOS fix: prevents pull-to-dismiss gesture in Instagram/Safari WebView */
    overscroll-behavior: none;
    color-scheme: light;
}

/* Status Badge Animation Fixes */
.status-badge {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}
.status-badge.minimized {
    width: 32px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    justify-content: center !important;
}
.status-badge.minimized span {
    display: inline-block;
    transition: all 0.2s ease;
}
.status-badge.minimized #status-text {
    opacity: 0;
    width: 0;
    margin: 0;
    visibility: hidden;
}

/* Base Mobile Optimization */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    color-scheme: light;
}

/* Neon Background Effects */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* iOS Safari only: position:fixed on body pseudo-elements creates broken GPU
   compositor layers during momentum scroll, causing white-screen flicker.
   On iOS we switch to absolute — visually identical at these opacity levels. */
@supports (-webkit-touch-callout: none) {
    body::before,
    body::after {
        position: absolute;
    }
}

body::before {
    background: radial-gradient(circle, rgba(173, 152, 85, 0.15), transparent 70%);
    top: -200px;
    left: -200px;
}

body::after {
    background: radial-gradient(circle, rgba(173, 152, 85, 0.08), transparent 70%);
    /* Elegant Gold accent instead of red */
    bottom: 10%;
    right: -100px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Navigation - Restored to Standard Centering */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(4, 20, 16, 0.35) 100%) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-bottom: 1.5px solid rgba(173, 152, 85, 0.35) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(173, 152, 85, 0.05) !important;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 30px;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--accent-gold);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    padding-bottom: env(safe-area-inset-bottom);
    /* iPhone X+ fix */
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    cursor: pointer;
}

.mobile-menu-overlay ul {
    list-style: none;
    text-align: center;
}

.mobile-menu-overlay a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: block;
    margin: 20px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh;
    /* Dynamic Viewport Height for mobile browsers */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--primary-green) 0%, var(--color-black) 80%);
    position: relative;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    transform: none;
    /* Removed shift */
}

.script-subtitle {
    font-family: var(--font-script);
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: -10px;
    transform: rotate(-5deg);
}

.main-title {
    font-size: 8rem;
    line-height: 1;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-gold);
    /* 2px for larger text */
    animation: neonPulse 3s infinite alternate;
}

.sub-title {
    font-size: 1.2rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.deco-line {
    width: 100px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.script-accent {
    font-family: var(--font-script);
    color: var(--accent-gold);
    font-size: 2rem;
    margin-left: 5px;
}

.cta-btn {
    border: 1px solid rgba(173, 152, 85, 0.8);
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    border-radius: 50px;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    color: #042018;
    background: linear-gradient(135deg, #d4af37 0%, #ad9855 50%, #8c732b 100%);
    box-shadow: 0 4px 15px rgba(173, 152, 85, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shimmer 4s infinite ease-in-out;
}

@keyframes shimmer {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

.cta-btn:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #ad9855 100%);
    border-color: #f3e5ab;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Arch Decorations */
.arch {
    position: absolute;
    width: 400px;
    height: 600px;
    border: 1px solid rgba(173, 152, 85, 0.1);
    border-radius: 400px 400px 0 0;
    bottom: 0;
    pointer-events: none;
}

.arch-left {
    left: 10%;
}

.arch-right {
    right: 10%;
}

/* Menu Section */
.menu-section {
    padding: 80px 20px;
    background: transparent !important;
    position: relative;
    overflow: hidden;
    /* Ensure pseudo-element doesn't overflow */
    box-shadow: none !important;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pattern without shadow, just Gold on Green */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='120' viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23AD9855' stroke-width='1' stroke-opacity='0.4'%3E%3Cpath d='M10 0v120 M50 0v120' /%3E%3Crect x='10' y='20' width='40' height='80' rx='20' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 180px 360px;
    filter: blur(0.5px);
    /* Very subtle blur */
    z-index: 0;
    pointer-events: none;
    
    /* Fade in the texture smoothly from the top to hide starting line */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 150px);
    mask-image: linear-gradient(to bottom, transparent 0%, black 150px);
}

.menu-section>* {
    position: relative;
    z-index: 1;
    /* Ensure content stays above the blurred background */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.deco-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.deco-dot::before,
.deco-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: rgba(173, 152, 85, 0.3);
}

.deco-dot::before {
    right: 20px;
}

.deco-dot::after {
    left: 20px;
}

.menu-category {
    max-width: 1200px;
    margin: 0 auto 80px;
    content-visibility: auto;
    /* Skip rendering off-screen DOM completely */
    contain-intrinsic-size: 800px;
    /* Placeholder height while off-screen */
}

.category-title {
    font-size: 2rem;
    border-bottom: 1px solid rgba(173, 152, 85, 0.2);
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.category-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid for Cards */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Menu Card Styles - Optimized for performance */
.menu-card {
    background: rgba(20, 20, 20, 0.95);
    /* Solidified background to remove need for blur */
    border: 1px solid rgba(173, 152, 85, 0.15);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;

    transform: translateY(20px);
    will-change: transform, opacity;
    transition: opacity 0.6s ease-out,
        transform 0.6s ease-out,
        box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(173, 152, 85, 0.2);
    border-color: rgba(173, 152, 85, 0.4);
    /* Gold border emphasis on hover instead of red for elegance */
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000;
    content-visibility: auto;
    /* Skips complex image paints off-screen */
    contain-intrinsic-size: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    /* Hardware acceleration for image zoom */
    transition: transform 0.5s;
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    /* Optimize text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    line-height: 1.2;
}

.card-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    white-space: nowrap;
    margin-left: 10px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

.card-pairing {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 10px;
    opacity: 0.8;
    line-height: 1.3;
}

/* Location Section */
.location-section {
    padding: 80px 20px;
    background: var(--secondary-green);
    text-align: center;
}

.location-section .section-title {
    text-align: center;
}

.location-content {
    max-width: 1200px;
    /* Aligned with About */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 0;
    /* Removed Shift */
}

@media (min-width: 900px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.info-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.info-item ion-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.reviews-preview {
    margin-top: 40px;
    padding-top: 20px;
    position: relative;
    border-top: none !important;
}

.reviews-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(173, 152, 85, 0.15) 50%, transparent 100%) !important;
    height: 1.5px !important;
    border: none !important;
    width: 80%;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.author {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-align: right;
}

footer {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border-top: none !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(173, 152, 85, 0.15) 50%, transparent 100%) !important;
    height: 1.5px !important;
    border: none !important;
    width: 80%;
}

.social-links {
    margin-bottom: 20px;
}

.social-links ion-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: 0.3s;
}

.social-links ion-icon:hover {
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .main-title {
        font-size: 5rem;
    }

    .arch {
        display: none;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        /* Full width cards on mobile */
    }

    .navbar {
        padding: 20px;
    }

    .location-content,
    .about-container-three-col {
        padding-left: 0;
    }

    .hero-content {
        transform: none;
    }
}

.whatsapp-btn,
.spotify-btn,
.back-to-top {
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    /* Lift up on iPhone X+ */
    transform: translateZ(0);
    /* iOS fix: removed will-change:transform — redundant with translateZ(0)
       and creates unnecessary GPU compositor layers that cause white flicker */
}

/* WhatsApp Button Container */
.whatsapp-btn {
    position: fixed;
    /* bottom handled by group rule */
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s;
    will-change: transform;
    touch-action: manipulation;
    /* Continuous pulse animation to encourage action */
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateZ(0);
    animation: none;
    /* Stop pulsing on hover */
}

/* Tooltip "ReservÃ¡ tu mesa" */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #052b22;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    pointer-events: none;
    font-family: var(--font-body);
    animation: showTooltip 15s infinite;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Show tooltip periodically or on hover */
/* Show tooltip periodically or on hover */
@media (hover: hover) and (pointer: fine) {
    .whatsapp-btn:hover .whatsapp-tooltip {
        opacity: 1;
        transform: translateX(0);
        animation: none;
        /* Force show on hover */
    }
}

/* Animation to show/hide tooltip automatically */
@keyframes showTooltip {

    0%,
    80% {
        opacity: 0;
        transform: translateX(10px);
    }

    85%,
    95% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Spotify Floating Button */
.spotify-btn {
    position: fixed;
    /* bottom handled by group rule */
    left: 30px;
    /* Opposite side */
    background: #1DB954;
    /* Spotify Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    /* Ensures icon size */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s;
    will-change: transform;
    touch-action: manipulation;
    overflow: visible;
    /* Important for tooltip */
}

/* Fix for centering icon */
.spotify-btn ion-icon {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
    transform: translateX(-1px);
    /* Nudge left slightly (fine-tuned) */
}

.spotify-btn:hover {
    transform: scale(1.1) translateZ(0);
}

/* Musical Wave Animation */
.spotify-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #1DB954;
    opacity: 0;
    animation: wave-animation 2s infinite;
    z-index: -1;
    /* Behind icon */
}

@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Spotify Tooltip */
.spotify-tooltip {
    position: absolute;
    left: 70px;
    /* Position to the right of the button since it's on the left side */
    background: white;
    color: #052b22;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    pointer-events: none;
    font-family: var(--font-body);
    animation: showTooltipLeft 15s infinite;
}

.spotify-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@media (hover: hover) and (pointer: fine) {
    .spotify-btn:hover .spotify-tooltip {
        opacity: 1;
        transform: translateX(0);
        animation: none;
        /* Stop animation on hover so it stays static */
    }
}

@keyframes showTooltipLeft {

    0%,
    80% {
        /* Match WhatsApp timing */
        opacity: 0;
        transform: translateX(-10px);
    }

    85%,
    95% {
        /* Match WhatsApp timing */
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

/* --- ABOUT SECTION THREE COLS --- */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--color-black), #052b22, var(--color-black));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none;
}

.about-container-three-col {
    max-width: 1200px;
    /* Increased width for better spacing */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    /* Larger images */
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    /* Removed manual shift */
}

.about-text-center {
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.about-text-center.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-title {

    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-photo {
    /* height: 380px; Removed fixed height to allow stacking */
    min-height: 380px;
    width: 280px;
    /* Matches grid column */
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); Moved to img/video */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-photo.visible {
    opacity: 1;
}

.about-photo img,
.about-photo video {
    width: 100%;
    height: 250px;
    /* Fixed height for each item in stack */
    object-fit: cover;
    filter: sepia(20%) brightness(90%);
    transition: filter 0.5s, transform 0.8s;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    will-change: transform, filter;
}

.about-photo video {
    /* Ensure video matches img style */
    display: block;
}

.about-photo:hover img {
    filter: sepia(0%) brightness(100%);
    transform: scale(1.05);
}

.about-photo.left {
    transform: translateX(-40px);
}

.about-photo.right {
    transform: translateX(40px);
}

.about-photo.left.visible,
.about-photo.right.visible {
    transform: translateX(0);
}

.email-link {
    color: var(--text-light);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: 0.3s;
}

/* --- MENU PAGE STYLES --- */
.menu-page {
    background-color: #021a14 !important;
    position: relative;
    min-height: 100vh;
}

.menu-navbar {
    position: relative;
    background: transparent;
    border: none;
    padding-top: 30px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
    color: white;
}

.logo-small {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.menu-header {
    text-align: center;
    margin: 40px 0 60px;
}

.neon-title {
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-gold);
    position: relative;
    display: inline-block;
    animation: neonPulse 3s infinite alternate;
}

.menu-subtitle {
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

@keyframes neonPulse {
    0% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
    }

    100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
        -webkit-text-stroke: 1px #fff;
    }
}

/* Page Entry Animation */
.full-page-menu {
    animation: slideUpFade 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .about-section {
        overflow-x: hidden;
        /* Fix trailing scroll empty space caused by animations */
    }

    .about-container-three-col {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 40px;
        padding-left: 0;
        /* Reset for mobile */
    }

    .about-photo {
        width: 100%;
        max-width: 100%;
        /* Use full width on mobile instead of 400px constraint */
        height: auto;
        transform: translateY(30px) !important;
    }

    .about-photo img,
    .about-photo video {
        min-height: 250px;
    }

    .about-photo.visible {
        transform: translateY(0) !important;
    }

    .about-photo.right {
        order: 2;
    }
}

/* --- PWA INSTALL PROMPT --- */
.pwa-prompt {
    position: fixed;
    bottom: -150px;
    /* Hidden initially */
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
    background: rgba(10, 20, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(173, 152, 85, 0.1);
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pwa-prompt.visible {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    /* Show above screen bottom */
}

.pwa-prompt-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pwa-text h4 {
    color: var(--text-light);
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.2rem;
}

.pwa-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 3px 0 0 0;
}

.pwa-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.pwa-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: none;
    font-size: 0.9rem;
    padding: 8px 15px;
    cursor: pointer;
}

.pwa-btn-primary {
    background: var(--accent-gold);
    color: var(--primary-green);
    border: none;
    border-radius: 20px;
    font-weight: bold;
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.pwa-prompt.hidden {
    display: none;
}

/* Reviews Carousel Section */
.reviews-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.google-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.google-logo {
    font-family: 'Product Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
}

.stars-static {
    color: #FBBC05;
    /* Google Star Yellow */
    font-size: 1.2rem;
}

.reviews-carousel {
    position: relative;
    padding: 20px 0;
    /* Space for box-shadows */
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 20px;
    /* Space for scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.reviews-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.review-slide {
    flex: 0 0 calc(33.333% - 20px);
    /* 3 cards on desktop */
    scroll-snap-align: center;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    /* Card Styling */
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(173, 152, 85, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.review-slide:hover {
    transform: translateY(-5px);
}

.review-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-text::before,
.review-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
}

.review-text::before {
    top: -15px;
    left: -15px;
}

.review-text::after {
    bottom: -30px;
    right: -15px;
}

.review-author {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 30px;
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(173, 152, 85, 0.5);
    border: 2px solid var(--accent-gold);
    object-fit: cover;
}

/* Carousel Nav */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.dots-container {
    display: flex;
    gap: 10px;
}

.dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 44px;
    min-height: 44px;
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* --- Instagram Section --- */
.instagram-section {
    padding: 60px 20px 0 20px;
    background: var(--color-black);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.ig-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-overlay ion-icon {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.ig-item:hover img {
    transform: scale(1.05);
}

.ig-item:hover .ig-overlay {
    opacity: 1;
}

.ig-item:hover .ig-overlay ion-icon {
    transform: scale(1);
}

/* --- CATEGORY NAVIGATION --- */
.category-nav {
    display: flex;
    overflow-x: auto;
    justify-content: center;
    /* Centered as requested */
    flex-wrap: wrap;
    /* Wrap on desktop for better centering */
    gap: 15px;
    padding: 15px 20px;
    background: rgba(4, 20, 16, 0.55) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    position: -webkit-sticky;
    /* For Safari/Samsung */
    position: sticky;
    top: 0;
    /* Sticks to the very top, covering the navbar on scroll */
    z-index: 2000;
    /* Higher than navbar to become the primary header header */
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(173, 152, 85, 0.25) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s ease;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    will-change: transform;
    transform: translateZ(0);
    /* Ensure full width */
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Persistent Back Button in Nav */
.back-home-btn {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    padding: 8px 12px;
    /* Slightly compact */
}

.back-home-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.back-home-btn ion-icon {
    font-size: 1.1rem;
}

/* Highlight Effect requested */
.cat-btn.active,
.cat-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    /* Glow effect */
    transform: translateY(-3px) scale(1.05);
    /* Pop up and slight enlarge */
    /* Removed font-weight: 600 to prevent layout shift */
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    /* Subtle bold effect without reflow */
}

@media (max-width: 768px) {
    .category-nav {
        top: 0;
        /* stick to top on mobile too */
        justify-content: flex-start;
        /* Left align on mobile for scrolling */
        flex-wrap: nowrap;
        /* No wrap on mobile, force scroll */
        padding: 15px 10px;
    }
}

/* Fix for spacing and scroll offset */
.full-page-menu {
    padding-top: 0 !important;
    /* Remove gap between nav and content */
}

.menu-category {
    scroll-margin-top: 160px;
    /* offset for sticky navbar + category nav */
}

/* --- Search & Filter Styles --- */
.search-filter-container {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: center;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 20px;
}

.search-box ion-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    /* Prevents auto-zoom on iOS */
    outline: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    appearance: none;
    /* iOS fix */
    -webkit-appearance: none;
    /* iOS fix */
}

.search-box input:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.filter-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on mobile */
}

.chip {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    touch-action: manipulation;
    white-space: nowrap;
}

.chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 44px;
}

.chip:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
}

.chip.active {
    background: var(--accent-gold);
    color: var(--primary-green);
    border-color: var(--accent-gold);
    font-weight: 600;
}

/* --- Lightbox Styles Redesigned --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

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

.lightbox-dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(4, 20, 16, 0.75);
    border: 1px solid rgba(173, 152, 85, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(173, 152, 85, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    animation: lightboxSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
}

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

.lightbox-body {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .lightbox-body {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.lightbox-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .lightbox-image-wrapper {
        height: 100%;
        min-height: 480px;
    }
}

.lightbox-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 2;
    position: relative;
}

.lightbox-backlight {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(173, 152, 85, 0.4) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.lightbox-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(4, 20, 16, 0.6);
    border: 1px solid rgba(173, 152, 85, 0.3);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: rgba(173, 152, 85, 0.2);
}

#lightbox-caption {
    width: 100%;
    text-align: left;
    color: var(--text-light);
}

#lightbox-caption h3 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    line-height: 1.1;
}

#lightbox-caption p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.lightbox-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(173, 152, 85, 0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lightbox-section-title {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lightbox-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

.card-image {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, object-position 0.3s ease;
    transform-origin: center center;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%) translateY(20px) translateZ(0);
    will-change: transform, opacity;
    right: auto;
    z-index: 1900;
    /* Below WhatsApp/Spotify modals */
    border: 1.5px solid rgba(173, 152, 85, 0.45) !important;
    outline: none;
    background: rgba(4, 20, 16, 0.65) !important;
    color: var(--accent-gold) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    cursor: pointer;
    width: 44px !important;
    height: 44px !important;
    padding: 0;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(173, 152, 85, 0.1) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) translateZ(0) !important;
}

.back-to-top:focus {
    outline: none !important;
    background: rgba(4, 20, 16, 0.65) !important;
    color: var(--accent-gold) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(173, 152, 85, 0.1) !important;
}

.back-to-top ion-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

@media (hover: hover) {
    .back-to-top:hover {
        background: var(--accent-gold) !important;
        color: #042018 !important;
        transform: translateX(-50%) translateY(-3px) translateZ(0) !important;
        box-shadow: 0 6px 20px rgba(173, 152, 85, 0.4) !important;
    }
}

/* --- NEW MENU GROUPING STYLES --- */
.menu-group {
    margin-bottom: 100px;
    scroll-margin-top: 120px;
}

.group-title {
    font-size: 3.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-heading);
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.group-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 20px auto 0;
    box-shadow: 0 0 10px var(--accent-gold);
}

@media (min-width: 769px) {
    .category-nav {
        justify-content: center;
    }
}

.menu-group .menu-category {
    margin-bottom: 60px;
}

.menu-group .category-title {
    font-size: 2rem;
    opacity: 0.8;
}

/* --- PROMO CAROUSEL STYLES --- */
.promo-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.promo-scroll-snap { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding-bottom: 0px; margin-bottom: -1px; scrollbar-width: none; width: 100%; max-width: 1000px; margin: 0 auto; }

.promo-scroll-snap::-webkit-scrollbar {
    display: none;
}

.promo-card { flex: 0 0 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-gold);
}

.promo-img,
.promo-img-render {
    width: 100% !important;
    height: 450px !important; /* Altura imponente solicitada */
    object-fit: cover !important;
    display: block;
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
}

@media (max-width: 768px) {
    .promo-img {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .promo-img {
        height: 250px !important; /* Ajuste proporcional para mobile */
    }
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 10px 15px; /* Reducido para banners finos */
    text-align: left;
}

.promo-overlay h3 {
    margin: 0;
    font-size: 1.1rem; /* Más pequeño para que entre en 90px */
    color: var(--accent-gold);
}

.promo-overlay p {
    margin: 0;
    font-size: 0.8rem;
    color: white;
    opacity: 0.9;
}



/* --- Promo Pagination Dots --- */
.promo-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-bottom: 4px;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(173, 152, 85, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    touch-action: manipulation;
    will-change: transform, background-color;
}

.promo-dot.active {
    background: var(--accent-gold);
    transform: scale(1.4);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

/* --- Promo Swipe Hint (mobile only) --- */
.promo-swipe-hint {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0, 0, 0, 0.55);
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.75rem;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease;
    will-change: opacity;
}

.promo-swipe-hint.faded {
    opacity: 0;
}

.promo-swipe-arrow {
    display: inline-block;
    animation: nudge-right 1.4s ease-in-out infinite;
    font-size: 1rem;
}

@keyframes nudge-right {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(4px); }
}

/* Hide swipe hint on desktop where hover is available */
@media (hover: hover) and (pointer: fine) {
    .promo-swipe-hint { display: none; }
}


/* --- PAYMENT BANNER STYLES --- */
.payment-banner {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(173, 152, 85, 0.15);
    border-radius: 12px;
    margin: 0 auto 60px;
    max-width: 800px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
}

.payment-content ion-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .payment-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* --- QUIZ WIDGET STYLES --- */
.quiz-fab {
    position: fixed;
    bottom: 120px;
    /* Moved up to avoid WhatsApp overlap on desktop */
    right: 20px;
    /* Snug to the right */
    background: var(--accent-gold);
    color: var(--primary-green);
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    height: 54px; /* Altura fija para simetría */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 100;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulseQuiz 2.5s infinite;
}

@keyframes pulseQuiz {
    0% {
        box-shadow: 0 0 0 0 rgba(173, 152, 85, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(173, 152, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(173, 152, 85, 0);
    }
}

.quiz-fab:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.quiz-fab ion-icon {
    font-size: 1.5rem;
}

/* --- BIRTHDAY FAB BUTTON (Espejado a la izquierda) --- */
.birthday-fab {
    position: fixed;
    bottom: 120px;
    /* Same vertical position as quiz-fab */
    left: 20px;
    /* Opposite side */
    background: var(--accent-gold);
    color: var(--primary-green);
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    height: 54px; /* Altura fija para simetría */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 100;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulseQuiz 2.5s infinite;
    text-decoration: none;
}

.birthday-fab:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.birthday-icon {
    width: 24px;
    height: 24px;
}

/* Mobile positioning for birthday fab */
@media (max-width: 768px) {
    .birthday-fab {
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        left: unset;
        right: 20px;
        font-size: 0.9rem;
        padding: 10px 15px;
        height: 42px; /* Altura fija mobile */
    }

    .birthday-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
}

/* --- EVENTS FAB BUTTON (Glassmorphic, left-aligned on Desktop) --- */
.events-fab {
    position: fixed;
    bottom: 190px;
    left: 20px;
    background: rgba(4, 20, 16, 0.6) !important;
    border: 1px solid rgba(173, 152, 85, 0.3) !important;
    color: var(--accent-gold) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    height: 54px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
    z-index: 100;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s ease !important;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulseQuiz 2.5s infinite;
    text-decoration: none;
}

.events-fab:hover {
    transform: translateY(-5px) scale(1.05) translateZ(0) !important;
    border-color: rgba(212, 175, 55, 0.8) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.4) !important;
    background: rgba(173, 152, 85, 0.15) !important;
}

.events-icon {
    width: 22px;
    height: 22px;
}

/* Mobile positioning for events fab */
@media (max-width: 768px) {
    .events-fab {
        bottom: calc(98px + env(safe-area-inset-bottom, 0px)) !important;
        left: unset !important;
        right: 20px !important;
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
        height: 42px !important;
        background: rgba(4, 20, 16, 0.75) !important;
        border: 1px solid rgba(173, 152, 85, 0.4) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    .events-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
}

/* Quiz Modal Styles */
.quiz-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: rgba(4, 20, 16, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(173, 152, 85, 0.15);
    border-radius: 20px;
    padding: 40px;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    text-align: center;
    will-change: transform, opacity;
    transform: translate(-50%, -50%) translateZ(0);
}

.quiz-modal.active {
    display: block;
    animation: zoomIn 0.3s;
}

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

.close-quiz:hover {
    color: var(--accent-gold);
}

#quiz-container h3 {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quiz-option:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.quiz-recommendation {
    margin-top: 20px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
}

.quiz-recommendation h4 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quiz-recommendation p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.restart-quiz {
    margin-top: 15px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.restart-quiz:hover {
    color: var(--text-light);
    border-color: var(--text-light);
}

/* --- MOBILE BOTTOM NAVIGATION BAR --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    z-index: 2500;
    will-change: transform, opacity;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 7px 0;
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 4px;
    transition: color 0.3s, transform 0.15s;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    border-radius: 12px;
    padding: 8px 12px;
}

.mobile-nav-link ion-icon {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.mobile-nav-link:active,
.mobile-nav-link:focus {
    transform: scale(0.9) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: transform 0.1s ease !important;
    outline: none !important;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--accent-gold);
}

.mobile-nav-link.active ion-icon {
    transform: translateY(-2px);
}

.mobile-nav-link.whatsapp-link {
    color: #25D366;
}

.mobile-nav-link.whatsapp-link:hover {
    color: #128C7E;
}

.mobile-nav-link.instagram-link {
    color: #E1306C;
}

.mobile-nav-link.instagram-link:hover {
    color: #C13584;
}

/* Base Responsive Adjustments Update */
@media (max-width: 768px) {

    .nav-links,
    .hamburger {
        display: none !important;
        /* Hide original nav and hamburger completely */
    }

    .mobile-bottom-nav {
        display: block;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        left: 50%;
        transform: translateX(-50%) translateZ(0);
        width: calc(100% - 32px);
        max-width: 480px;
        background: rgba(4, 20, 16, 0.85);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1px solid rgba(173, 152, 85, 0.3);
        border-radius: 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-bottom-nav.nav-hidden {
        transform: translateX(-50%) translateY(120%) translateZ(0);
        opacity: 0;
        pointer-events: none;
    }

    .whatsapp-btn,
    .spotify-btn,
    .back-to-top {
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        /* 12px clearance above 70px bottom nav */
    }

    .quiz-fab {
        bottom: calc(138px + env(safe-area-inset-bottom, 0px));
        /* Sits ~50px above WA/Spotify row */
    }

    .category-nav {
        /* Optional: add slight padding top to prevent content hiding behind top bar */
        margin-top: 0px;
    }

    .card-image {
        height: auto;
        /* Allow image height to adapt to width */
        aspect-ratio: 4/3;
        /* Consistent aspect ratio */
    }

    .menu-grid {
        gap: 20px;
        padding: 0 10px;
        /* Give some breathing room on edges */
    }

    .menu-card {
        margin: 0 5px;
        /* Prevent touching screen edges directly */
    }

    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
        /* Add padding to body so content isn't hidden under bottom nav */
    }
}

.quiz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.quiz-content {
    background: var(--secondary-green);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--accent-gold);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.quiz-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
}

.quiz-step h3,
.quiz-result h3 {
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-size: 2rem;
}

.quiz-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(173, 152, 85, 0.3);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.quiz-option:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.quiz-result .menu-card {
    opacity: 1;
    transform: none;
    margin: 0 auto 30px;
    max-width: 300px;
    text-align: left;
}

/* --- DEEP MOBILE OPTIMIZATION (Samsung S21 & similar) --- */
@media (max-width: 480px) {

    /* Viewport & Containers Strict Fit */
    html,
    body {
        width: 100%;
        max-width: 100vw;
        /* Removed overflow-x to ensure .category-nav position: sticky continues to work! */
    }

    /* Opciones de Lightbox responsivas para celular */
    #lightbox-caption {
        width: 90% !important;
        padding-bottom: 30px !important;
    }

    #lightbox-caption h3 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }

    #lightbox-caption p {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .lightbox-section-title {
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
    }

    .lightbox-text {
        font-size: 0.85rem !important;
    }

    .lightbox-info {
        margin-top: 10px !important;
        padding-top: 10px !important;
    }

    /* Fotos de Home en cuadrados estÃ©ticos (Grilla 2x2) */
    .about-photo {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        /* Better spacing for larger images */
        margin-bottom: 20px;
        width: 100%;
        padding: 0;
        /* Remove 5% padding so they span wider */
    }

    .about-photo img,
    .about-photo video {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        object-fit: cover !important;
        margin-bottom: 0 !important;
    }

    /* Carta Altamente Compacta e Intuitiva (Formato Lista - Con ImÃ¡genes) */
    .menu-card {
        display: flex;
        flex-direction: row;
        /* Horizontal layout */
        align-items: stretch;
        text-align: left;
        padding: 0;
        height: 120px;
        /* Tarjeta super compacta */
        /* Animaciones livianas (discretas y fluidas) */
        transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
        border-radius: 12px;
    }

    /* Variante ULTRA-Compacta para Vinos, Bebidas, Medidas sin foto */
    .menu-card.compact-card {
        height: auto;
        min-height: 70px;
        padding: 5px;
        background: rgba(20, 20, 20, 0.4);
    }

    .menu-card.compact-card .card-content {
        padding: 8px 12px;
    }

    .menu-card.compact-card .card-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2px;
    }

    .menu-card.compact-card .card-title {
        font-size: 1.05rem;
        width: 70%;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .menu-card.compact-card .card-price {
        font-size: 1.1rem;
        width: 25%;
        text-align: right;
    }

    .card-image {
        width: 110px !important;
        height: 100% !important;
        flex-shrink: 0;
        border-radius: 12px 0 0 12px;
    }

    .card-content {
        padding: 10px 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-grow: 1;
        overflow: hidden;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        width: 100%;
        margin-bottom: 4px;
    }

    .menu-card .card-title {
        font-size: 1.05rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        margin-bottom: 2px;
    }

    .menu-card .card-price {
        margin-left: 0;
        font-size: 1.1rem;
        color: var(--text-light);
    }

    .menu-card .card-desc {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.3;
    }

    /* Ajuste de Escala Iconos: -30% (from 60px to ~42px) */
    .spotify-btn {
        width: 42px !important;
        height: 42px !important;
    }

    /* Ocultar WhatsApp flotante para evitar doble botÃ³n en mobile */
    .whatsapp-btn {
        display: none !important;
    }

    .spotify-btn ion-icon {
        font-size: 24px !important;
    }

    /* Floating Button Repositioning for Mobile */
    .spotify-btn {
        left: 20px !important;
        bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
        z-index: 1000 !important;
    }

    .back-to-top {
        right: 20px !important;
        left: auto !important;
        bottom: calc(115px + env(safe-area-inset-bottom, 0px)) !important;
        transform: translateY(20px) !important;
        z-index: 1000 !important;
    }

    .back-to-top.visible-btn {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .back-to-top:focus {
        outline: none !important;
        background: rgba(4, 20, 16, 0.65) !important;
        color: var(--accent-gold) !important;
        transform: translateY(0) !important;
    }

    .back-to-top:active {
        transform: scale(0.95) !important;
        background: var(--accent-gold) !important;
        color: #042018 !important;
    }

    .quiz-fab {
        bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
        right: 20px !important;
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
        height: 42px !important; /* Sincronizado con birthday-fab */
        z-index: 1000 !important;
    }

    /* Tooltip text (ReservÃ¡ tu mesa) scaling and restriction */
    .whatsapp-tooltip,
    .spotify-tooltip {
        font-size: 0.75rem !important;
        /* Texto reducido */
        max-width: 50vw;
        /* No mÃ¡s del 50% de la pantalla */
        white-space: normal;
        /* Permitir salto de lÃ­nea si es necesario */
        text-align: center;
        padding: 6px 10px;
    }

    /* Evitar recortes en imÃ¡genes centrÃ¡ndolas y cubriendo */
    img,
    video,
    .card-image img {
        max-width: 100%;
        object-fit: cover !important;
        object-position: center;
    }

    /* Asegurar que las secciones se alinean al centro */
    .about-text-center,
    .hero-content,
    .menu-header,
    .search-filter-container {
        text-align: center;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Instagram Mobile Grid (2 columns) */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    /* Ajustes especÃ­ficos de mobile solicitados */
    .review-slide {
        flex: 0 0 calc(85% - 20px) !important;
    }

    .location-section {
        padding-left: 0;
        padding-right: 0;
    }

    .location-section .section-title {
        text-align: center;
    }

    .location-section .info-item {
        justify-content: center;
    }
}

/* --- STATUS BADGE (Open/Closed) --- */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge.open {
    background: rgba(173, 152, 85, 0.15);
    border: 1px solid rgba(173, 152, 85, 0.3);
}

.status-badge.closed {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.status-badge.open .status-dot {
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(173, 152, 85, 0.6);
}

.status-badge.closed .status-dot {
    background: #888;
    box-shadow: none;
    animation: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .status-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}

/* --- FEATURED PRODUCTS SECTION --- */
.about-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, var(--color-black), #052b22, var(--color-black));
    position: relative;
    overflow: hidden;
    border: none !important;
}

.featured-section {
    padding: 100px 20px;
    background: var(--secondary-green);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='120' viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23AD9855' stroke-width='1' stroke-opacity='0.15'%3E%3Cpath d='M10 0v120 M50 0v120' /%3E%3Crect x='10' y='20' width='40' height='80' rx='20' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 180px 360px;
    pointer-events: none;
    z-index: 0;
}

.featured-section > .container {
    position: relative;
    z-index: 1;
}

/* Suggested Products Section (positioned between Bar and Location) */
.suggested-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #000, var(--secondary-green));
    position: relative;
    overflow: hidden;
}

.suggested-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='120' viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23AD9855' stroke-width='1' stroke-opacity='0.15'%3E%3Cpath d='M10 0v120 M50 0v120' /%3E%3Crect x='10' y='20' width='40' height='80' rx='20' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 180px 360px;
    pointer-events: none;
    z-index: 0;
}

.suggested-section > .container {
    position: relative;
    z-index: 1;
}

.suggested-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.suggested-link:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.suggested-link svg {
    transition: transform 0.3s ease;
}

.suggested-link:hover svg {
    transform: translateX(5px);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Más columnas, items más chicos */
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.featured-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(173, 152, 85, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(173, 152, 85, 0.15);
    border-color: var(--accent-gold);
}

.featured-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

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

.featured-card:hover .featured-card-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-card-content {
    padding: 25px;
}

.featured-card-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.featured-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.featured-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.featured-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-card-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.featured-card-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    animation: subtleGlow 3s infinite ease-in-out;
}

@keyframes subtleGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.2); opacity: 0.8; }
    50% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.6); color: var(--accent-gold); opacity: 1; }
}

.featured-card-link:hover {
    color: var(--accent-gold);
    animation: none;
}

@media (max-width: 768px) {
    .featured-section {
        padding: 60px 15px;
    }
    /* --- GRILLA 2x2 EN MOBILE --- */
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    .featured-card {
        max-width: none;
        margin: 0;
        border-radius: 12px;
    }
    .featured-card-image {
        height: 140px;
        overflow: hidden;
        position: relative;
    }
    
    .featured-card-image img {
        transition: transform 0.3s ease, object-position 0.3s ease;
        transform-origin: center center;
    }
    .featured-card-content {
        padding: 8px 10px 10px;
    }
    .featured-card-title {
        font-size: 0.85rem;
        margin-bottom: 4px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .featured-card-price {
        font-size: 0.9rem;
    }
    /* Ocultar elementos no esenciales en mobile */
    .featured-card-desc,
    .featured-card-link,
    .featured-card-footer {
        display: none;
    }
    .featured-card-category {
        display: none;
    }
    .featured-badge {
        font-size: 0.6rem;
        padding: 3px 7px;
        top: 6px;
        right: 6px;
    }
    /* Animación de rotación: fade in/out */
    .featured-card.rotating-out {
        animation: featuredFadeOut 0.4s ease forwards;
    }
    .featured-card.rotating-in {
        animation: featuredFadeIn 0.4s ease forwards;
    }
}

/* Banner Arrows */
.promo-scroll-wrapper {
    position: relative;
}
.promo-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 32, 24, 0.9);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.promo-nav-arrow.left {
    left: -70px;
}

.promo-nav-arrow.right {
    right: -70px;
}

@media (max-width: 1400px) {
    .promo-nav-arrow.left {
        left: -20px;
    }
    .promo-nav-arrow.right {
        right: -20px;
    }
}
.promo-nav-arrow:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
}


/* Flechas solo en desktop: en mobile el usuario usa swipe/touch */
@media (max-width: 768px) {
    .promo-nav-arrow {
        display: none;
    }
}

.status-badge { transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer; }
.status-badge.minimized { padding: 6px 8px; }
.status-badge.minimized .status-text { max-width: 0; opacity: 0; margin-left: -6px; padding-left: 0; visibility: hidden; overflow: hidden; }

/* --- FEATURED CARD ROTATION ANIMATIONS --- */
@keyframes featuredFadeOut {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.9); }
}
@keyframes featuredFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* --- ESTILOS PRODUCTO AGOTADO --- */
.menu-card.is-sold-out {
    opacity: 0.8;
}

.menu-card.is-sold-out .menu-img-render {
    filter: grayscale(100%) contrast(0.8) brightness(0.7);
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.sold-out-overlay span {
    background: rgba(4, 32, 24, 0.85); /* Verde primario oscuro con opacidad */
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    transform: rotate(-15deg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.menu-card.compact-card.is-sold-out .card-title {
    color: #888;
    text-decoration: line-through;
}

.menu-card.compact-card.is-sold-out .card-price {
    color: #666;
}

/* --- EXPERIENCES DRAWER & CENTRALIZED FLOATING PILL --- */
.experiences-drawer,
.experiences-drawer-backdrop {
    display: none;
}

/* Glassmorphic individual buttons on desktop (overridden in mobile query below) */
@media (min-width: 769px) {
    .spotify-btn, .whatsapp-btn, .birthday-fab, .quiz-fab {
        background: rgba(4, 20, 16, 0.6) !important;
        border: 1px solid rgba(173, 152, 85, 0.3) !important;
        color: var(--accent-gold) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    background 0.4s ease !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .spotify-btn:hover, .whatsapp-btn:hover, .birthday-fab:hover, .quiz-fab:hover {
        transform: translateY(-5px) scale(1.05) translateZ(0) !important;
        border-color: rgba(212, 175, 55, 0.8) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.4) !important;
    }

    .spotify-btn:hover { background: rgba(29, 185, 84, 0.15) !important; color: #1DB954 !important; }
    .whatsapp-btn:hover { background: rgba(37, 211, 102, 0.15) !important; color: #25D366 !important; }
    .birthday-fab:hover { background: rgba(212, 175, 55, 0.15) !important; }
    .quiz-fab:hover { background: rgba(173, 152, 85, 0.15) !important; }
}

@media (max-width: 768px) {
    /* Hide all separate floating buttons */
    .spotify-btn,
    .whatsapp-btn,
    .birthday-fab,
    .quiz-fab {
        display: none !important;
    }

    /* Drawer Backdrop with blur */
    .experiences-drawer-backdrop {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        z-index: 2600;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .experiences-drawer-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Experiences Drawer - Slide Up from bottom */
    .experiences-drawer {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 85vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(4, 20, 16, 0.7) 100%) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border-top: 1.5px solid rgba(173, 152, 85, 0.45) !important;
        border-radius: 24px 24px 0 0;
        z-index: 2700;
        transform: translateY(100%) translateZ(0);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
        padding: 10px 20px calc(20px + env(safe-area-inset-bottom, 0px)) 20px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(173, 152, 85, 0.1) !important;
        flex-direction: column;
        gap: 15px;
    }

    .experiences-drawer.active {
        transform: translateY(0) translateZ(0);
    }

    /* Handle for swipe gesture */
    .experiences-drawer-handle-container {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        cursor: grab;
    }
    
    .experiences-drawer-handle-container:active {
        cursor: grabbing;
    }

    .experiences-drawer-handle {
        width: 50px;
        height: 5px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

    .experiences-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(173, 152, 85, 0.2);
        padding-bottom: 15px;
    }

    .experiences-drawer-header h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: var(--accent-gold);
        letter-spacing: 2px;
        margin: 0;
    }

    .experiences-drawer-close {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(173, 152, 85, 0.2);
        color: var(--accent-gold);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .experiences-drawer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 5px 0 15px 0;
    }

    /* Drawer Items */
    .drawer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 18px 12px;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1.5px solid rgba(173, 152, 85, 0.15) !important;
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        border-radius: 16px;
        text-decoration: none;
        transition: transform 0.2s, background 0.2s, border-color 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .drawer-item:active {
        transform: scale(0.96);
        background: rgba(173, 152, 85, 0.08);
        border-color: rgba(173, 152, 85, 0.3);
    }

    .drawer-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        flex-shrink: 0;
    }

    .drawer-item-icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    .drawer-item-icon.spotify { background: rgba(29, 185, 84, 0.15); color: #1DB954; }
    .drawer-item-icon.birthday { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); }
    .drawer-item-icon.quiz { background: rgba(173, 152, 85, 0.15); color: var(--accent-gold); }
    .drawer-item-icon.instagram { background: rgba(225, 48, 108, 0.15); color: #E1306C; }

    .drawer-item-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .drawer-item-info h4 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-light);
        margin: 0;
    }

    .drawer-item-info p {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.2;
    }

    .drawer-item .item-arrow {
        display: none;
    }
}

/* ==========================================================================
   HIGH-FIDELITY MOBILE COMPACTNESS & UX OPTIMIZATIONS (Smartphone-Only)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Transform vertical stacking of sections' photos into horizontal swipe tracks */
    .about-container-three-col {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .about-photo.left, 
    .about-photo.right {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        width: 100% !important;
        gap: 16px !important;
        padding: 10px 5px !important;
        scrollbar-width: none !important;
        transform: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch !important; /* smooth scroll on iOS */
    }
    
    .about-photo.left::-webkit-scrollbar, 
    .about-photo.right::-webkit-scrollbar {
        display: none !important;
    }
    
    .about-photo.left img, 
    .about-photo.left video,
    .about-photo.right img, 
    .about-photo.right video {
        flex: 0 0 80% !important;
        width: 80% !important;
        scroll-snap-align: start !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        min-height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 !important;
    }

    .about-text-center {
        padding: 0 15px !important;
        margin-bottom: 5px !important;
    }

    /* 2. Reduce vertical paddings of sections to save vertical space */
    .about-section,
    .suggested-section,
    .location-section {
        padding: 35px 15px !important;
    }

    /* 3. Reduce flex and grid gaps on mobile */
    .about-container-three-col {
        gap: 15px !important;
    }
    
    .suggested-section .container,
    .location-container,
    .instagram-grid {
        gap: 20px !important;
    }

    /* 4. Reduce Hero section min-height and padding for fast CTA visibility */
    .hero {
        height: 80vh !important;
        height: 80dvh !important;
        padding-top: 60px !important;
    }
    
    .hero-content {
        gap: 8px !important;
    }
    
    .script-subtitle {
        font-size: 2rem !important;
        margin-bottom: -5px !important;
    }
    
    .main-title {
        font-size: 5rem !important;
        line-height: 1.1 !important;
    }
    
    .sub-title {
        font-size: 1.1rem !important;
        letter-spacing: 6px !important;
    }
    
    .tagline {
        font-size: 1rem !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    /* 5. Keep the mobile bottom navbar permanently static/visible at the bottom (never hide) */
    .mobile-bottom-nav {
        transform: translateX(-50%) translateZ(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* 5a. Target specific spacing gaps on mobile to make elements flow organically (High Specificity) */
    section#about.about-section {
        padding-top: 25px !important;
        padding-bottom: 8px !important;
    }
    
    section#bar.about-section {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    
    section#suggested.suggested-section {
        padding-top: 12px !important;
        padding-bottom: 25px !important;
    }

    section.about-section .about-container-three-col {
        gap: 12px !important;
        padding: 0 !important;
    }

    section.about-section .about-container-three-col .about-photo.left, 
    section.about-section .about-container-three-col .about-photo.right {
        padding: 4px 5px !important;
        margin: 0 !important;
        transform: none !important;
        min-height: auto !important;
    }

    section.about-section .about-container-three-col .about-text-center {
        padding: 0 15px !important;
        margin: 0 !important;
    }

    section.about-section .about-container-three-col .about-text-center .about-title {
        margin-bottom: 12px !important;
    }

    /* 5b. Glassmorphic Single-Review Card Redesign on Mobile */
    .reviews-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .reviews-carousel {
        width: 90% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        padding: 10px 0 !important;
    }

    .reviews-track {
        display: flex !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        padding-bottom: 0 !important;
    }

    .review-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        transform: none !important;
        
        /* High-end Liquid Glass */
        background: rgba(4, 20, 16, 0.55) !important;
        border: 1.5px solid rgba(173, 152, 85, 0.25) !important;
        border-radius: 20px !important;
        padding: 24px !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        text-align: center !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    }

    .review-slide .review-text {
        font-size: 0.95rem !important;
        font-weight: 300 !important;
        font-style: italic !important;
        line-height: 1.6 !important;
        color: var(--text-light) !important;
        margin-bottom: 20px !important;
    }

    .review-slide .review-author {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(173, 152, 85, 0.15) !important;
        padding: 6px 16px !important;
    }

    .review-slide .review-author span {
        color: var(--accent-gold) !important;
        font-weight: bold !important;
    }

    /* 5c. Align PWA Install Prompt Banner to Cohesive Premium Language */
    .pwa-prompt {
        background: rgba(4, 20, 16, 0.75) !important;
        border: 1.5px solid rgba(173, 152, 85, 0.45) !important;
        border-radius: 20px !important;
        padding: 20px !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(173, 152, 85, 0.1) !important;
    }

    .pwa-btn-primary {
        background: linear-gradient(135deg, #d4af37, #f3e5ab) !important;
        color: #041410 !important;
        border: none !important;
        border-radius: 30px !important;
        font-weight: 700 !important;
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
    }

    .pwa-btn-secondary {
        background: rgba(255, 255, 255, 0.05) !important;
        color: var(--accent-gold) !important;
        border: 1px solid rgba(173, 152, 85, 0.3) !important;
        border-radius: 30px !important;
        font-weight: 600 !important;
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        letter-spacing: 1px !important;
        transition: background 0.2s !important;
    }

    /* ==========================================
       MEJORAS DE VIEWPORT MOBILE ADICIONALES (<768px)
       ========================================== */
    .navbar {
        padding: 12px 20px !important; /* Más compacto verticalmente (era 20px) */
    }
    
    /* Transparencia y sin bordes en el navbar de la carta */
    .navbar.menu-navbar {
        position: relative !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        padding-top: 20px !important;
    }
    
    .navbar.menu-navbar .logo-small {
        color: var(--accent-gold) !important;
        opacity: 1 !important;
        font-size: 1.5rem !important;
    }

    /* Hero inmersivo a pantalla completa real */
    .hero {
        height: 100vh !important;
        height: 100dvh !important;
        padding-top: 80px !important;
    }

    /* Compresión de Reviews */
    .google-header {
        margin-bottom: 15px !important;
    }
    
    .google-logo {
        font-size: 1.2rem !important;
    }
    
    .review-slide {
        padding: 16px 18px !important; /* Compactado (era 24px) */
        border-radius: 16px !important;
    }
    
    .review-slide .review-text {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
        line-height: 1.45 !important;
    }
    
    /* Ocultar comillas decorativas absolutas en mobile */
    .review-slide .review-text::before,
    .review-slide .review-text::after {
        display: none !important;
    }
    
    .review-slide .review-author {
        padding: 4px 12px !important;
        font-size: 0.8rem !important;
    }

    /* Compresión del Banner de la Carta (menu.html) */
    .menu-header {
        margin: 15px 0 20px !important;
    }
    
    .menu-header .neon-title {
        font-size: 2.8rem !important; /* Escala ideal móvil (era 5rem) */
        -webkit-text-stroke: 0.8px var(--accent-gold) !important;
    }
    
    .search-filter-container {
        margin: 0 auto 15px !important;
    }
    
    .search-box {
        margin-bottom: 12px !important;
    }
    
    .filter-chips {
        gap: 6px !important;
        padding-bottom: 2px !important;
    }
    
    /* Compactar espacio inferior del sticky navbar en mobile y darle vidrio armonioso */
    .category-nav {
        margin-bottom: 15px !important;
        background: rgba(2, 26, 20, 0.85) !important; /* Vidrio líquido ultra-oscuro acoplado a #021a14 */
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border-bottom: 1px solid rgba(173, 152, 85, 0.15) !important; /* Línea dorada ultra fina */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
}

/* 6. Scale down large titles on deep mobile (screen width < 480px) */
@media (max-width: 480px) {
    .main-title {
        font-size: 4.2rem !important;
    }
    
    .about-title, 
    .section-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }
}

