.fv-search-page--catalog {
    width: 100%;
}

.fv-search-page--catalog .fv-search-sidebar {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
}

.fv-search-page--catalog .fv-search-filter-form {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.fv-search-page--catalog .fv-search-filter-title {
    font-size: 16px;
}

.fv-search-page--catalog .fv-search-filter-head {
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.fv-search-page--catalog .fv-search-filter-head:hover {
    background: rgba(67, 90, 163, 0.06);
}

.fv-search-page--catalog .fv-search-filter-head:focus-visible {
    outline: 2px solid #435aa3;
    outline-offset: 3px;
}

.fv-search-page--catalog .fv-search-sidebar-close {
    display: none;
    margin-left: auto;
    margin-bottom: 8px;
    border: 0;
    background: #435aa3;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.fv-search-sidebar-toggle {
    display: none;
}

@media screen and (max-width: 900px) {
    .fv-search-page--catalog {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: #f7f7f7;
        overflow-y: auto;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 10px 15px 15px;
        box-sizing: border-box;
    }

    .fv-search-page--catalog.is-open {
        transform: translateX(0);
    }

    .fv-search-page--catalog .fv-search-sidebar-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .fv-search-sidebar-toggle {
        display: inline-flex;
        position: fixed;
        left: 15px;
        bottom: 70px;
        width: 40px;
        height: 40px;
        z-index: 1000;
        border: 0;
        border-radius: 50%;
        box-shadow: 0 0 15px rgb(0 0 0 / 30%);
        background: #fff;
        color: #435aa3;
        font-size: 11px;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
    }
}
