.products-section__grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}
.products-section__title{
    margin-bottom: 40px;
}
.products-section__grid--md{
    grid-template-columns: 1fr 1fr 1fr;
}
.products-section__row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    position: relative;
}
.products-section__title{
    margin-bottom: 24px;
}

@media screen and (max-width:1024px) {
    .products-section__grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .products-section__row{
        flex-wrap: wrap;
    }
}

@media screen and (max-width:600px) {
    .products-section__grid{
        grid-template-columns: 1fr 1fr;
    }
}

.product-card{
    display: block;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #DADDE7;
    transition: .3s;
    height: 100%;
}
.product-card:hover{
    border-color: var(--orange-color);
}
.product-card--populars{
    border: none;
    background: #f9feff;
}
.product-card__img{
    position: relative;
    padding-bottom: 100%;
}
.product-card__img img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.product-card__labels{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    gap: 8px;
}
.product-card__label{
    font-weight: 400;
    font-size: 14px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 8px;
    border: 1px solid #DADDE7;
}
.product-card__content{
    margin-top: 24px;
}
.product-card__title{
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
}
.product-card--populars .product-card__title{
    font-weight: 400;
    font-size: 15px;
    transition: .3s;
}
.product-card__link{
    margin-top: 24px;
}
.product-card--populars:hover{
    background-color: #fff;
}
.product-card--populars:hover .product-card__title{
    color: var(--orange-color);
}
@media screen and (max-width:425px) {
    .product-card{
        padding: 10px;
    }
}

@media screen and (min-width:641px) {
    .sales-slider .swiper-pagination--general{
        display: none;
    }
}
@media screen and (max-width:640px) {
    .sales-slider .slider-head__nav{
        display: none;
    }
}


.categories-col{
    flex: 0 0 auto;
    width: 25%;
}
.categories-list li{
    margin-bottom: 16px;
}
.categories-list li.active a{
    color: var(--orange-color);
    pointer-events: none;
}
.categories-list__btn{
    border-bottom: 1px dashed;
    transition: .3s;
}
.categories-list__btn:hover, .categories-list a:hover{
    color: var(--orange-color);
}
.categories-col .main-filter{
    margin-bottom: 10px;
}
@media screen and (max-width:900px) {
    .categories-col{
        width: 30%;
    }
}
@media screen and (max-width:1024px) {
    .categories-col, .products-block{
        width: 100%;
    }
    
}