/* FBM Header Sticky */
.fbm-header {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* FBM Header Base Styles */
.fbm-header .header__inner-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Mobile Header Adjustments */
@media (max-width: 1199px) {
    /* Hide the entire navigation block on mobile */
    .fbm-header .navbar-block {
        display: none;
    }

    /* Ensure the standalone "Call Now" button is visible on mobile */
    .fbm-header > .container > .header__inner-block > .btn-wrapper {
        display: block !important;
        width: auto;
        white-space: nowrap;
    }

    .fbm-header .header__inner-block {
        flex-wrap: nowrap;
    }

    .fbm-header .mbl-links {
        flex-grow: 1;
    }
}

/* Desktop Header Adjustments */
@media (min-width: 1200px) {
    /* Hide the mobile button container on desktop */
    .fbm-header .mbl-links .btn-wrapper {
        display: none;
    }
}
