/* Standard window-price carousel: image-only zoom, without moving prices or controls. */
@media (min-width: 992px) {
    html body .price_slide_all #carousel_2 .carousel-inner .item .col-md-5 {
        overflow: hidden;
    }

    html body .price_slide_all #carousel_2 .carousel-inner .item .col-md-5 > img.lazy {
        display: block;
        cursor: zoom-in;
        transform: scale(1);
        transform-origin: center center;
        transition: transform 1.3s cubic-bezier(.22, 1, .36, 1) !important;
        will-change: transform;
    }

    html body .price_slide_all #carousel_2 .carousel-inner .item .col-md-5:hover > img.lazy {
        transform: scale(1.075) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .price_slide_all #carousel_2 .carousel-inner .item .col-md-5 > img.lazy {
        transition: none !important;
    }
}
