/* === LUXURY HEADER === */
        .site-header {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            z-index: 1002 !important;
            background-color: transparent;
            padding: 20px 0;
            border-bottom: 1px solid transparent;
            transition: background-color 0.4s ease, padding 0.3s ease, border-bottom-color 0.4s ease, backdrop-filter 0.4s ease;
        }

        .site-header.scrolled {
            background-color: rgba(27, 24, 23, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .site-header.menu-open {
            background-color: rgba(27, 24, 23, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .header-container {
            max-width: 1536px !important;
            margin: 0 auto !important;
            padding: 0 40px !important;
            display: flex !important;
            flex-direction: row !important;
            justify-content: space-between !important;
            align-items: center !important;
            width: 100% !important;
        }

        .site-logo {
            width: auto !important;
            max-width: 300px !important;
            height: 40px !important;
            object-fit: contain !important;
            flex-shrink: 0 !important;
            display: block !important;
            position: relative;
            z-index: 1003;
            opacity: 0;
            animation: logoReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
        }

        @keyframes logoReveal {
            0% {
                filter: blur(12px);
                transform: scale(1.08);
                opacity: 0;
            }

            100% {
                filter: blur(0);
                transform: scale(1);
                opacity: 1;
            }
        }

        .main-nav {
            display: block !important;
        }

        .main-nav .nav-list {
            display: flex !important;
            flex-direction: row !important;
            gap: 35px !important;
            align-items: center !important;
        }

        .main-nav a.nav-item {
            font-family: 'Source Sans 3', sans-serif !important;
            font-size: 18px !important;
            font-weight: 500 !important;
            letter-spacing: 0.5px !important;
            color: #FFFFFF !important;
            position: relative;
            padding-bottom: 4px;
        }

        .main-nav a.nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FA5B00;
            transition: width 0.3s ease;
        }

        .main-nav a.nav-item:hover {
            color: #FA5B00 !important;
        }

        .main-nav a.nav-item:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 25px !important;
            position: relative;
            z-index: 1003;
        }

        .social-icons {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 15px !important;
        }

        .social-icons svg {
            width: 20px !important;
            height: 20px !important;
            fill: #FFFFFF !important;
            transition: fill 0.3s ease !important;
            display: block !important;
        }

        .social-icons a:hover svg {
            fill: #FA5B00 !important;
        }

        .btn-whatsapp {
            padding: 16px 32px !important;
            font-size: 18px !important;
            background-color: #FA5B00 !important;
            color: #F7F2EE !important;
            font-weight: 600 !important;
            border-radius: 8px !important;
            border: none !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            white-space: nowrap !important;
        }

        .site-header .btn-whatsapp {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
        }

        .site-header .btn-whatsapp.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mobile-nav-btn {
            display: none !important;
        }

        .mobile-toggle {
            display: none !important;
            background: none !important;
            border: none !important;
            color: #FFFFFF !important;
            cursor: pointer !important;
            z-index: 1005;
        }

        .mobile-socials {
            display: none !important;
        }

        /* === MOBILE MENU OVERLAY === */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        /* === HOLIDAY MODAL === */
        .holiday-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            padding: 20px;
        }

        .holiday-modal-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        body.modal-open {
            overflow: hidden;
        }

        .holiday-modal {
            background-color: #1B1817;
            border: 1px solid rgba(250, 91, 0, 0.2);
            border-radius: 12px;
            width: 100%;
            max-width: 500px;
            padding: 40px 20px 40px 40px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.5s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            text-align: center;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }

        .holiday-modal-content {
            overflow-y: auto;
            padding-right: 20px;
            -webkit-overflow-scrolling: touch;
        }

        /* Custom scrollbar for modal content */
        .holiday-modal-content::-webkit-scrollbar {
            width: 4px;
        }
        .holiday-modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        .holiday-modal-content::-webkit-scrollbar-thumb {
            background: rgba(250, 91, 0, 0.5);
            border-radius: 4px;
        }
        .holiday-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(250, 91, 0, 0.8);
        }

        .holiday-modal-overlay.is-visible .holiday-modal {
            transform: translateY(0);
        }

        .holiday-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #a0a0a0;
            font-size: 32px;
            cursor: pointer;
            transition: color 0.3s;
            line-height: 1;
            padding: 0;
            z-index: 10;
        }

        .holiday-modal-close:hover {
            color: #FA5B00;
        }

        .holiday-kicker {
            display: block;
            color: #FA5B00;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 600;
            font-family: 'Source Sans 3', sans-serif;
        }

        .holiday-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: #FFFFFF;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .holiday-desc {
            color: #EAEAEA;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .holiday-desc strong {
            color: #FFFFFF;
        }

        .holiday-hours-box {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: left;
            font-family: 'Source Sans 3', sans-serif;
            color: #EAEAEA;
            font-size: 16px;
            line-height: 1.5;
        }

        .holiday-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: #FA5B00;
            color: #F7F2EE !important;
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 28px;
            border-radius: 8px;
            text-decoration: none;
            width: 100%;
        }

        @media (max-width: 768px) {
            .holiday-modal {
                padding: 40px 10px 30px 20px;
                max-height: 85vh;
            }
            .holiday-modal-content {
                padding-right: 10px;
            }
            .holiday-modal-close {
                top: 10px;
                right: 15px;
            }
        }