/* Keep this stylesheet intentionally minimal so the section inherits the
   same product-card and Owl behavior as Customer Favorites. */

.home-section-recently-viewed {
    background: #F8F8F8;
}

.home-section-recently-viewed.hidden {
    display: none !important;
}

/* Product page only: prevent carousel from bleeding beyond content container. */
#productGeneral #home-section-recently-viewed {
    overflow: hidden;
    width: 100vw;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    padding-top:3rem;
    padding-bottom:3rem;
    margin-bottom: -3rem;
}
#productGeneral #home-section-recently-viewed .owl-stage-outer {
    overflow:hidden;
    margin-right:-3px;
}
#productGeneral #home-section-recently-viewed .wrapper {
    width:calc(100% - 120px);
    max-width: 1560px;
    margin: 0 auto;
}
@media (max-width:1024px) {
    #productGeneral #home-section-recently-viewed .wrapper {
        width:calc(100% - 60px)
    }
}
@media (max-width:575px) {
    #productGeneral #home-section-recently-viewed .wrapper {
        width:calc(100% - 30px);
    }
}

@media (min-width:786px) {
    #home-section-recently-viewed .homepage-recently-viewed-slider.recently-viewed-compact-grid {
        display: grid;
        grid-template-columns: repeat(var(--rvp-cols, 4), minmax(0, 1fr));
        gap: 10px;
    }

    #home-section-recently-viewed .homepage-recently-viewed-slider.recently-viewed-compact-grid .home-section-product-item {
        width: 100%;
        max-width: 100%;
    }
}