/* ----------------------------------------------------------------- */
.filters-mobile {
    display: none;
}

@media (min-width: 240px) and (max-width: 992px) {
    .filters-desktop {
        display: none;
    }
    .filters-mobile {
        display: flex;
        width: 2rem;             /* адаптивная ширина */
        height: 2rem;            /* адаптивная высота */
        align-items: center;
        justify-content: center;
        border: none;
        background: none;
        padding:0;
        gap: 5px;
    }
    .filters-mobile img {
        display: flex;
        width: 24px;
        height: auto;
    }
    .offcanvas-filters-mobile{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}