/* Responsive Mobile Menu */
#btn-menu-mobile {
    display: none !important;
}

@media (max-width: 991.98px) {
    #btn-menu-mobile {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        color: #fff;
    }

    .boots-header--global .boots-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff !important;
        border-bottom: 1px solid #eee;
        padding: 1rem;
        display: none !important;
        z-index: 99999 !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .boots-header--global .boots-menu.show {
        display: block !important;
    }

    .boots-header--global .boots-menu-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .boots-header--global .boots-menu-item {
        width: 100%;
        margin: 0 !important;
        padding: 0.5rem 0;
        display: block !important;
    }

    .boots-header--global .boots-menu-link {
        display: block !important;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1.1rem;
        color: #000 !important;
        text-decoration: none;
    }
}

@media (min-width: 992px) {
    .boots-header--global .boots-menu {
        display: flex !important;
    }
}