:is(.watched, .recommendations) {
    width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    h2 {
        color: rgba(45, 47, 46, 0.73);
        font-size: 16px;
        font-weight: 400;
        text-transform: lowercase;
    }
    .products {
        display: grid;
        grid-template-columns: repeat(4, minmax(237px, 1fr));
        overflow-x: auto;
        scrollbar-width: 0;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 11px;
        &::-webkit-scrollbar {
            display: none;
        }
        .product-item {
            aspect-ratio: 442/464;
            scroll-snap-align: center;
        }
    }
}
.watched {
    margin-bottom: 80px;
}
.recommendations {
    margin-bottom: 100px;
}
@media screen and (max-width: 1500px) {
    .watched {
        margin-bottom: 40px;
    }
    .recommendations {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 1279px) {
    .scrollPage :is(.watched, .recommendations) {
        width: 100%;
        gap: 13px;
        h2 {
            margin: 0 20px;
        }
        .products {
            display: flex;
            gap: 8px;
            .product-item {
                flex-shrink: 0;
                width: clamp(280px, 24%, 100%);
                &:first-child {
                    margin-left: 20px;
                }
                &:last-child {
                    margin-right: 20px;
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .scrollPage :is(.watched, .recommendations) {
        width: 100%;
        h2 {
            margin: 0 10px;
        }
        .products .product-item {
            max-width: 47vw;
            &:first-child {
                margin-left: 10px;
            }
            &:last-child {
                margin-right: 10px;
            }
        }
    }
}