.article-products__slider {
    width: 100%;
}

.article-products__slider .swiper-wrapper {
    align-items: stretch;
}

.product-lite {
    width: 211px;
    height: auto;
    margin-right: 16px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-lite:last-child {
    margin-right: 0;
}

.product-lite__image {
    position: relative;
}

.product-lite__image img {
    aspect-ratio: 21 / 20;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.product-lite__tags {
    padding: 10px;
}

.product-lite__volume {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.product-lite__title {
    color: #343E4A;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
}

.product-lite__oneprice {
    color: #92969A;
    font-size: 12px;
    font-weight: 400;
    line-height: 133%;
}

.product-lite__buttons {
    display: flex;
    gap: 8px;
}

.product-lite__addCart {
    padding: 9px;
    flex-grow: 1;
}

.product-lite__favourite {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #F3F4F5;
}

@media screen and (max-width: 992px) {
    .article-products {
        margin: 10px 0 15px;
    }
}