
.main-products{
    position: relative;
    background: #F8F9FA;
    border-bottom: 1px solid var(--Grey_1, #D7D8DA);
    padding-top: 24px;
}

.main-products__container{
    position: absolute;
    left: 0;
    right: 0;
    top: 24px;
    z-index: 2;
}

.main-products__head .h2{
    color: var(--black, #202124);
    font-feature-settings: 'liga' off, 'clig' off;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    margin: 0 0 24px;
    padding: 0;
}

.product-carousel {
    padding: 165px 0 44px;
}
.product-carousel__group {
    display: flex;
}

.product-carousel .product.swiper-slide{
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-carousel .product.swiper-slide .product__info{
    display: flex;
    flex-direction: column;
}

.product {
    width: 200px;
    background: var(--white, #FFF);
    box-shadow: 0 5px 50px 0 rgba(18, 17, 39, 0.10);
    backdrop-filter: blur(2px);
}
.product__image {
    width: 100%;
    height: 200px;
    object-position: center;
    object-fit: cover;
}

.product__head .product__image{
    height: 100%;
}

.product__info {
    padding: 6px 12px 20px;
    position: relative;
    background-color: var(--white);
}

.product__title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    align-self: stretch;
    margin: 0 0 8px;
    text-decoration: none;
    color: var(--black);
    transition: opacity .3s;
    cursor: pointer;
}

.product__title:hover{
    opacity: .6;
}

.product__head{
    background: #F6F6F7;
    box-shadow: 0 5px 50px 0 rgba(18, 17, 39, 0.10);
    backdrop-filter: blur(2px);
    height: 200px;
    width: 100%;
    cursor: pointer;
    transition: opacity .3s;
}

.product__head:hover{
    opacity: .6;
}

.product__like{
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 8px;
    display: none;
}

.product__attributes{
    margin: 0;
    padding: 0;
}

.product__attributes-item{
    padding: 0;
    list-style-type: none;
    display: grid;
    margin: 0 0 4px;
    column-gap: 8px;
    grid-template-columns: repeat(2, calc(50% - 4px));
}

.product__attributes .product__attributes-item:nth-last-child(1){
    margin: 0;
}

.product__attributes-title{
    margin: 0;
    padding: 0;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
}

.product__attributes-description{
    margin: 0;
    padding: 0;
    color: var(--grey-5, #5F6368);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
}

@media (min-width: 48rem) {
    .product-carousel{
        padding: 180px 0 120px;
    }

    .main-products__head{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-products .min-title{
        margin: 48px 0 8px;
    }

    .main-products__head .h2{
        margin: 0;
        padding: 0;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 52px */
    }

    .product__head{
        height: 230px;
    }

    .product__title{
        font-size: 16px;
    }

    .product__attributes-item{
        margin: 0 0 8px;
    }

    .product__attributes .product__attributes-item:nth-last-child(1){
        margin: 0;
    }

    .product__info{
        padding: 8px 12px 12px;
    }

    .product{
        width: 230px;
    }
}
