.catalog{
    position: relative;

    .catalog-bg{
        position: absolute;
        z-index: -1;
        top: -260px;
        right: 0;

        @media screen and (max-width: 1024px) {
            display: none;
        }
    }

    .catalog-title{
        display: flex;
        align-items: center;
        gap: 30px;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 110px;

        @media screen and (max-width: 768px){
            gap: 10px;
            margin-bottom: 50px;
            img{
                width: 41px;
                height: 41px;
            }
        }
    }

    .catalog-btns{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        .catalog-btn-left{
            display: flex;
            flex-direction: row;
            gap: 24px;
            align-items: center;
        }

        @media screen and (max-width: 1024px) {
            .catalog-btn-left{
                width: 70%;
            }

            .catalog-sort,
            .catalog-filter{
                width: 50%;
            }
        }

        @media screen and (max-width:600px){
            .catalog-filter{
                display: none;
            }

            .catalog-sort{
                width: 100%;
            }

            .catalog-all-filter{
                span{
                    display: none;
                }
            }
        }
    }

    .catalog-available{
        display: block;

        @media screen and (max-width: 1024px){
            display: none;
        }
    }

    .catalog-sort,
    .catalog-filter{
        width: 320px;
        padding: 15px 0;
        border-radius: 10px;
        border: 2px solid #E0E1E5;
        background-color: #fff;
        padding-left: 20px;
        font-weight: 600;
        position: relative;
        cursor: pointer;

        &::before{
            content:"";
            position: absolute;
            width: 9px;
            height: 10px;
            background-image: url(../img/Polygon.svg);
            background-repeat: no-repeat;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    .catalog-btn-right{
        .catalog-all-filter{
            display: flex;
            align-items: center;
            gap: 18px;
            font-weight: 600;
        }
        button{
            background-color: transparent;
            border: 0;
            outline: none;
            cursor: pointer;
            padding: 0;
        }
    }

    .products{
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 24px 0;
        .product-card{
            width: 24%;

            @media screen and (max-width: 1024px){
                width: 30%;
            }

            @media screen and (max-width: 600px){
                width: 48%;
            }
        }
    }

}