#mensCategory {
    max-height: 2600px;
    overflow-y: auto;
    padding-left: 0;
    margin-bottom: 15px;
}

.subcategories {
    margin-left: 20px;
    list-style: none;
    padding-left: 0;
}

.toggle-subcategories {
    padding-inline: 5px !important;
    margin-bottom: 5px !important;
    background-color: transparent;
    border: none;
}

@media (max-width: 767.98px) {

    .menu-sidebar {
        display: none;
    }

    .filter-menu-mobile form {
        padding-inline: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #f8f9fa;
    }
}

.menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
}

.menu-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
}

.close-menu-mobile {
    background: none;
    border: none;
    font-size: 4rem;
    cursor: pointer;
    color: #000000;
}

.menu-mobile.active {
    left: 0;
}

@media (min-width: 768px) {

    .menu-mobile {
        display: none;
    }

    #menuMobile {
        position: static;
        width: 100%;
        height: auto;
        box-shadow: none;
        overflow: visible;
        transition: none;
    }

    .menu-mobile-header {
        display: none;
    }
}