/* Mobile booking CTA: a dedicated second-tier bar beneath the logo/menu row. */
@media only screen and (max-width: 1200px) {
    :root {
        --henko-mobile-header-offset: 119px;
    }

    html {
        scroll-padding-top: var(--henko-mobile-header-offset);
    }

    body {
        padding-top: var(--henko-mobile-header-offset);
    }

    #mobile-header {
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9000;
    }

    body.admin-bar #mobile-header {
        top: 32px;
    }

    #mobile-header .mobile-header-inner {
        height: 70px;
        min-height: 70px;
    }

    #mobile-header .mobile-header-inner .row {
        flex-wrap: nowrap;
    }

    #mobile-header .henko-mobile-header-logo-column {
        flex: 0 0 150px;
        max-width: 150px;
    }

    #mobile-header .henko-mobile-header-actions {
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
        max-width: none;
        padding-left: 0;
    }

    #mobile-header .henko-mobile-booking-bar {
        width: 100%;
        background: #cbc3bb;
    }

    #mobile-header .henko-mobile-book-now {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 12px 24px;
        border: 0;
        border-radius: 0;
        background: #cbc3bb;
        color: #000001;
        font-family: "Jost", sans-serif;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 2px;
        line-height: 24px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
    }

    #mobile-header .henko-mobile-book-now:hover,
    #mobile-header .henko-mobile-book-now:focus-visible {
        background: #ded7d0;
        color: #000001;
    }

    #mobile-header .henko-mobile-book-now:focus-visible {
        outline: 2px solid #ffffff;
        outline-offset: 3px;
    }

    #mobile-header .henko-mobile-header-actions .mobile-header-navigation-btn {
        display: inline-flex;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: flex-end;
    }

    #mobile-header .mobile-header-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 782px) {
    body.admin-bar #mobile-header {
        top: 46px;
    }
}
