/*-----------------------------
HEADER
-----------------------------*/
.products-recommendations__header {
    border-top: 0.5px solid black;
    border-bottom: 0.5px solid black;
}
.products-recommendations__header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    @media (max-width: 1920px) {
        height: calc(100vw * 90 / 1920);
    }
    @media (max-width: 1280px) {
        height: 60px;
    }
}
.products-recommendations__header__link:hover {
    opacity: 0.5;
}

.swiper-products-recommendations .product-card {
    width: calc(100vw * 548.7687 / 1920);
    @media (max-width: 680px) {
        width: 223px;
    }
}

.swiper-products-recommendations .product-card.orientation-h {
    width: calc(100vw * 548.7687 / 1920 * 2);
    @media (max-width: 680px) {
        width: calc(223px * 2);
    }
}

.swiper-products-recommendations .product-item__img img,
.swiper-products-recommendations .product-item__img video {
    height: calc(100vw * 754.3031 / 1920);
    @media (max-width: 680px) {
        height: 306px;
    }
}

.swiper-products-recommendations .swiper-slide {
    width: max-content;
}
.swiper-products-recommendations .swiper-slide:last-child .product-card {
    border-right: 0;
}
