/* City VIP Transfer - mobile fixed header only
   Amaç: Mobilde üst bar + hamburger menü sayfa aşağı kayınca da sabit kalsın.
   Sadece .site-header alanını etkiler; panel, rezervasyon, mail ve API kodlarına dokunmaz. */

@media (max-width: 1024px) {
    html body .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 2147483000 !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        will-change: transform !important;
        background: rgba(7, 20, 41, .985) !important;
        border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, .16) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        backdrop-filter: blur(14px) !important;
    }

    html body.ctv-mobile-fixed-header-active {
        padding-top: var(--ctv-mobile-fixed-header-height, 90px) !important;
    }

    html body .site-header .nav-wrap,
    html body .site-header .nav-wide {
        position: relative !important;
        z-index: 2147483001 !important;
    }

    html body .site-header .nav-toggle {
        position: relative !important;
        z-index: 2147483003 !important;
    }

    html body .site-header .nav-menu {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 10px !important;
        right: 10px !important;
        z-index: 2147483002 !important;
        max-height: calc(100dvh - var(--ctv-mobile-fixed-header-height, 90px) - 14px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    html body.ctv-public-menu-open .site-header {
        box-shadow: 0 16px 44px rgba(0, 0, 0, .26) !important;
    }
}

@media (min-width: 1025px) {
    html body.ctv-mobile-fixed-header-active {
        padding-top: 0 !important;
    }
}
