/*
|--------------------------------------------------------------------------
| CATEGORY PRODUCTS PAGE
|--------------------------------------------------------------------------
*/

.fv-category-page {
    min-height: 650px;

    background:
        #ffffff;

    color:
        #333333;
}


/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.fv-category-page-container {
    width:
        min(
            1190px,
            calc(
                100% - 32px
            )
        );

    margin-inline:
        auto;
}


/*
|--------------------------------------------------------------------------
| LAYOUT
|--------------------------------------------------------------------------
*/

.fv-category-page-layout {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        18px;

    padding-top:
        14px;
}


/*
|--------------------------------------------------------------------------
| SIDEBAR
|--------------------------------------------------------------------------
*/

.fv-category-desktop-sidebar {
    width:
        190px;

    flex:
        0 0 190px;
}


/*
|--------------------------------------------------------------------------
| RESULTS
|--------------------------------------------------------------------------
*/

.fv-category-results {
    min-width: 0;

    flex: 1;
}


/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.fv-category-products-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap:
        30px 24px;

    padding:
        30px 12px
        20px;
}


/*
|--------------------------------------------------------------------------
| LIST
|--------------------------------------------------------------------------
*/

.fv-category-products-list {
    display:
        grid;

    grid-template-columns:
        1fr;

    padding:
        20px 12px;
}


/*
|--------------------------------------------------------------------------
| EMPTY
|--------------------------------------------------------------------------
*/

.fv-category-empty {
    min-height:
        300px;

    display: flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #8a9098;

    font-size:
        14px;
}


/*
|--------------------------------------------------------------------------
| IMPORTANT
|--------------------------------------------------------------------------
|
| Old loading/error blocks hidden.
|
|--------------------------------------------------------------------------
*/

.fv-category-loading,
.fv-category-error {
    display:
        none !important;
}


/*
|--------------------------------------------------------------------------
| TABLET
|--------------------------------------------------------------------------
*/

@media (
    max-width: 1050px
) {

    .fv-category-products-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            24px 16px;
    }

}


/*
|--------------------------------------------------------------------------
| SMALL TABLET
|--------------------------------------------------------------------------
*/

@media (
    max-width: 850px
) {

    .fv-category-page-layout {
        gap:
            12px;
    }


    .fv-category-desktop-sidebar {
        width:
            180px;

        flex-basis:
            180px;
    }


    .fv-category-products-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (
    max-width: 720px
) {

    .fv-category-page {
        min-height:
            500px;
    }


    .fv-category-page-container {
        width:
            100%;

        padding:
            0 12px;
    }


    .fv-category-page-layout {
        display:
            block;

        padding-top:
            0;
    }


    .fv-category-desktop-sidebar {
        display:
            none;
    }


    .fv-category-products-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            14px 8px;

        padding:
            14px 0
            10px;
    }


    .fv-category-products-list {
        padding:
            6px 0;
    }

}