

/* ---- source: Habitacion Garden-Suite - Andorra Park Hotel.html ---- */

        /* --- VARIABLES & BASE (Heredadas) --- */
        :root {
            --primary-gold: #bfa37c;
            --secondary-gold: #d4c5b0;
            --text-dark: #1a1a1a;
            --text-grey: #666666;
            --bg-light: #Fcfcfb;
            
            /* Colores Menú */
            --menu-bg: #F9F7F2;
            --menu-text: #4A4A4A;
            --menu-number: #C5B097;
            --menu-hover: #000000;
        }

        body {
            font-family: 'Raleway', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
            cursor: auto; /* Default PC */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.01em;
        }

        a { text-decoration: none; color: inherit; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
        ul { list-style: none; padding: 0; margin: 0; }
        p { line-height: 1.8; font-weight: 300; font-size: 1.05rem; color: var(--text-grey); }

        /* CUSTOM CURSOR */
        .cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
        .cursor-dot { width: 6px; height: 6px; background-color: var(--text-dark); }
        .cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(191, 163, 124, 0.5); transition: width 0.2s, height 0.2s, background-color 0.2s; }
        body.hovering .cursor-outline { width: 70px; height: 70px; background-color: rgba(191, 163, 124, 0.1); border-color: transparent; mix-blend-mode: multiply;}

         /* --- OVERLAY MENU --- */
        .overlay-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--menu-bg); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); overflow-y: auto; display: flex; align-items: center; justify-content: center; }
        .overlay-menu.active { opacity: 1; visibility: visible; }
        .close-btn-box { position: absolute; top: 0; left: 0; width: 90px; height: 90px; border-right: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 2001; transition: background 0.3s; }
        .close-btn-box:hover { background: rgba(0,0,0,0.02); }
        .close-icon-svg { width: 24px; height: 24px; stroke: var(--menu-text); stroke-width: 0.8; transition: transform 0.5s ease, stroke 0.3s; }
        .close-btn-box:hover .close-icon-svg { transform: rotate(90deg); stroke: black; }
        .menu-content-wrapper { display: flex; width: 100%; max-width: 1300px; margin: 0 auto; height: 80vh; align-items: center; }
        .menu-image-col { flex: 0 0 45%; display: flex; justify-content: flex-end; padding-right: 50px; opacity: 0; transform: translateX(-20px); transition: all 0.8s ease 0.2s; height: 100%; align-items: center; }
        .overlay-menu.active .menu-image-col { opacity: 1; transform: translateX(0); }
        .menu-image-container { width: 100%; max-width: 450px; aspect-ratio: 3/4; overflow: hidden; position: relative; box-shadow: 20px 20px 60px rgba(0,0,0,0.05); }
        .menu-image-container img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease-in-out, transform 10s ease; opacity: 1; }
        .overlay-menu.active .menu-image-container img { transform: scale(1.05); }
        .menu-links-col { flex: 0 0 55%; display: flex; flex-direction: column; justify-content: center; padding-left: 30px; height: 100%; }
        .menu-links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, auto); column-gap: 80px; row-gap: 25px; justify-content: start; }
        .menu-links li { opacity: 0; transform: translateY(20px); transition: all 0.5s ease; display: flex; align-items: baseline; }
        .menu-num { font-family: 'Playfair Display', serif; font-size: 0.75rem; color: var(--menu-number); width: 25px; margin-right: 15px; font-style: italic; font-weight: 400; }
        .menu-links a { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--menu-text); text-decoration: none; transition: color 0.3s, transform 0.3s; font-weight: 400; display: inline-block; }
        .menu-links a:hover { color: var(--menu-hover); transform: translateX(10px); }
        .overlay-menu.active .menu-links li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(7) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(8) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(9) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(10) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }


        /* =========================================
           ESTILOS ESPECÍFICOS: ROOM DETAIL (ADVANCED)
           ========================================= */

        /* HERO SECTION */
        .room-hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .room-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .room-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 110%; /* Extra height for parallax */
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.85);
            /* Parallax effect managed via JS or simple CSS transform */
        }
        .room-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding-top: 60px;
            max-width: 800px;
        }
        .hero-subtitle {
            font-size: 0.85rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
            display: block;
            animation: fadeInDown 1.5s ease;
        }
        .hero-title {
            font-size: 6rem;
            margin-bottom: 20px;
            font-style: italic;
            text-shadow: 0 20px 40px rgba(0,0,0,0.3);
            animation: fadeInUp 1.5s ease;
        }
        .hero-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-top: 20px;
            display: block;
            font-weight: 400;
            opacity: 0;
            animation: fadeInUp 1.5s ease 0.3s forwards;
        }

        /* SCROLL DOWN INDICATOR */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: white;
            text-align: center;
            opacity: 0.7;
        }
        .scroll-line {
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.5);
            margin: 0 auto 10px;
            position: relative;
            overflow: hidden;
        }
        .scroll-line::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: #fff;
            animation: scrollLine 2s infinite;
        }
        @keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

        /* SCROLL INDICATOR DARK */
        .scroll-indicator-dark {
            margin: 80px auto 20px;
            color: var(--text-grey);
            text-align: center;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .scroll-line-dark {
            width: 1px;
            height: 60px;
            background: rgba(0,0,0,0.1);
            margin: 0 auto 15px;
            position: relative;
            overflow: hidden;
        }
        .scroll-line-dark::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--text-grey);
            animation: scrollLine 2s infinite;
        }

        /* QUICK SPECS BAR */
        .specs-bar {
            background: white;
            padding: 40px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
            z-index: 10;
        }
        .spec-item {
            text-align: center;
            padding: 0 20px;
            border-right: 1px solid rgba(0,0,0,0.05);
        }
        .spec-item:last-child { border-right: none; }
        .spec-icon { font-size: 1.5rem; color: var(--primary-gold); margin-bottom: 10px; display: block; }
        .spec-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; display: block; font-weight: 700; color: var(--text-dark); }
        .spec-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-grey); font-style: italic; }

        /* INTRO NARRATIVE */
        .narrative-section { padding: 150px 0; max-width: 1400px; margin: 0 auto; position: relative; }
        .narrative-row { display: flex; align-items: center; margin-bottom: 150px; }
        .narrative-text-col { flex: 1; padding: 0 8%; }
        .narrative-img-col { flex: 1; position: relative; height: 700px; overflow: hidden; }
        
        /* Hover Transition */
        .narrative-img { 
            width: 100%; height: 100%; object-fit: cover; 
            transition: transform 2s ease; 
        }
        /* Scale on hover */
        .narrative-row:hover .narrative-img { 
            transform: scale(1.03); 
        }
        
        .drop-cap { float: left; font-size: 5rem; line-height: 0.8; padding-right: 20px; font-family: 'Playfair Display', serif; color: var(--primary-gold); }
        .section-subtitle { color: var(--primary-gold); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; display: block; }
        .quote-text { font-family: 'Playfair Display', serif; font-size: 2rem; line-height: 1.4; color: var(--text-dark); margin: 40px 0; font-style: italic; border-left: 2px solid var(--primary-gold); padding-left: 30px; }

        /* GALERÍA ARRECHA (MASONRY) */
        .gallery-section { padding-bottom: 150px; background: #fafafa; padding-top: 100px; }
        .gallery-header { text-align: center; margin-bottom: 80px; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 350px;
            gap: 20px;
            padding: 0 20px;
            max-width: 1600px;
            margin: 0 auto;
        }
        .gallery-item { position: relative; overflow: hidden; cursor: zoom-in; opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
        .gallery-item.visible { opacity: 1; transform: translateY(0); }
        
        /* Scale Transition */
        .gallery-item img { 
            width: 100%; height: 100%; object-fit: cover; 
            transition: transform 0.6s ease; 
        }
        
        /* Tamaños irregulares para efecto mosaico */
        .g-wide { grid-column: span 2; }
        .g-tall { grid-row: span 2; }
        .g-big { grid-column: span 2; grid-row: span 2; }

        .gallery-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(26, 26, 26, 0.4);
            display: flex; justify-content: center; align-items: center;
            opacity: 0; transition: opacity 0.4s ease;
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        /* Scale on hover */
        .gallery-item:hover img { 
            transform: scale(1.05); 
        }
        .zoom-icon { color: white; border: 1px solid white; border-radius: 50%; width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; }

        /* AMENITIES DETAIL GRID */
        .details-grid-section { padding: 100px 0; background: white; }
        .detail-item-row { display: flex; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 30px 0; align-items: center; transition: background 0.3s; }
        .detail-item-row:hover { background: #fdfdfd; }
        .detail-cat { width: 30%; padding-left: 5%; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-dark); }
        .detail-list { width: 70%; padding-right: 5%; display: flex; flex-wrap: wrap; gap: 20px; }
        .detail-tag { font-size: 0.8rem; color: var(--text-grey); display: flex; align-items: center; width: 45%; }
        .detail-tag i { color: var(--primary-gold); margin-right: 10px; font-size: 0.8rem; }

        /* STICKY BOOKING CARD (Side) */
        .sticky-book-wrapper {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 900;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        .sticky-book-wrapper.visible { opacity: 1; transform: translateY(0); }
        .book-card {
            background: #2b2522; /* Darker background for contrast */
            color: white;
            padding: 30px;
            width: 320px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        .book-card h3 { font-size: 1.5rem; margin-bottom: 5px; font-style: italic; }
        .book-card .price { font-size: 1.8rem; font-weight: 300; margin-bottom: 20px; display: block; color: var(--primary-gold); }
        .btn-book-full {
            width: 100%;
            background: #fdfbf7; /* Off-white button background */
            color: var(--text-dark);
            border: 1px solid #d4c5b0; /* Subtle border matching gold */
            padding: 15px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 0.8rem;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-book-full::before {
             content: '';
             display: inline-block;
             width: 6px;
             height: 6px;
             background-color: var(--primary-gold);
             border-radius: 50%;
             margin-right: 10px;
         }
        .btn-book-full:hover { background: var(--primary-gold); color: white; border-color: var(--primary-gold); }
        .btn-book-full:hover::before { background-color: white; }

        /* LIGHTBOX MODAL */
        .lightbox {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95); z-index: 3000;
            display: none; justify-content: center; align-items: center;
        }
        .lightbox.active { display: flex; animation: fadeIn 0.3s; }
        .lightbox img { max-height: 90vh; max-width: 90vw; border: 2px solid var(--text-dark); box-shadow: 0 0 50px rgba(0,0,0,0.5); }
        .lightbox-close { position: absolute; top: 30px; right: 30px; color: white; font-size: 2rem; cursor: pointer; }

        /* FOOTER (Original styles) */
        .luxury-footer { background-color: #000; color: #fff; padding: 100px 0 40px; font-family: 'Raleway', sans-serif; }
        .footer-logo-section { text-align: center; margin-bottom: 80px; }
        /* Logo ajustado en footer para usar SVG */
        .footer-logo-container { display: inline-block; height: 70px; }
        .footer-logo-svg { height: 100%; width: auto; fill: white; }
        
        .footer-links-grid { margin-bottom: 80px; }
        .footer-col { margin-bottom: 40px; }
        .footer-col h5 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; margin-bottom: 30px; color: #fff; font-weight: 400; }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col ul li { margin-bottom: 20px; }
        .footer-col ul li a { color: #fff; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; font-weight: 700; text-decoration: none; opacity: 1; transition: opacity 0.3s; }
        .footer-col ul li a:hover { opacity: 0.7; color: var(--primary-gold); }
        .footer-bottom-bar { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
        .footer-socials a { color: #fff; margin-right: 25px; font-size: 1rem; transition: color 0.3s; }
        .footer-socials a:hover { color: var(--primary-gold); }
        .footer-lang { font-size: 0.7rem; letter-spacing: 2px; font-weight: 700; cursor: pointer; text-transform: uppercase; }

        /* ANIMATIONS */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            /* 1. Typography Scaling */
            .hero-title { font-size: 3rem; line-height: 1.1; }
            .quote-text { font-size: 1.4rem; padding-left: 20px; border-width: 2px; margin: 30px 0; }
            
            /* 2. Section Spacing Reduction */
            .narrative-section { padding: 60px 0; }
            .gallery-section { padding: 60px 0; padding-bottom: 80px; }
            .details-grid-section { padding: 60px 0; padding-bottom: 120px; /* Extra space for sticky bar */ }
            
            /* 3. Hero Adjustments */
            .room-hero-content { padding: 0 15px; padding-top: 40px; } 
            
            /* 4. Specs Bar */
            .specs-bar { padding: 20px 0; }
            .spec-item { padding: 15px 10px; border-bottom: 1px solid rgba(0,0,0,0.05); }
            
            /* 5. Narrative Layout */
            .narrative-row { flex-direction: column; margin-bottom: 60px; }
            .narrative-row.alt { flex-direction: column; }
            .narrative-text-col { padding: 0 20px; order: 2; margin-top: 30px; }
            .narrative-img-col { width: 100%; height: 300px; order: 1; }
            
            /* 6. Gallery */
            .gallery-grid { 
                grid-template-columns: 1fr; 
                gap: 10px; 
                padding: 0 15px; 
                grid-auto-rows: 250px; 
            }
            .g-wide, .g-tall, .g-big { grid-column: span 1; grid-row: span 1; }
            
            /* 7. Details List */
            .detail-item-row { flex-direction: column; align-items: flex-start; padding: 20px; }
            .detail-cat { width: 100%; margin-bottom: 15px; }
            .detail-list { width: 100%; }
            .detail-tag { width: 100%; margin-bottom: 10px; }

            /* 8. Sticky Book Bar - Optimized Mobile */
            .sticky-book-wrapper { 
                bottom: 0; right: 0; left: 0; width: 100%; 
                transform: translateY(100%); /* Start hidden below */
                border-top: 1px solid rgba(255,255,255,0.1);
                opacity: 0;
                padding: 0;
            }
            .sticky-book-wrapper.visible { opacity: 1; transform: translateY(0); }
            .book-card { 
                width: 100%; padding: 15px 20px; 
                flex-direction: row; 
                justify-content: space-between;
                align-items: center;
                display: flex;
                box-shadow: 0 -5px 20px rgba(0,0,0,0.1); 
                border-radius: 0;
            }
            .book-card h3 { font-size: 1rem; margin: 0; }
            .book-card .price { font-size: 1.1rem; margin: 0; margin-right: 15px; }
            .btn-book-full { width: auto; font-size: 0.75rem; padding: 10px 20px; }
            
            /* 9. Footer Padding & Mobile Logic */
            .luxury-footer { padding-bottom: 100px; } /* Prevent overlap */
             /* Disable custom cursor on mobile */
             .cursor-dot, .cursor-outline { display: none !important; }
             body, a, button { cursor: auto !important; }
        }
    

/* =========================================================
   UNIFIED NAV + FOOTER FROM HOME
   ========================================================= */
.custom-navbar { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 80px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; z-index: 1000 !important; color: #fff !important; background: transparent !important; padding: 0 40px !important; border-bottom: 1px solid rgba(255,255,255,0.15) !important; transition: all 0.4s ease !important; }
.custom-navbar.scrolled { background-color: rgba(10,10,10,0.9) !important; border-bottom-color: transparent !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
.custom-navbar .nav-left, .custom-navbar .nav-right { display: flex !important; align-items: center !important; height: 100% !important; }
.custom-navbar .nav-center { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; text-align: center !important; }
.menu-btn-minimal { cursor: pointer !important; display: flex !important; flex-direction: column !important; justify-content: center !important; width: 30px !important; height: 100% !important; padding-right: 15px !important; }
.nav-right-link { color: #fff !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; margin-right: 30px !important; transition: opacity 0.3s !important; text-decoration: none !important; }
.nav-right-link:hover { opacity: 0.7 !important; color: #fff !important; }
.nav-icon-stacked { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; width: 80px !important; height: 100% !important; cursor: pointer !important; border-left: 1px solid rgba(255,255,255,0.15) !important; transition: background 0.3s !important; color: #fff !important; }
.nav-icon-stacked:last-child { border-right: 1px solid rgba(255,255,255,0.15) !important; }
.nav-icon-stacked:hover { background: rgba(255,255,255,0.1) !important; }
.nav-icon-stacked i { font-size: 1.1rem !important; margin-bottom: 4px !important; opacity: 0.9 !important; }
.nav-icon-stacked span { font-size: 0.45rem !important; letter-spacing: 1px !important; text-transform: uppercase !important; font-weight: 700 !important; opacity: 0.8 !important; }
.mobile-reservar-btn { display: none !important; }

.overlay-menu { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: var(--menu-bg, #F9F7F2) !important; z-index: 2000 !important; opacity: 0 !important; visibility: hidden !important; transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important; overflow-y: auto !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.overlay-menu.active { opacity: 1 !important; visibility: visible !important; }
.close-btn-box { position: absolute !important; top: 0 !important; left: 0 !important; width: 90px !important; height: 90px !important; border-right: 1px solid rgba(0,0,0,0.05) !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; display: flex !important; justify-content: center !important; align-items: center !important; cursor: pointer !important; z-index: 2001 !important; transition: background 0.3s !important; }
.close-btn-box:hover { background: rgba(0,0,0,0.03) !important; }
.close-icon-svg { width: 28px !important; height: 28px !important; stroke: #111 !important; stroke-width: 1 !important; }
.menu-content-wrapper { width: 100% !important; max-width: 1400px !important; height: 80vh !important; display: flex !important; align-items: center !important; padding: 0 5% !important; }
.menu-image-col { flex: 0 0 40% !important; height: 100% !important; opacity: 0 !important; transform: translateX(-30px) !important; transition: all 0.8s ease 0.2s !important; }
.overlay-menu.active .menu-image-col { opacity: 1 !important; transform: translateX(0) !important; }
.menu-image-container { width: 100% !important; height: 100% !important; overflow: hidden !important; }
.menu-image-container img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 8s ease !important; opacity: 1 !important; display: block !important; }
.overlay-menu.active .menu-image-container img { transform: scale(1.05) !important; }
.menu-links-col { flex: 1 !important; padding-left: 8% !important; }
.menu-links { list-style: none !important; padding: 0 !important; margin: 0 !important; display: grid !important; grid-template-columns: 1fr 1fr !important; column-gap: 80px !important; row-gap: 28px !important; }
.menu-links li { opacity: 0 !important; transform: translateY(20px) !important; transition: all 0.5s ease !important; display: flex !important; align-items: baseline !important; }
.overlay-menu.active .menu-links li { opacity: 1 !important; transform: translateY(0) !important; }
.menu-num { font-size: 0.7rem !important; color: var(--menu-number, #C5B097) !important; margin-right: 18px !important; font-weight: 700 !important; letter-spacing: 1px !important; }
.menu-links a { font-family: 'Playfair Display', serif !important; font-size: clamp(2rem, 4vw, 4rem) !important; color: var(--menu-text, #4A4A4A) !important; line-height: 1 !important; text-decoration: none !important; transition: all 0.4s ease !important; }
.menu-links a:hover { color: var(--menu-hover, #000) !important; transform: translateX(10px) !important; }

.luxury-footer { background-color: #050505 !important; color: #fff !important; padding: 120px 0 30px !important; font-family: 'Lato', sans-serif !important; position: relative !important; z-index: 10 !important; }
.footer-logo-section { text-align: center !important; margin-bottom: 100px !important; }
.footer-main-row { margin-bottom: 60px !important; max-width: 1400px !important; margin-left: auto !important; margin-right: auto !important; padding: 0 5% !important; }
.footer-heading { font-family: 'Playfair Display', serif !important; font-style: italic !important; font-size: 2.4rem !important; font-weight: 400 !important; margin-bottom: 40px !important; color: #fff !important; }
.contact-desc { font-size: 0.85rem !important; color: #ccc !important; line-height: 1.8 !important; letter-spacing: 0.5px !important; margin-bottom: 30px !important; padding-right: 10px !important; }
.contact-details p { font-size: 0.8rem !important; color: #ccc !important; line-height: 1.8 !important; letter-spacing: 0.5px !important; margin-bottom: 0 !important; }
.contact-details i { font-size: 0.9rem !important; color: #fff !important; width: 20px !important; text-align: center !important; }
.footer-links { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-links li { margin-bottom: 25px !important; }
.footer-links li a { color: #fff !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 2.5px !important; text-transform: uppercase !important; transition: opacity 0.3s !important; opacity: 0.9 !important; cursor: pointer !important; text-decoration: none !important; }
.footer-links li a:hover { opacity: 0.5 !important; color: #fff !important; }
.footer-divider { width: 90% !important; height: 1px !important; background-color: rgba(255,255,255,0.1) !important; margin: 0 auto 30px !important; max-width: 1400px !important; }
.footer-bottom-row { display: flex !important; justify-content: space-between !important; align-items: center !important; max-width: 1400px !important; margin: 0 auto !important; padding: 0 5% !important; }
.footer-socials { display: flex !important; gap: 30px !important; align-items: center !important; }
.footer-socials a { color: #fff !important; font-size: 1.1rem !important; transition: opacity 0.3s !important; opacity: 0.9 !important; display: flex !important; align-items: center !important; cursor: pointer !important; text-decoration: none !important; }
.footer-socials a:hover { opacity: 0.5 !important; }
.footer-lang { font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; color: #fff !important; display: flex !important; align-items: center !important; opacity: 0.9 !important; transition: opacity 0.3s !important; cursor: pointer !important; }
.footer-lang:hover { opacity: 0.5 !important; }
.footer-copyright { text-align: center !important; font-size: 0.6rem !important; color: rgba(255,255,255,0.4) !important; letter-spacing: 1px !important; margin-top: 60px !important; text-transform: none !important; }

@media (max-width: 992px) {
    .custom-navbar { padding: 0 !important; background-color: #050505 !important; display: grid !important; grid-template-columns: 75px 1fr 110px !important; border-bottom: none !important; }
    .nav-left { gap: 0 !important; justify-content: center !important; border-right: 1px solid rgba(255,255,255,0.15) !important; width: 100% !important; }
    .menu-btn-minimal { padding: 0 !important; width: 100% !important; align-items: center !important; }
    .nav-center { position: relative !important; left: auto !important; transform: none !important; width: 100% !important; display: flex !important; justify-content: center !important; align-items: center !important; }
    .mobile-logo-wrapper { height: 32px !important; width: 50px !important; overflow: hidden !important; display: flex !important; justify-content: center !important; }
    .mobile-logo-wrapper img { height: 75px !important; object-position: center top !important; filter: brightness(0) invert(1) !important; }
    .mobile-reservar-btn { display: flex !important; align-items: center !important; justify-content: center !important; border-left: 1px solid rgba(255,255,255,0.15) !important; color: white !important; font-size: 0.65rem !important; letter-spacing: 2px !important; font-weight: 700 !important; text-transform: uppercase !important; cursor: pointer !important; height: 100% !important; text-decoration: none !important; }
    .nav-right { display: none !important; }
    .menu-image-col { display: none !important; }
    .menu-links-col { padding-left: 0 !important; padding-right: 0 !important; align-items: center !important; text-align: center !important; flex: 1 !important; }
    .menu-links { grid-template-columns: 1fr !important; row-gap: 25px !important; column-gap: 0 !important; justify-content: center !important; }
    .menu-links a { font-size: 1.8rem !important; }
    .close-btn-box { border: none !important; right: 0 !important; left: auto !important; width: 60px !important; height: 60px !important; }
    .menu-content-wrapper { flex-direction: column !important; height: auto !important; padding-top: 80px !important; padding-bottom: 50px !important; }
    .footer-logo-section { margin-bottom: 60px !important; }
    .footer-main-row { text-align: left !important; margin-bottom: 40px !important; }
    .footer-heading { margin-top: 40px !important; margin-bottom: 20px !important; font-size: 1.8rem !important; }
    .contact-details p { margin-bottom: 15px !important; }
    .footer-bottom-row { flex-direction: column !important; gap: 25px !important; align-items: flex-start !important; }
}


        /* --- HERO HEIGHT UNIFICATION --- */
        :root { --section-hero-height: 74vh; --section-hero-min-height: 560px; }

        header.hero,
        header.ballet-hero,
        header.contact-hero,
        header.exp-hero,
        header.hero-fullscreen,
        header.gastro-hero,
        header.page-header,
        header.room-hero,
        header.services-hero,
        header.hero-shop,
        header.hero-ultra {
            height: var(--section-hero-height) !important;
            min-height: var(--section-hero-min-height) !important;
        }

        @media (max-width: 991px) {
            :root { --section-hero-height: 66vh; --section-hero-min-height: 500px; }
        }

        @media (max-width: 575px) {
            :root { --section-hero-height: 58vh; --section-hero-min-height: 430px; }
        }

    
/* === FOOTER UNIFORME GLOBAL - REFERENCIA INICIO === */
body .luxury-footer {
    background-color: #050505 !important;
    color: #ffffff !important;
    padding: 120px 0 30px !important;
    font-family: 'Lato', sans-serif !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body .luxury-footer .footer-logo-section {
    text-align: center !important;
    margin-bottom: 100px !important;
}
body .luxury-footer .footer-logo-section img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    opacity: 1 !important;
    display: inline-block !important;
    filter: brightness(0) invert(1) !important;
}
body .luxury-footer .footer-main-row {
    margin-bottom: 60px !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 5% !important;
    width: 100% !important;
}
body .luxury-footer .footer-heading {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    margin-bottom: 40px !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
}
body .luxury-footer .contact-desc {
    font-size: 0.85rem !important;
    color: #cccccc !important;
    line-height: 1.8 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 30px !important;
    padding-right: 10px !important;
    font-weight: 400 !important;
}
body .luxury-footer .contact-details p {
    font-size: 0.8rem !important;
    color: #cccccc !important;
    line-height: 1.8 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}
body .luxury-footer .contact-details i {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    width: 20px !important;
    min-width: 20px !important;
    text-align: center !important;
}
body .luxury-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body .luxury-footer .footer-links li {
    margin-bottom: 25px !important;
}
body .luxury-footer .footer-links li a {
    color: #ffffff !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
body .luxury-footer .footer-links li a:hover {
    opacity: 0.5 !important;
    color: #ffffff !important;
}
body .luxury-footer .footer-divider {
    width: 90% !important;
    height: 1px !important;
    background-color: rgba(255,255,255,0.1) !important;
    margin: 0 auto 30px !important;
    max-width: 1400px !important;
}
body .luxury-footer .footer-bottom-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 5% !important;
    width: 100% !important;
}
body .luxury-footer .footer-socials {
    display: flex !important;
    gap: 30px !important;
    align-items: center !important;
}
body .luxury-footer .footer-socials a {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
body .luxury-footer .footer-socials a:hover {
    opacity: 0.5 !important;
}
body .luxury-footer .footer-lang {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s !important;
    cursor: pointer !important;
}
body .luxury-footer .footer-lang:hover {
    opacity: 0.5 !important;
}
body .luxury-footer .footer-copyright {
    text-align: center !important;
    font-size: 0.6rem !important;
    color: rgba(255,255,255,0.4) !important;
    letter-spacing: 1px !important;
    margin-top: 60px !important;
    text-transform: none !important;
}
@media (max-width: 992px) {
    body .luxury-footer {
        padding: 80px 0 30px !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
    }
    body .luxury-footer .footer-logo-section {
        margin-bottom: 70px !important;
    }
    body .luxury-footer .footer-logo-section img {
        height: 90px !important;
    }
    body .luxury-footer .footer-heading {
        font-size: 2rem !important;
        margin-bottom: 28px !important;
    }
    body .luxury-footer .footer-main-row {
        margin-bottom: 45px !important;
        padding: 0 7% !important;
    }
    body .luxury-footer .footer-bottom-row {
        padding: 0 7% !important;
    }
}
@media (max-width: 768px) {
    body .luxury-footer {
        padding: 70px 0 28px !important;
    }
    body .luxury-footer .footer-logo-section {
        margin-bottom: 55px !important;
    }
    body .luxury-footer .footer-logo-section img {
        height: 78px !important;
    }
    body .luxury-footer .footer-main-row {
        padding: 0 28px !important;
        margin-bottom: 40px !important;
    }
    body .luxury-footer .footer-col {
        text-align: left !important;
    }
    body .luxury-footer .footer-heading {
        font-size: 1.85rem !important;
        margin-bottom: 24px !important;
    }
    body .luxury-footer .footer-links li {
        margin-bottom: 18px !important;
    }
    body .luxury-footer .footer-bottom-row {
        flex-direction: column !important;
        gap: 28px !important;
        padding: 0 28px !important;
        align-items: center !important;
    }
    body .luxury-footer .footer-socials {
        gap: 26px !important;
    }
    body .luxury-footer .footer-copyright {
        margin-top: 45px !important;
        padding: 0 28px !important;
    }
}




/* === NAVBAR SIZE UNIFORM FINAL === */
.custom-navbar,
.custom-navbar.scrolled,
.custom-navbar.dark-mode {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    padding: 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}
.custom-navbar .nav-left,
.custom-navbar .nav-right {
    height: 80px !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
}
.custom-navbar .nav-center {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.custom-navbar .menu-btn-minimal {
    width: 30px !important;
    height: 80px !important;
    padding-right: 15px !important;
    display: flex !important;
    justify-content: center !important;
}
.custom-navbar .nav-center-text {
    font-size: 1.6rem !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
}
.custom-navbar .nav-icon-stacked {
    width: 80px !important;
    height: 80px !important;
    min-height: 80px !important;
}
.custom-navbar .nav-right-link {
    margin-right: 30px !important;
    font-size: 0.65rem !important;
    line-height: 1 !important;
}
.top-booking-strip {
    top: 80px !important;
}
@media (max-width: 992px) {
    .custom-navbar,
    .custom-navbar.scrolled,
    .custom-navbar.dark-mode {
        height: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 75px 1fr 110px !important;
        align-items: center !important;
        background-color: #050505 !important;
        border-bottom: none !important;
    }
    .custom-navbar .nav-left {
        height: 80px !important;
        min-height: 80px !important;
        width: 75px !important;
        justify-content: center !important;
        border-right: 1px solid rgba(255,255,255,0.15) !important;
    }
    .custom-navbar .menu-btn-minimal {
        width: 75px !important;
        height: 80px !important;
        padding: 0 !important;
        align-items: center !important;
    }
    .custom-navbar .nav-center {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        height: 80px !important;
        width: 100% !important;
    }
    .custom-navbar .mobile-logo-wrapper {
        width: 50px !important;
        height: 32px !important;
    }
    .custom-navbar .mobile-logo-wrapper img {
        height: 75px !important;
        width: auto !important;
        object-fit: contain !important;
        object-position: center top !important;
        filter: brightness(0) invert(1) !important;
    }
    .custom-navbar .mobile-reservar-btn {
        width: 110px !important;
        height: 80px !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-left: 1px solid rgba(255,255,255,0.15) !important;
        color: #ffffff !important;
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }
    .custom-navbar .nav-right { display: none !important; }
    .top-booking-strip { top: 80px !important; }
}



/* === FOOTER EXACTO GLOBAL - REFERENCIA PÁGINA INICIO === */
html body footer.luxury-footer,
html body .luxury-footer {
    background: #050505 !important;
    background-color: #050505 !important;
    color: #ffffff !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 120px 0 30px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    font-family: 'Lato', sans-serif !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
html body .luxury-footer *,
html body .luxury-footer *::before,
html body .luxury-footer *::after {
    box-sizing: border-box !important;
}
html body .luxury-footer .footer-logo-section {
    text-align: center !important;
    margin: 0 0 100px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}
html body .luxury-footer .footer-logo-section img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    filter: brightness(0) invert(1) !important;
    transform: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-main-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto 60px auto !important;
    padding: 0 5% !important;
}
html body .luxury-footer .footer-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}
html body .luxury-footer .footer-heading {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    text-align: left !important;
}
html body .luxury-footer .contact-desc {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: #cccccc !important;
    margin: 0 0 30px 0 !important;
    padding: 0 10px 0 0 !important;
    text-align: left !important;
}
html body .luxury-footer .contact-details {
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .contact-details p {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.8rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: #cccccc !important;
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
}
html body .luxury-footer .contact-details i {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}
html body .luxury-footer .footer-links li {
    list-style: none !important;
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
    display: list-item !important;
}
html body .luxury-footer .footer-links li a {
    font-family: 'Lato', sans-serif !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-links li a:hover {
    opacity: 0.5 !important;
    color: #ffffff !important;
}
html body .luxury-footer .footer-divider {
    width: 90% !important;
    max-width: 1400px !important;
    height: 1px !important;
    min-height: 1px !important;
    background: rgba(255,255,255,0.1) !important;
    background-color: rgba(255,255,255,0.1) !important;
    margin: 0 auto 30px auto !important;
    padding: 0 !important;
    border: 0 !important;
    display: block !important;
}
html body .luxury-footer .footer-bottom-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 5% !important;
    gap: 0 !important;
}
html body .luxury-footer .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-socials a {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-socials a:hover { opacity: 0.5 !important; }
html body .luxury-footer .footer-lang {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-lang:hover { opacity: 0.5 !important; }
html body .luxury-footer .footer-copyright {
    font-family: 'Lato', sans-serif !important;
    text-align: center !important;
    font-size: 0.6rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.4) !important;
    letter-spacing: 1px !important;
    margin: 60px 0 0 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}
@media (max-width: 992px) {
    html body footer.luxury-footer,
    html body .luxury-footer {
        padding: 80px 0 30px !important;
    }
    html body .luxury-footer .footer-logo-section { margin-bottom: 70px !important; }
    html body .luxury-footer .footer-logo-section img { height: 90px !important; }
    html body .luxury-footer .footer-heading { font-size: 2rem !important; margin-bottom: 28px !important; }
    html body .luxury-footer .footer-main-row { margin-bottom: 45px !important; padding: 0 7% !important; }
    html body .luxury-footer .footer-bottom-row { padding: 0 7% !important; }
}
@media (max-width: 768px) {
    html body footer.luxury-footer,
    html body .luxury-footer {
        padding: 70px 0 28px !important;
    }
    html body .luxury-footer .footer-logo-section { margin-bottom: 55px !important; }
    html body .luxury-footer .footer-logo-section img { height: 78px !important; }
    html body .luxury-footer .footer-main-row { padding: 0 28px !important; margin-bottom: 40px !important; }
    html body .luxury-footer .footer-col { text-align: left !important; }
    html body .luxury-footer .footer-heading { font-size: 1.85rem !important; margin-bottom: 24px !important; }
    html body .luxury-footer .footer-links li { margin-bottom: 18px !important; }
    html body .luxury-footer .footer-bottom-row {
        flex-direction: column !important;
        gap: 28px !important;
        padding: 0 28px !important;
        align-items: center !important;
    }
    html body .luxury-footer .footer-socials { gap: 26px !important; }
    html body .luxury-footer .footer-copyright { margin-top: 45px !important; padding: 0 28px !important; }
}



    .custom-navbar { height: 80px !important; }
    .top-booking-strip {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        height: 75px !important;
        background-color: transparent !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        z-index: 999 !important;
        align-items: center !important;
        padding: 0 40px !important;
        transition: all 0.4s ease !important;
        pointer-events: auto !important;
        box-sizing: border-box !important;
    }
    .top-booking-strip.scrolled {
        background-color: rgba(232, 230, 225, 0.95) !important;
        border-bottom-color: transparent !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    .top-booking-strip.transparent-strip {
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none !important;
        border-color: transparent !important;
    }
    .booking-fields-wrapper {
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        display: flex !important;
        flex-grow: 1 !important;
        align-items: center !important;
        margin: 0 !important;
        transform: translateY(0) !important;
    }
    .booking-fields-wrapper.hidden-fields {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-50px) !important;
    }
    .booking-field-new {
        margin-right: 25px !important;
        flex-shrink: 0 !important;
    }
    .booking-field-new label {
        display: block !important;
        font-size: 0.6rem !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        color: #ffffff !important;
        margin-bottom: 5px !important;
        text-transform: uppercase !important;
        transition: color 0.4s ease !important;
        font-family: 'Lato', sans-serif !important;
        line-height: 1.2 !important;
    }
    .top-booking-strip.scrolled .booking-field-new label {
        color: #111111 !important;
    }
    .field-box {
        background-color: rgba(255, 255, 255, 0.15) !important;
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
        color: #ffffff !important;
        min-width: 220px !important;
        height: auto !important;
        border: none !important;
        outline: none !important;
        font-family: 'Lato', sans-serif !important;
        transition: all 0.4s ease !important;
        cursor: text !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        display: block !important;
        border-radius: 2px !important;
        box-shadow: none !important;
        line-height: 1.4 !important;
    }
    select.field-box {
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
        background-repeat: no-repeat !important;
        background-position: right 10px center !important;
        padding-right: 30px !important;
        cursor: pointer !important;
    }
    select.field-box option {
        color: #111111 !important;
        background-color: #ffffff !important;
    }
    .field-box:hover,
    .field-box:focus {
        background-color: rgba(255, 255, 255, 0.25) !important;
    }
    .field-box.promo {
        font-style: italic !important;
        color: #eeeeee !important;
        min-width: 150px !important;
    }
    .field-box::placeholder {
        color: #eeeeee !important;
        opacity: 1 !important;
    }
    .top-booking-strip.scrolled .field-box {
        background-color: rgba(0, 0, 0, 0.06) !important;
        color: #111111 !important;
    }
    .top-booking-strip.scrolled select.field-box {
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    }
    .top-booking-strip.scrolled .field-box:hover,
    .top-booking-strip.scrolled .field-box:focus {
        background-color: rgba(0, 0, 0, 0.1) !important;
    }
    .top-booking-strip.scrolled .field-box.promo {
        color: #666666 !important;
    }
    .top-booking-strip.scrolled .field-box::placeholder {
        color: #666666 !important;
    }
    .btn-consultar-dark {
        background-color: #ffffff !important;
        color: #000000 !important;
        border: none !important;
        padding: 11px 30px !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
        transition: all 0.4s ease !important;
        margin-top: 16px !important;
        font-family: 'Lato', sans-serif !important;
        border-radius: 0 !important;
        height: auto !important;
        line-height: 1.4 !important;
    }
    .btn-consultar-dark:hover {
        background-color: #dddddd !important;
    }
    .top-booking-strip.scrolled .btn-consultar-dark {
        background-color: #000000 !important;
        color: #ffffff !important;
    }
    .top-booking-strip.scrolled .btn-consultar-dark:hover {
        background-color: #333333 !important;
    }
    .ocultar-toggle {
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        color: #ffffff !important;
        cursor: pointer !important;
        text-transform: uppercase !important;
        transition: color 0.4s ease !important;
        pointer-events: auto !important;
        font-family: 'Lato', sans-serif !important;
        white-space: nowrap !important;
    }
    .top-booking-strip.scrolled .ocultar-toggle {
        color: #111111 !important;
    }
    .ocultar-toggle.text-light-custom {
        color: #ffffff !important;
        text-shadow: 0 2px 5px rgba(0,0,0,0.6) !important;
    }
    .flatpickr-calendar,
    .flatpickr-calendar * {
        cursor: pointer !important;
    }
    @media (max-width: 991.98px) {
        .top-booking-strip { display: none !important; }
    }



/* Mobile repair v2: scoped, placed after page CSS. */
@media (max-width: 991.98px) {
  html, body { width:100% !important; max-width:100% !important; overflow-x:hidden !important; -webkit-text-size-adjust:100% !important; }
  body { cursor:auto !important; background:#fff !important; }
  *, *::before, *::after { box-sizing:border-box !important; }
  img, video, iframe, canvas, svg { max-width:100% !important; }
  .cursor-dot, .cursor-outline { display:none !important; }
  input, select, textarea { font-size:16px !important; }

  /* Navbar */
  .custom-navbar {
    position:fixed !important; top:0 !important; left:0 !important; right:0 !important;
    width:100% !important; height:64px !important; min-height:64px !important;
    padding:0 16px !important; display:flex !important; align-items:center !important; justify-content:space-between !important;
    background:rgba(8,8,8,.96) !important; color:#fff !important;
    border-bottom:1px solid rgba(255,255,255,.12) !important; z-index:5000 !important;
    backdrop-filter:blur(14px) !important; -webkit-backdrop-filter:blur(14px) !important;
  }
  .custom-navbar.scrolled { height:64px !important; background:rgba(8,8,8,.97) !important; }
  .nav-left, .nav-right, .nav-center { height:64px !important; display:flex !important; align-items:center !important; }
  .nav-left { min-width:44px !important; flex:0 0 auto !important; z-index:2 !important; }
  .nav-center { position:absolute !important; left:50% !important; top:0 !important; transform:translateX(-50%) !important; width:auto !important; max-width:62vw !important; justify-content:center !important; text-align:center !important; }
  .nav-right { min-width:44px !important; flex:0 0 auto !important; justify-content:flex-end !important; z-index:2 !important; }
  .nav-right > *:not(.mobile-reservar-btn) { display:none !important; }
  .menu-btn-minimal { width:44px !important; height:44px !important; min-width:44px !important; display:flex !important; align-items:center !important; justify-content:center !important; padding:0 !important; }
  .nav-center img, .custom-navbar img { max-height:36px !important; width:auto !important; object-fit:contain !important; }

  /* Booking form below navbar, in document flow, sticky on scroll. */
  .top-booking-strip, .top-booking-strip.d-none, .top-booking-strip.d-lg-flex {
    display:block !important; position:sticky !important; top:64px !important; left:auto !important; right:auto !important;
    width:100% !important; height:auto !important; min-height:0 !important; margin-top:64px !important;
    padding:10px 12px 12px !important; background:rgba(249,247,242,.98) !important; color:#111 !important;
    border-bottom:1px solid rgba(0,0,0,.08) !important; box-shadow:0 12px 24px rgba(0,0,0,.08) !important;
    z-index:4500 !important; opacity:1 !important; visibility:visible !important; transform:none !important; pointer-events:auto !important;
    backdrop-filter:blur(14px) !important; -webkit-backdrop-filter:blur(14px) !important;
  }
  .top-booking-strip.transparent-strip, .top-booking-strip.scrolled { background:rgba(249,247,242,.98) !important; border-bottom:1px solid rgba(0,0,0,.08) !important; pointer-events:auto !important; }
  .booking-fields-wrapper, .booking-fields-wrapper.hidden-fields {
    display:grid !important; grid-template-columns:1fr 1fr !important; gap:8px !important; width:100% !important; max-width:100% !important;
    margin:0 !important; padding:0 !important; opacity:1 !important; visibility:visible !important; pointer-events:auto !important; transform:none !important; align-items:end !important;
  }
  .booking-field-new { width:100% !important; min-width:0 !important; margin:0 !important; padding:0 !important; flex:initial !important; }
  .booking-field-new:first-child { grid-column:1 / -1 !important; }
  .booking-field-new label, .top-booking-strip.scrolled .booking-field-new label {
    display:block !important; margin:0 0 4px !important; color:#111 !important; font-size:.52rem !important; line-height:1.1 !important;
    letter-spacing:1.2px !important; font-weight:800 !important; text-transform:uppercase !important;
  }
  .field-box, input.field-box, select.field-box, .top-booking-strip.scrolled .field-box {
    width:100% !important; min-width:0 !important; max-width:100% !important; height:38px !important; min-height:38px !important;
    padding:0 10px !important; border:1px solid rgba(0,0,0,.12) !important; border-radius:0 !important;
    background:#fff !important; color:#111 !important; line-height:38px !important; box-shadow:none !important; outline:none !important;
  }
  .field-box::placeholder, .top-booking-strip.scrolled .field-box::placeholder { color:rgba(17,17,17,.55) !important; }
  .btn-consultar-dark, .top-booking-strip.scrolled .btn-consultar-dark {
    width:100% !important; min-width:0 !important; max-width:100% !important; height:38px !important; min-height:38px !important;
    padding:0 8px !important; display:flex !important; align-items:center !important; justify-content:center !important;
    background:#111 !important; color:#fff !important; border:1px solid #111 !important; border-radius:0 !important;
    font-size:.58rem !important; line-height:1.1 !important; letter-spacing:1px !important; font-weight:800 !important; text-align:center !important; white-space:normal !important;
  }
  .ocultar-toggle, #toggleBookingBtn { display:none !important; }

  /* Heroes */
  .hero, .ballet-hero, .contact-hero, .exp-hero, .hero-fullscreen, .gastro-hero, .room-hero, .services-hero, .hero-shop, .hero-ultra {
    min-height:62svh !important; height:auto !important; padding:52px 16px !important; display:flex !important; align-items:center !important; justify-content:center !important; overflow:hidden !important;
  }
  .hero img, .hero-img, .ballet-hero-img, .contact-hero-img, .exp-hero-bg, .hero-bg, .gastro-hero-img, .room-hero-bg, .services-hero-img, .hero-shop-img, .hero-bg-img {
    width:100% !important; height:100% !important; object-fit:cover !important; object-position:center !important;
  }
  .hero-content, .hero-text-box, .ballet-hero-content, .contact-hero-content, .exp-hero-content, .hero-content-center, .room-hero-content, .services-hero-content, .hero-shop-content {
    width:100% !important; max-width:100% !important; padding-left:16px !important; padding-right:16px !important; text-align:center !important; z-index:5 !important;
  }
  .hero-title, .ballet-hero-content h1, .contact-hero-title, .exp-hero-title, .hero-title-art, .hero-shop-title, .services-hero-content h1, .room-hero-content h1, .hero-content h1, h1.page-title, .product-title-main {
    font-size:clamp(2.05rem, 11vw, 3.15rem) !important; line-height:1 !important; letter-spacing:-.04em !important; margin-bottom:14px !important; overflow-wrap:break-word !important;
  }
  .ballet-hero-content p, .contact-hero-content p, .exp-hero-content p, .services-hero-content p, .hero-shop-content p, .room-hero-content p, .hero-content p, .hero-subtitle, .hero-desc-art, .gastro-desc-hero {
    color:#fff !important; text-shadow:0 2px 12px rgba(0,0,0,.48) !important; font-size:clamp(.92rem, 3.8vw, 1.08rem) !important; line-height:1.55 !important; max-width:92vw !important; margin-left:auto !important; margin-right:auto !important;
  }

  /* Pages without hero */
  .cart-page-container, .checkout-container, .auth-container, .dashboard-container, .thank-you-container, .legal-container, .product-page-container, main, .main-content {
    width:100% !important; max-width:100% !important;
  }
  .cart-page-container, .checkout-container, .auth-container, .dashboard-container, .thank-you-container, .legal-container, .product-page-container {
    padding-left:16px !important; padding-right:16px !important;
  }

  /* Layout safety */
  section, .section { max-width:100% !important; overflow-x:hidden !important; }
  .container, .container-fluid, .container-fluid-custom { max-width:100% !important; padding-left:16px !important; padding-right:16px !important; }
  .row { margin-left:0 !important; margin-right:0 !important; }
  .row > * { padding-left:0 !important; padding-right:0 !important; }
  .hero-boxes-grid, .rooms-grid, .services-grid, .products-grid, .gallery-grid, .studio-grid, .features-grid, .footer-grid, .footer-links-grid, .dashboard-grid, .cart-layout, .checkout-layout, .product-main-grid, .product-layout {
    display:grid !important; grid-template-columns:1fr !important; gap:24px !important;
  }
  .program-row, .philosophy-strip, .level-card, .footer-bottom-bar, .product-actions { display:flex !important; flex-direction:column !important; align-items:stretch !important; gap:22px !important; }
  .program-text-col, .program-img-col, .philosophy-text, .philosophy-stats, .product-info-wrapper, .product-gallery { width:100% !important; max-width:100% !important; padding-left:0 !important; padding-right:0 !important; position:relative !important; top:auto !important; }
  .program-row { min-height:0 !important; }
  .program-img-col, .product-img-wrap, .room-img-wrap, .service-img-wrap { min-height:280px !important; }
  h2, .section-title, .section-title-luxury, .program-title, .cta-content h2, .level-info h4, .product-card-title { font-size:clamp(1.85rem, 8vw, 2.75rem) !important; line-height:1.08 !important; }
  p, .luxury-desc, .product-short-desc, .level-desc { font-size:.98rem !important; line-height:1.7 !important; }

  /* Overlay menu */
  .overlay-menu { align-items:flex-start !important; justify-content:flex-start !important; padding:84px 22px 36px !important; overflow-y:auto !important; -webkit-overflow-scrolling:touch !important; }
  .close-btn-box { width:64px !important; height:64px !important; top:0 !important; left:0 !important; }
  .menu-content-wrapper, .overlay-content, .menu-inner { width:100% !important; max-width:100% !important; display:block !important; }
  .menu-image-container, .menu-image-col { display:none !important; }
  .menu-links, .overlay-menu ul { width:100% !important; padding:0 !important; margin:0 !important; }
  .menu-links li, .overlay-menu li { margin-bottom:12px !important; }
  .menu-links a, .overlay-menu li a, .nav-item-box { font-size:clamp(1.55rem, 8vw, 2.45rem) !important; line-height:1.12 !important; width:100% !important; }

  /* Footer */
  .luxury-footer, footer.luxury-footer { width:100% !important; padding:58px 18px 28px !important; margin:0 !important; overflow:hidden !important; background:#000 !important; color:#fff !important; }
  .footer-logo-section { margin-bottom:42px !important; text-align:center !important; }
  .footer-logo-section img, .footer-logo img { max-width:210px !important; height:auto !important; object-fit:contain !important; margin:0 auto !important; }
  .footer-col, .footer-column { width:100% !important; text-align:center !important; margin-bottom:30px !important; padding:0 !important; }
  .footer-col h5, .footer-column h5, .footer-title { font-size:1.28rem !important; margin-bottom:18px !important; color:#fff !important; }
  .footer-col ul, .footer-column ul { padding:0 !important; margin:0 !important; list-style:none !important; }
  .footer-col li, .footer-column li { margin-bottom:11px !important; }
  .footer-col a, .footer-column a, .footer-bottom-bar a { color:rgba(255,255,255,.68) !important; font-size:.7rem !important; line-height:1.7 !important; letter-spacing:1.6px !important; }
  .footer-bottom-bar { border-top:1px solid rgba(255,255,255,.14) !important; padding-top:24px !important; margin-top:18px !important; text-align:center !important; justify-content:center !important; align-items:center !important; }
  .footer-socials, .social-links { display:flex !important; justify-content:center !important; align-items:center !important; gap:18px !important; flex-wrap:wrap !important; }
}

@media (max-width: 575.98px) {
  .custom-navbar { height:62px !important; min-height:62px !important; padding-left:14px !important; padding-right:14px !important; }
  .nav-left, .nav-right, .nav-center { height:62px !important; }
  .top-booking-strip, .top-booking-strip.d-none, .top-booking-strip.d-lg-flex { top:62px !important; margin-top:62px !important; padding:9px 10px 10px !important; }
  .booking-fields-wrapper, .booking-fields-wrapper.hidden-fields { gap:7px !important; }
  .field-box, input.field-box, select.field-box, .btn-consultar-dark { height:36px !important; min-height:36px !important; line-height:36px !important; }
  .btn-consultar-dark { font-size:.54rem !important; letter-spacing:.9px !important; }
  .hero, .ballet-hero, .contact-hero, .exp-hero, .hero-fullscreen, .gastro-hero, .room-hero, .services-hero, .hero-shop, .hero-ultra { min-height:60svh !important; padding-top:44px !important; padding-bottom:44px !important; }
}



@media (min-width: 992px) {
  .overlay-menu {
    width: 100vw !important;
    height: 100vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .overlay-menu .menu-content-wrapper {
    width: min(1180px, calc(100vw - 180px)) !important;
    max-width: min(1180px, calc(100vw - 180px)) !important;
    height: min(78vh, 720px) !important;
    min-height: 560px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr) !important;
    align-items: center !important;
    column-gap: clamp(44px, 5vw, 82px) !important;
    box-sizing: border-box !important;
  }

  .overlay-menu .menu-image-col {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-image-container {
    width: 100% !important;
    max-width: 390px !important;
    height: min(68vh, 620px) !important;
    min-height: 520px !important;
    aspect-ratio: 0.68 / 1 !important;
    overflow: hidden !important;
    box-shadow: 0 28px 70px rgba(0,0,0,0.12) !important;
    background: #ddd !important;
  }

  .overlay-menu .menu-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
  }

  .overlay-menu .menu-links-col {
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;
    flex: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-links {
    width: 100% !important;
    max-width: 680px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: clamp(42px, 5vw, 76px) !important;
    row-gap: clamp(18px, 2.4vh, 28px) !important;
    justify-content: stretch !important;
    align-items: start !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-links li {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: baseline !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-num {
    display: inline-block !important;
    width: 34px !important;
    min-width: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.64rem !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    color: var(--menu-number, #C5B097) !important;
    text-align: right !important;
    transform: translateY(-0.18em) !important;
  }

  .overlay-menu .menu-links a {
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    display: inline-block !important;
    font-size: clamp(2.3rem, 3.05vw, 3.35rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    color: var(--menu-text, #4A4A4A) !important;
    transform: none !important;
  }

  .overlay-menu .menu-links a:hover {
    transform: translateX(8px) !important;
    color: var(--menu-hover, #000000) !important;
  }

  .close-btn-box {
    width: 76px !important;
    height: 76px !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    background: rgba(249,247,242,0.72) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .overlay-menu .menu-content-wrapper {
    width: calc(100vw - 110px) !important;
    max-width: calc(100vw - 110px) !important;
    grid-template-columns: 0.74fr 1.26fr !important;
    column-gap: 42px !important;
  }
  .overlay-menu .menu-image-container {
    max-width: 330px !important;
    min-height: 480px !important;
  }
  .overlay-menu .menu-links {
    max-width: 640px !important;
    column-gap: 38px !important;
  }
  .overlay-menu .menu-links a {
    font-size: clamp(2rem, 3vw, 2.9rem) !important;
  }
}

@media (max-width: 991.98px) {
  .overlay-menu {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 88px 24px 40px !important;
  }
  .overlay-menu .menu-content-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    display: block !important;
  }
  .overlay-menu .menu-image-col,
  .overlay-menu .menu-image-container {
    display: none !important;
  }
  .overlay-menu .menu-links-col {
    width: 100% !important;
    padding: 0 !important;
  }
  .overlay-menu .menu-links {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .overlay-menu .menu-links li {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: baseline !important;
    margin: 0 !important;
  }
  .overlay-menu .menu-links a {
    font-size: clamp(1.9rem, 10vw, 3.25rem) !important;
    line-height: 1.05 !important;
    white-space: normal !important;
  }
  .close-btn-box {
    width: 68px !important;
    height: 68px !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
  }
}



@media (min-width: 992px) {
  .custom-navbar .nav-left {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: auto !important;
    min-width: 152px !important;
    height: 54px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02) !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
  }
  .custom-navbar #openMenuBtn:hover,
  .custom-navbar .menu-btn-minimal:hover {
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(255,255,255,0.28) !important;
    transform: translateY(-1px) !important;
  }
  .custom-navbar #openMenuBtn svg,
  .custom-navbar .menu-btn-minimal svg {
    width: 24px !important;
    height: 16px !important;
    flex: 0 0 auto !important;
  }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ · EXPLORAR";
    display: inline-block !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.64rem !important;
    font-weight: 700 !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.98) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    height: 54px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex img {
    height: 30px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 34px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    font-size: 0.66rem !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
  }
}
@media (max-width: 991.98px) {
  .custom-navbar .menu-btn-minimal {
    position: relative !important;
  }
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ";
    position: absolute !important;
    left: 50% !important;
    bottom: 6px !important;
    transform: translateX(-50%) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.42rem !important;
    letter-spacing: 1.6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.88) !important;
    line-height: 1 !important;
    pointer-events: none !important;
  }
  .custom-navbar .menu-btn-minimal svg {
    transform: translateY(-6px) !important;
  }
}



/* Ajuste refinado del acceso al mega menú: sobrio, hotelero y sin estilo de botón comercial */
@media (min-width: 992px) {
  .custom-navbar .nav-left {
    width: auto !important;
    min-width: 150px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
  }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    height: 80px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    position: relative !important;
  }
  .custom-navbar #openMenuBtn::before,
  .custom-navbar .menu-btn-minimal::before {
    content: "" !important;
    position: absolute !important;
    right: -10px !important;
    top: 50% !important;
    width: 1px !important;
    height: 30px !important;
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.18) !important;
  }
  .custom-navbar #openMenuBtn svg,
  .custom-navbar .menu-btn-minimal svg {
    width: 25px !important;
    height: 15px !important;
    flex: 0 0 auto !important;
    transform: none !important;
    opacity: 0.98 !important;
  }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ" !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.47rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.82) !important;
    white-space: nowrap !important;
    pointer-events: none !important;
  }
  .custom-navbar #openMenuBtn:hover,
  .custom-navbar .menu-btn-minimal:hover {
    background: transparent !important;
    border: none !important;
    transform: none !important;
  }
  .custom-navbar #openMenuBtn:hover::after,
  .custom-navbar .menu-btn-minimal:hover::after {
    color: #ffffff !important;
  }
  .custom-navbar #openMenuBtn:hover svg path,
  .custom-navbar .menu-btn-minimal:hover svg path {
    stroke-width: 1.8 !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    height: 80px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex img {
    height: 31px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 0.64rem !important;
    letter-spacing: 1.7px !important;
    font-weight: 700 !important;
    opacity: 0.95 !important;
  }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"]::after {
    content: "" !important;
    display: inline-block !important;
    width: 4px !important;
    height: 4px !important;
    border-right: 1px solid rgba(255,255,255,0.75) !important;
    border-bottom: 1px solid rgba(255,255,255,0.75) !important;
    transform: rotate(45deg) translateY(-2px) !important;
    margin-left: 7px !important;
  }
}
@media (max-width: 991.98px) {
  .custom-navbar .menu-btn-minimal {
    position: relative !important;
    gap: 5px !important;
  }
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 6px !important;
    transform: translateX(-50%) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.40rem !important;
    letter-spacing: 1.55px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.82) !important;
    line-height: 1 !important;
    pointer-events: none !important;
  }
  .custom-navbar .menu-btn-minimal svg {
    transform: translateY(-6px) !important;
    width: 25px !important;
    height: 15px !important;
  }
}



/* Restauración final de barra de navegación: botón menú, logo lateral e idioma */
.custom-navbar #openMenuBtn,
.custom-navbar .menu-btn-minimal {
  position: relative !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 4px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  transition: background 0.25s ease, border-color 0.25s ease !important;
}
.custom-navbar #openMenuBtn:hover,
.custom-navbar .menu-btn-minimal:hover {
  background: rgba(255,255,255,0.105) !important;
  border-color: rgba(255,255,255,0.19) !important;
}
.custom-navbar #openMenuBtn svg,
.custom-navbar .menu-btn-minimal svg {
  display: none !important;
}
.custom-navbar #openMenuBtn::before,
.custom-navbar .menu-btn-minimal::before {
  content: "" !important;
  display: block !important;
  width: 26px !important;
  height: 14px !important;
  flex: 0 0 auto !important;
  background:
    linear-gradient(#fff,#fff) top center / 26px 1.4px no-repeat,
    linear-gradient(#fff,#fff) bottom center / 26px 1.4px no-repeat !important;
  opacity: 0.96 !important;
  position: relative !important;
  inset: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.custom-navbar #openMenuBtn::after,
.custom-navbar .menu-btn-minimal::after {
  content: "MENÚ" !important;
  display: block !important;
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.43rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 1.7px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.84) !important;
  pointer-events: none !important;
}
@media (min-width: 992px) {
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 58px !important;
    padding: 0 !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 22px !important;
    margin-left: 18px !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex img {
    height: 38px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }
  .custom-navbar .nav-left .dropdown { margin-left: 4px !important; }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.9px !important;
    color: #fff !important;
  }
}
@media (max-width: 991.98px) {
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    margin-left: 7px !important;
  }
  .custom-navbar #openMenuBtn::before,
  .custom-navbar .menu-btn-minimal::before {
    width: 24px !important;
    height: 13px !important;
    background:
      linear-gradient(#fff,#fff) top center / 24px 1.35px no-repeat,
      linear-gradient(#fff,#fff) bottom center / 24px 1.35px no-repeat !important;
  }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    font-size: 0.40rem !important;
    letter-spacing: 1.55px !important;
  }
}



/* Ajuste definitivo: botón de menú discreto y consistente en todas las páginas */
.custom-navbar #openMenuBtn,
.custom-navbar .menu-btn-minimal {
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  position: relative !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.11) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  overflow: hidden !important;
}
.custom-navbar #openMenuBtn:hover,
.custom-navbar .menu-btn-minimal:hover {
  background: rgba(255,255,255,0.085) !important;
  border-color: rgba(255,255,255,0.17) !important;
  transform: none !important;
}
.custom-navbar #openMenuBtn svg,
.custom-navbar .menu-btn-minimal svg {
  display: none !important;
}
.custom-navbar #openMenuBtn::before,
.custom-navbar .menu-btn-minimal::before {
  content: "" !important;
  display: block !important;
  width: 24px !important;
  height: 13px !important;
  flex: 0 0 auto !important;
  background:
    linear-gradient(#fff,#fff) top center / 24px 1.25px no-repeat,
    linear-gradient(#fff,#fff) bottom center / 24px 1.25px no-repeat !important;
  opacity: 0.94 !important;
  position: relative !important;
  inset: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.custom-navbar #openMenuBtn::after,
.custom-navbar .menu-btn-minimal::after {
  content: "MENÚ" !important;
  display: block !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.39rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 1.45px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.82) !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}
.custom-navbar .nav-left {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  height: 100% !important;
}
.custom-navbar .nav-left > .d-none.d-lg-flex {
  gap: 24px !important;
  margin-left: 0 !important;
}
.custom-navbar .nav-left > .d-none.d-lg-flex img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: brightness(0) invert(1) !important;
}
.custom-navbar .nav-left .dropdown {
  margin-left: 2px !important;
}
.custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
  font-size: 0.68rem !important;
  letter-spacing: 1.9px !important;
  font-weight: 700 !important;
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    height: 50px !important;
    margin-left: 7px !important;
  }
  .custom-navbar .nav-left { gap: 0 !important; }
}



@media (max-width: 991.98px) {
  html, body { overflow-x: hidden !important; width: 100% !important; }
  body { padding-top: 0 !important; }

  /* NAVBAR MOBILE FINAL */
  .custom-navbar,
  .custom-navbar.scrolled,
  .custom-navbar.dark-mode {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) 104px !important;
    align-items: center !important;
    padding: 0 !important;
    background: rgba(5,5,5,0.98) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    z-index: 3000 !important;
    overflow: hidden !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
  .custom-navbar .nav-left,
  .custom-navbar .nav-center,
  .custom-navbar .nav-right,
  .custom-navbar .mobile-reservar-btn {
    height: 64px !important;
    min-height: 64px !important;
  }
  .custom-navbar .nav-left {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    border-right: 1px solid rgba(255,255,255,0.10) !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex,
  .custom-navbar .nav-right,
  .custom-navbar .nav-right.d-none,
  .custom-navbar .nav-icon-stacked,
  .custom-navbar .nav-right-link {
    display: none !important;
  }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    position: relative !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 8px 0 6px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    background: rgba(255,255,255,0.055) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 4px !important;
    transform: none !important;
    overflow: hidden !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
  }
  .custom-navbar #openMenuBtn::before,
  .custom-navbar .menu-btn-minimal::before { content: none !important; display: none !important; }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ" !important;
    position: static !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.44rem !important;
    line-height: 1 !important;
    letter-spacing: 1.45px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.92) !important;
    pointer-events: none !important;
  }
  .custom-navbar #openMenuBtn svg,
  .custom-navbar .menu-btn-minimal svg {
    width: 23px !important;
    height: 14px !important;
    margin: 0 !important;
    transform: none !important;
    display: block !important;
    flex: 0 0 auto !important;
  }
  .custom-navbar #openMenuBtn svg path,
  .custom-navbar .menu-btn-minimal svg path { stroke: #fff !important; stroke-width: 1.55 !important; }
  .custom-navbar .nav-center {
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    text-align: center !important;
  }
  .custom-navbar .nav-center > img.d-none.d-lg-block { display: none !important; }
  .custom-navbar .mobile-logo-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 34px !important;
    overflow: hidden !important;
  }
  .custom-navbar .mobile-logo-wrapper img {
    display: block !important;
    height: 66px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
  }
  .custom-navbar .mobile-reservar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 104px !important;
    min-width: 104px !important;
    max-width: 104px !important;
    padding: 0 10px !important;
    color: #fff !important;
    border-left: 1px solid rgba(255,255,255,0.10) !important;
    font-size: 0.54rem !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    cursor: pointer !important;
  }

  /* BOOKING FORM MOBILE FINAL */
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: stretch !important;
    padding: 12px 14px 14px !important;
    margin: 0 !important;
    background: rgba(249,247,242,0.98) !important;
    color: #111 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    z-index: 2990 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06) !important;
    transform: translateY(0) !important;
  }
  .top-booking-strip.booking-mobile-hidden {
    display: none !important;
  }
  .booking-field-new {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: initial !important;
  }
  .booking-field-new label,
  .top-booking-strip.scrolled .booking-field-new label,
  .top-booking-strip.transparent-strip .booking-field-new label {
    display: block !important;
    margin: 0 0 5px !important;
    color: #111 !important;
    font-size: 0.52rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
  }
  .field-box,
  input.field-box,
  select.field-box,
  .top-booking-strip.scrolled .field-box,
  .top-booking-strip.transparent-strip .field-box {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(0,0,0,0.06) !important;
    color: #111 !important;
    font-size: 0.88rem !important;
    line-height: 42px !important;
    box-shadow: none !important;
    outline: none !important;
  }
  select.field-box,
  .top-booking-strip.scrolled select.field-box,
  .top-booking-strip.transparent-strip select.field-box {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 20px !important;
  }
  .field-box::placeholder,
  .top-booking-strip.scrolled .field-box::placeholder { color: rgba(17,17,17,0.55) !important; }
  .btn-consultar-dark,
  .top-booking-strip.scrolled .btn-consultar-dark,
  .top-booking-strip.transparent-strip .btn-consultar-dark {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    background: #050505 !important;
    color: #fff !important;
    border: 1px solid #050505 !important;
    font-size: 0.62rem !important;
    letter-spacing: 1.8px !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .booking-field-new:has(.btn-consultar-dark) { grid-column: 1 / -1 !important; }
  .ocultar-toggle,
  #toggleBookingBtn {
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 2px 0 0 !important;
    height: 20px !important;
    color: #111 !important;
    font-size: 0.55rem !important;
    letter-spacing: 1.6px !important;
    line-height: 1 !important;
    text-align: center !important;
    cursor: pointer !important;
  }
  .ocultar-toggle i,
  #toggleBookingBtn i { font-size: 0.62rem !important; margin-left: 6px !important; }

  /* Store pages / pages without booking keep compact spacing */
  body.store-page .top-booking-strip,
  body.shop-page .top-booking-strip,
  .no-booking .top-booking-strip {
    display: none !important;
  }

  header.hero,
  header.ballet-hero,
  header.contact-hero,
  header.exp-hero,
  header.hero-fullscreen,
  header.gastro-hero,
  header.room-hero,
  header.services-hero,
  header.hero-shop,
  header.hero-ultra,
  .page-header {
    margin-top: 64px !important;
  }
  body:has(.top-booking-strip) header.hero,
  body:has(.top-booking-strip) header.ballet-hero,
  body:has(.top-booking-strip) header.contact-hero,
  body:has(.top-booking-strip) header.exp-hero,
  body:has(.top-booking-strip) header.hero-fullscreen,
  body:has(.top-booking-strip) header.gastro-hero,
  body:has(.top-booking-strip) header.room-hero,
  body:has(.top-booking-strip) header.services-hero,
  body:has(.top-booking-strip) header.hero-ultra,
  body:has(.top-booking-strip) .page-header {
    margin-top: 220px !important;
  }
}
@media (max-width: 420px) {
  .custom-navbar,
  .custom-navbar.scrolled,
  .custom-navbar.dark-mode { grid-template-columns: 60px minmax(0, 1fr) 92px !important; height: 62px !important; min-height: 62px !important; }
  .custom-navbar .nav-left { width: 60px !important; min-width: 60px !important; max-width: 60px !important; height: 62px !important; min-height: 62px !important; }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal { width: 46px !important; min-width: 46px !important; height: 46px !important; }
  .custom-navbar .mobile-reservar-btn { width: 92px !important; min-width: 92px !important; max-width: 92px !important; height: 62px !important; min-height: 62px !important; font-size: 0.50rem !important; letter-spacing: 1px !important; }
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip { top: 62px !important; padding: 10px 12px 12px !important; gap: 9px !important; }
  .field-box,
  input.field-box,
  select.field-box { height: 40px !important; min-height: 40px !important; font-size: 0.82rem !important; }
  .btn-consultar-dark { height: 40px !important; min-height: 40px !important; font-size: 0.58rem !important; }
}



/* === FOOTER MÓVIL FINAL === */
@media (max-width: 767.98px) {
  html, body { overflow-x: hidden !important; }

  html body footer.luxury-footer,
  html body .luxury-footer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 58px 0 26px !important;
    margin: 0 !important;
    background: #050505 !important;
    color: #fff !important;
    overflow: hidden !important;
  }

  html body .luxury-footer .footer-logo-section {
    width: 100% !important;
    margin: 0 0 42px !important;
    padding: 0 22px !important;
    text-align: center !important;
  }

  html body .luxury-footer .footer-logo-section img {
    height: 62px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    display: inline-block !important;
    margin: 0 auto !important;
    filter: brightness(0) invert(1) !important;
  }

  html body .luxury-footer .footer-main-row,
  html body .luxury-footer .row.footer-main-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 24px !important;
  }

  html body .luxury-footer .footer-col,
  html body .luxury-footer [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 0 38px !important;
    text-align: left !important;
  }

  html body .luxury-footer .footer-col:last-child,
  html body .luxury-footer [class*="col-"]:last-child {
    margin-bottom: 26px !important;
  }

  html body .luxury-footer .footer-heading {
    font-size: 1.72rem !important;
    line-height: 1.15 !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    color: #fff !important;
    text-align: left !important;
  }

  html body .luxury-footer .contact-desc {
    font-size: 0.82rem !important;
    line-height: 1.75 !important;
    color: rgba(255,255,255,0.68) !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  html body .luxury-footer .contact-details,
  html body .luxury-footer .contact-details p {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .luxury-footer .contact-details p {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 0.78rem !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.72) !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
  }

  html body .luxury-footer .contact-details i {
    width: 18px !important;
    min-width: 18px !important;
    margin: 3px 0 0 !important;
    color: rgba(255,255,255,0.95) !important;
    text-align: center !important;
  }

  html body .luxury-footer .footer-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body .luxury-footer .footer-links li {
    margin: 0 !important;
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.09) !important;
  }

  html body .luxury-footer .footer-links li:first-child {
    border-top: 1px solid rgba(255,255,255,0.09) !important;
  }

  html body .luxury-footer .footer-links li a {
    display: block !important;
    width: 100% !important;
    font-size: 0.66rem !important;
    line-height: 1.35 !important;
    letter-spacing: 2.1px !important;
    color: rgba(255,255,255,0.92) !important;
    opacity: 1 !important;
  }

  html body .luxury-footer .footer-divider {
    width: calc(100% - 48px) !important;
    max-width: calc(100% - 48px) !important;
    margin: 8px auto 24px !important;
    background: rgba(255,255,255,0.12) !important;
  }

  html body .luxury-footer .footer-bottom-row {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 24px !important;
  }

  html body .luxury-footer .footer-socials {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 2px !important;
    margin: 0 !important;
  }

  html body .luxury-footer .footer-socials a {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    font-size: 0.98rem !important;
  }

  html body .luxury-footer .dropup {
    width: 100% !important;
  }

  html body .luxury-footer .footer-lang {
    width: 100% !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    font-size: 0.66rem !important;
    letter-spacing: 2px !important;
    color: #fff !important;
  }

  html body .luxury-footer .footer-copyright {
    width: 100% !important;
    max-width: 100% !important;
    margin: 30px 0 0 !important;
    padding: 0 24px !important;
    text-align: left !important;
    font-size: 0.58rem !important;
    line-height: 1.7 !important;
    letter-spacing: 0.8px !important;
    color: rgba(255,255,255,0.42) !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  html body footer.luxury-footer,
  html body .luxury-footer {
    padding: 76px 0 30px !important;
  }

  html body .luxury-footer .footer-logo-section {
    margin-bottom: 58px !important;
  }

  html body .luxury-footer .footer-logo-section img {
    height: 82px !important;
    max-width: 190px !important;
  }

  html body .luxury-footer .footer-main-row,
  html body .luxury-footer .row.footer-main-row {
    padding: 0 44px !important;
    gap: 0 !important;
  }

  html body .luxury-footer .footer-col,
  html body .luxury-footer [class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 36px !important;
    padding: 0 !important;
  }

  html body .luxury-footer .footer-bottom-row {
    padding: 0 44px !important;
    gap: 24px !important;
  }

  html body .luxury-footer .footer-divider {
    width: calc(100% - 88px) !important;
    max-width: calc(100% - 88px) !important;
  }
}



@media (max-width: 991.98px) {
  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
  }

  .overlay-menu {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    z-index: 3000 !important;
    background: #F9F7F2 !important;
    color: #111111 !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 !important;
    transition: opacity .38s ease, visibility .38s ease !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .overlay-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .close-btn-box {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
    background: rgba(249,247,242,.96) !important;
    border-right: 1px solid rgba(0,0,0,.08) !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3100 !important;
    margin: 0 !important;
  }

  .close-btn-box svg,
  .close-icon-svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #111111 !important;
    stroke-width: 1.4 !important;
  }

  .menu-content-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: calc(100dvh - 68px) !important;
    margin: 0 !important;
    padding: 34px 24px 44px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    overflow: visible !important;
  }

  .menu-image-col,
  .menu-image-container,
  .overlay-menu .menu-image-col,
  .overlay-menu .menu-image-container {
    display: none !important;
  }

  .menu-links-col,
  .overlay-menu .menu-links-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    text-align: left !important;
  }

  .menu-links,
  .overlay-menu .menu-links {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .menu-links li,
  .overlay-menu .menu-links li {
    width: 100% !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 14px 0 !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    align-items: baseline !important;
    border-bottom: 1px solid rgba(0,0,0,.075) !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-num,
  .overlay-menu .menu-num {
    grid-column: 1 !important;
    width: 42px !important;
    min-width: 42px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: .62rem !important;
    line-height: 1 !important;
    letter-spacing: 1.5px !important;
    color: #BFA37C !important;
    opacity: 1 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .menu-links a,
  .overlay-menu .menu-links a {
    grid-column: 2 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.05rem, 9vw, 3.05rem) !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
    color: #333333 !important;
    text-decoration: none !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .menu-links a:hover,
  .overlay-menu .menu-links a:hover {
    color: #000000 !important;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .menu-content-wrapper {
    padding: 28px 18px 38px !important;
  }

  .menu-links li,
  .overlay-menu .menu-links li {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    column-gap: 8px !important;
    min-height: 52px !important;
    padding: 12px 0 !important;
  }

  .menu-num,
  .overlay-menu .menu-num {
    width: 36px !important;
    min-width: 36px !important;
    font-size: .56rem !important;
  }

  .menu-links a,
  .overlay-menu .menu-links a {
    font-size: clamp(1.8rem, 9.5vw, 2.55rem) !important;
  }
}



@media (max-width: 991.98px) {
  html, body { overflow-x: hidden !important; }
  .top-booking-strip#bookingStrip,
  #bookingStrip.top-booking-strip,
  #bookingStrip.top-booking-strip.d-none,
  #bookingStrip.top-booking-strip.d-lg-flex {
    position: fixed !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 12px 14px 14px !important;
    background: rgba(248,247,244,0.98) !important;
    border-top: 1px solid rgba(0,0,0,0.04) !important;
    border-bottom: 1px solid rgba(0,0,0,0.10) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.10) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    z-index: 998 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }
  #bookingStrip .booking-fields-wrapper,
  #bookingStrip #bookingFields {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: end !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #bookingStrip .booking-field-new {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
  }
  #bookingStrip .booking-field-new:first-child {
    grid-column: 1 / -1 !important;
  }
  #bookingStrip .booking-field-new:last-child {
    grid-column: 1 / -1 !important;
  }
  #bookingStrip .booking-field-new label,
  #bookingStrip.top-booking-strip.scrolled .booking-field-new label,
  #bookingStrip.top-booking-strip.transparent-strip .booking-field-new label {
    display: block !important;
    margin: 0 0 6px !important;
    color: #111 !important;
    font-size: 0.58rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 1.9px !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
  }
  #bookingStrip .field-box,
  #bookingStrip input.field-box,
  #bookingStrip select.field-box,
  #bookingStrip.top-booking-strip.scrolled .field-box,
  #bookingStrip.top-booking-strip.transparent-strip .field-box {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    display: block !important;
    padding: 0 14px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 0 !important;
    background-color: rgba(0,0,0,0.055) !important;
    color: #111 !important;
    font-size: 0.86rem !important;
    line-height: 46px !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    outline: none !important;
  }
  #bookingStrip select.field-box {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 34px !important;
  }
  #bookingStrip .field-box::placeholder,
  #bookingStrip.top-booking-strip.scrolled .field-box::placeholder {
    color: rgba(17,17,17,0.48) !important;
    opacity: 1 !important;
  }
  #bookingStrip .btn-consultar-dark,
  #bookingStrip.top-booking-strip.scrolled .btn-consultar-dark {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #050505 !important;
    color: #fff !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
  }
  #bookingStrip .ocultar-toggle,
  #bookingStrip #toggleBookingBtn {
    position: absolute !important;
    top: -34px !important;
    right: 12px !important;
    height: 28px !important;
    padding: 0 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(5,5,5,0.86) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 0 !important;
    font-size: 0.54rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    z-index: 1002 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }
  #bookingStrip #toggleBookingIcon { font-size: 0.62rem !important; margin-left: 2px !important; }
  #bookingStrip.booking-mobile-collapsed {
    padding: 0 !important;
    min-height: 0 !important;
    height: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  #bookingStrip.booking-mobile-collapsed .booking-fields-wrapper,
  #bookingStrip.booking-mobile-collapsed #bookingFields {
    display: none !important;
  }
  body.has-mobile-booking { padding-top: 222px !important; }
  body.has-mobile-booking.booking-mobile-is-collapsed { padding-top: 66px !important; }
  body.has-mobile-booking .page-header,
  body.has-mobile-booking header.hero,
  body.has-mobile-booking .hero,
  body.has-mobile-booking .ballet-hero,
  body.has-mobile-booking .contact-hero,
  body.has-mobile-booking .exp-hero,
  body.has-mobile-booking .gastro-hero,
  body.has-mobile-booking .services-hero,
  body.has-mobile-booking .hero-ultra,
  body.has-mobile-booking .room-hero {
    margin-top: 0 !important;
  }
}
@media (max-width: 480px) {
  #bookingStrip.top-booking-strip,
  #bookingStrip.top-booking-strip.d-none,
  #bookingStrip.top-booking-strip.d-lg-flex {
    top: 62px !important;
    padding: 10px 12px 12px !important;
  }
  #bookingStrip .booking-fields-wrapper,
  #bookingStrip #bookingFields {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }
  #bookingStrip .booking-field-new,
  #bookingStrip .booking-field-new:first-child,
  #bookingStrip .booking-field-new:last-child {
    grid-column: 1 / -1 !important;
  }
  #bookingStrip .field-box,
  #bookingStrip input.field-box,
  #bookingStrip select.field-box {
    height: 44px !important;
    min-height: 44px !important;
    line-height: 44px !important;
    font-size: 0.82rem !important;
  }
  #bookingStrip .btn-consultar-dark { height: 46px !important; min-height: 46px !important; }
  #bookingStrip .ocultar-toggle,
  #bookingStrip #toggleBookingBtn { top: -31px !important; right: 10px !important; height: 26px !important; }
  body.has-mobile-booking { padding-top: 346px !important; }
  body.has-mobile-booking.booking-mobile-is-collapsed { padding-top: 62px !important; }
}
@media (min-width: 992px) {
  body.has-mobile-booking { padding-top: 0 !important; }
}



@media (min-width: 992px) {
  .booking-mobile-close-btn { display: none !important; }
}
@media (max-width: 991.98px) {
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip {
    position: fixed !important;
    padding-top: 42px !important;
  }
  .booking-mobile-close-btn {
    position: absolute !important;
    top: 10px !important;
    right: 12px !important;
    width: auto !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 0 2px !important;
    background: transparent !important;
    border: none !important;
    color: #111 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.56rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.7px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    z-index: 5 !important;
  }
  .booking-mobile-close-btn i {
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    border: 1px solid rgba(0,0,0,0.18) !important;
    border-radius: 50% !important;
  }
  .booking-fields-wrapper {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
}
@media (max-width: 420px) {
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip {
    padding-top: 40px !important;
  }
  .booking-mobile-close-btn { top: 9px !important; right: 10px !important; }
}



@media (max-width: 991.98px) {
  #bookingStrip.booking-mobile-force-hidden,
  #bookingStrip.booking-mobile-force-hidden.d-none,
  #bookingStrip.booking-mobile-force-hidden.d-lg-flex,
  #bookingStrip.booking-mobile-force-hidden.scrolled,
  #bookingStrip.booking-mobile-force-hidden.transparent-strip {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .booking-mobile-close-btn {
    pointer-events: auto !important;
    z-index: 9999 !important;
  }
}



@media (max-width: 991.98px) {
  body.booking-mobile-force-gap-closed {
    padding-top: 62px !important;
  }
  body.booking-mobile-force-gap-closed #bookingStrip,
  body.booking-mobile-force-gap-closed .top-booking-strip#bookingStrip {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  body.booking-mobile-force-gap-closed header,
  body.booking-mobile-force-gap-closed .hero,
  body.booking-mobile-force-gap-closed .page-header,
  body.booking-mobile-force-gap-closed .ballet-hero,
  body.booking-mobile-force-gap-closed .contact-hero,
  body.booking-mobile-force-gap-closed .exp-hero,
  body.booking-mobile-force-gap-closed .gastro-hero,
  body.booking-mobile-force-gap-closed .services-hero,
  body.booking-mobile-force-gap-closed .hero-ultra,
  body.booking-mobile-force-gap-closed .room-hero {
    margin-top: 0 !important;
  }
}



@media (max-width: 991.98px) {
  html.booking-mobile-closed,
  body.booking-mobile-closed {
    padding-top: 0 !important;
    margin-top: 0 !important;
    overflow-x: hidden !important;
  }

  html.booking-mobile-closed #bookingStrip,
  body.booking-mobile-closed #bookingStrip,
  html.booking-mobile-closed .top-booking-strip,
  body.booking-mobile-closed .top-booking-strip,
  html.booking-mobile-closed .top-booking-strip.d-none,
  body.booking-mobile-closed .top-booking-strip.d-none,
  html.booking-mobile-closed .top-booking-strip.d-lg-flex,
  body.booking-mobile-closed .top-booking-strip.d-lg-flex,
  html.booking-mobile-closed .top-booking-strip.scrolled,
  body.booking-mobile-closed .top-booking-strip.scrolled,
  html.booking-mobile-closed .top-booking-strip.transparent-strip,
  body.booking-mobile-closed .top-booking-strip.transparent-strip {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    transform: translateY(-120%) !important;
  }

  html.booking-mobile-closed header,
  body.booking-mobile-closed header,
  html.booking-mobile-closed main,
  body.booking-mobile-closed main,
  html.booking-mobile-closed .page-header,
  body.booking-mobile-closed .page-header,
  html.booking-mobile-closed header.hero,
  body.booking-mobile-closed header.hero,
  html.booking-mobile-closed .hero,
  body.booking-mobile-closed .hero,
  html.booking-mobile-closed .ballet-hero,
  body.booking-mobile-closed .ballet-hero,
  html.booking-mobile-closed .contact-hero,
  body.booking-mobile-closed .contact-hero,
  html.booking-mobile-closed .exp-hero,
  body.booking-mobile-closed .exp-hero,
  html.booking-mobile-closed .gastro-hero,
  body.booking-mobile-closed .gastro-hero,
  html.booking-mobile-closed .services-hero,
  body.booking-mobile-closed .services-hero,
  html.booking-mobile-closed .hero-ultra,
  body.booking-mobile-closed .hero-ultra,
  html.booking-mobile-closed .room-hero,
  body.booking-mobile-closed .room-hero {
    margin-top: 0 !important;
    transform: none !important;
  }

  html.booking-mobile-closed header.hero,
  body.booking-mobile-closed header.hero,
  html.booking-mobile-closed .hero,
  body.booking-mobile-closed .hero,
  html.booking-mobile-closed .page-header,
  body.booking-mobile-closed .page-header,
  html.booking-mobile-closed .ballet-hero,
  body.booking-mobile-closed .ballet-hero,
  html.booking-mobile-closed .contact-hero,
  body.booking-mobile-closed .contact-hero,
  html.booking-mobile-closed .exp-hero,
  body.booking-mobile-closed .exp-hero,
  html.booking-mobile-closed .gastro-hero,
  body.booking-mobile-closed .gastro-hero,
  html.booking-mobile-closed .services-hero,
  body.booking-mobile-closed .services-hero,
  html.booking-mobile-closed .hero-ultra,
  body.booking-mobile-closed .hero-ultra,
  html.booking-mobile-closed .room-hero,
  body.booking-mobile-closed .room-hero {
    padding-top: 62px !important;
  }
}



@media (max-width: 991.98px) {
  html.booking-mobile-closed,
  body.booking-mobile-closed,
  body.booking-mobile-closed.has-mobile-booking,
  body.booking-mobile-closed.booking-mobile-is-collapsed,
  body.booking-mobile-closed.booking-mobile-force-gap-closed {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  body.booking-mobile-closed #bookingStrip,
  body.booking-mobile-closed .top-booking-strip#bookingStrip,
  body.booking-mobile-closed .top-booking-strip,
  body.booking-mobile-closed .top-booking-strip.d-none,
  body.booking-mobile-closed .top-booking-strip.d-lg-flex,
  body.booking-mobile-closed .top-booking-strip.scrolled,
  body.booking-mobile-closed .top-booking-strip.transparent-strip,
  html.booking-mobile-closed body #bookingStrip,
  html.booking-mobile-closed body .top-booking-strip {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body.booking-mobile-closed:has(#bookingStrip) header,
  body.booking-mobile-closed:has(#bookingStrip) header.hero,
  body.booking-mobile-closed:has(#bookingStrip) .hero,
  body.booking-mobile-closed:has(#bookingStrip) .page-header,
  body.booking-mobile-closed:has(#bookingStrip) .ballet-hero,
  body.booking-mobile-closed:has(#bookingStrip) .contact-hero,
  body.booking-mobile-closed:has(#bookingStrip) .exp-hero,
  body.booking-mobile-closed:has(#bookingStrip) .gastro-hero,
  body.booking-mobile-closed:has(#bookingStrip) .services-hero,
  body.booking-mobile-closed:has(#bookingStrip) .hero-ultra,
  body.booking-mobile-closed:has(#bookingStrip) .room-hero,
  html.booking-mobile-closed body header,
  html.booking-mobile-closed body header.hero,
  html.booking-mobile-closed body .hero,
  html.booking-mobile-closed body .page-header,
  html.booking-mobile-closed body .ballet-hero,
  html.booking-mobile-closed body .contact-hero,
  html.booking-mobile-closed body .exp-hero,
  html.booking-mobile-closed body .gastro-hero,
  html.booking-mobile-closed body .services-hero,
  html.booking-mobile-closed body .hero-ultra,
  html.booking-mobile-closed body .room-hero {
    margin-top: 0 !important;
  }
}


/* V42 - Mega menu fixed local image fallback */
.overlay-menu .menu-image-container {
  background: #e6e2dc url('../static/menu-fixed.jpg') center center / cover no-repeat !important;
}
.overlay-menu .menu-image-container img#menuImage {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 1 !important;
  color: transparent !important;
  font-size: 0 !important;
}

/* V86: tamaño normal del logo principal centrado en la barra de navegación */
@media (min-width: 992px) {
  .custom-navbar .nav-center,
  nav.custom-navbar .nav-center {
    max-width: 340px !important;
    width: auto !important;
    overflow: visible !important;
  }
  .custom-navbar .nav-center > a.nav-logo-home-link,
  nav.custom-navbar .nav-center > a.nav-logo-home-link {
    max-width: 340px !important;
    width: auto !important;
    height: 80px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .custom-navbar .nav-center > a.nav-logo-home-link img,
  nav.custom-navbar .nav-center > a.nav-logo-home-link img {
    width: auto !important;
    max-width: 320px !important;
    height: auto !important;
    max-height: 34px !important;
    object-fit: contain !important;
    display: block !important;
  }
  .custom-navbar.scrolled .nav-center > a.nav-logo-home-link,
  nav.custom-navbar.scrolled .nav-center > a.nav-logo-home-link {
    height: 64px !important;
  }
  .custom-navbar.scrolled .nav-center > a.nav-logo-home-link img,
  nav.custom-navbar.scrolled .nav-center > a.nav-logo-home-link img {
    max-width: 280px !important;
    max-height: 28px !important;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .custom-navbar .nav-center,
  nav.custom-navbar .nav-center,
  .custom-navbar .nav-center > a.nav-logo-home-link,
  nav.custom-navbar .nav-center > a.nav-logo-home-link {
    max-width: 280px !important;
  }
  .custom-navbar .nav-center > a.nav-logo-home-link img,
  nav.custom-navbar .nav-center > a.nav-logo-home-link img {
    max-width: 260px !important;
    max-height: 30px !important;
  }
}


/* V154 - Fix total galería individual habitaciones */
.gallery-grid,
.gallery-section .gallery-grid {
  position: relative !important;
  z-index: 1 !important;
}
.gallery-grid .gallery-item,
.gallery-section .gallery-item {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  cursor: zoom-in !important;
  pointer-events: auto !important;
}
.gallery-grid .gallery-item img,
.gallery-section .gallery-item img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  pointer-events: none !important;
}
.gallery-grid .gallery-overlay,
.gallery-grid .zoom-icon {
  pointer-events: none !important;
}
body.room-gallery-lightbox-open {
  overflow: hidden !important;
}
.room-gallery-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(18px, 4vw, 56px) !important;
  background: rgba(0,0,0,.94) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
.room-gallery-lightbox.is-open,
.room-gallery-lightbox.active {
  display: flex !important;
}
.room-gallery-lightbox::before {
  content: '';
  position: absolute;
  inset: clamp(14px, 2vw, 28px);
  border: 1px solid rgba(191,163,124,.22);
  pointer-events: none;
}
.room-gallery-lightbox__img,
.room-gallery-lightbox img,
.room-gallery-lightbox #lightboxImg {
  position: relative !important;
  z-index: 2 !important;
  max-width: min(92vw, 1280px) !important;
  max-height: 84vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border: 1px solid rgba(191,163,124,.28) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.55) !important;
  background: #111 !important;
}
.room-gallery-lightbox__close,
.room-gallery-lightbox-close,
.lightbox-close.room-gallery-lightbox-close {
  position: absolute !important;
  top: clamp(20px, 3vw, 36px) !important;
  right: clamp(20px, 3vw, 36px) !important;
  z-index: 4 !important;
  width: 52px !important;
  height: 52px !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  font-size: 2.1rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}
.room-gallery-lightbox__nav,
.room-gallery-lightbox-nav {
  position: absolute !important;
  top: 50% !important;
  z-index: 4 !important;
  width: 56px !important;
  height: 56px !important;
  transform: translateY(-50%) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  font-size: 2.5rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}
.room-gallery-lightbox__nav:hover,
.room-gallery-lightbox__close:hover,
.room-gallery-lightbox-nav:hover,
.room-gallery-lightbox-close:hover {
  background: rgba(191,163,124,.18) !important;
  border-color: rgba(191,163,124,.55) !important;
}
.room-gallery-lightbox__prev,
.room-gallery-lightbox-prev { left: clamp(18px, 3vw, 44px) !important; }
.room-gallery-lightbox__next,
.room-gallery-lightbox-next { right: clamp(18px, 3vw, 44px) !important; }
@media (max-width: 760px) {
  .room-gallery-lightbox { padding: 64px 14px 28px !important; }
  .room-gallery-lightbox__img,
  .room-gallery-lightbox img,
  .room-gallery-lightbox #lightboxImg {
    max-width: 94vw !important;
    max-height: 72vh !important;
  }
  .room-gallery-lightbox__close,
  .room-gallery-lightbox-close { width: 44px !important; height: 44px !important; font-size: 1.8rem !important; }
  .room-gallery-lightbox__nav,
  .room-gallery-lightbox-nav { width: 44px !important; height: 44px !important; font-size: 2rem !important; top: auto !important; bottom: 18px !important; transform: none !important; }
  .room-gallery-lightbox__prev,
  .room-gallery-lightbox-prev { left: calc(50% - 52px) !important; }
  .room-gallery-lightbox__next,
  .room-gallery-lightbox-next { right: calc(50% - 52px) !important; }
}
