/* A page-only photo system for the actions page: replaces the inherited grey outlines. */
html body .vo-actions-photo-style .row > [class*="col-"]:has(> img.lazy) {
    position: relative;
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(255, 170, 131, .62);
    border-radius: 17px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 15px 32px rgba(35, 55, 51, .13);
}

html body .vo-actions-photo-style .row > [class*="col-"]:has(> img.lazy) > img.lazy {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    outline: 0 !important;
    border: 0 !important;
    border-radius: 11px;
    background: transparent !important;
    transform: scale(1) translateZ(0);
    transition: transform 1.3s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

html body .vo-actions-photo-style .rassrochka > .col-md-10 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    margin-top: 8px;
    padding: 22px !important;
    border-color: rgba(255, 170, 131, .78);
    border-radius: 20px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 170, 131, .17), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,248,244,.94));
    box-shadow: 0 18px 38px rgba(35, 55, 51, .14);
}

html body .vo-actions-photo-style .rassrochka > .col-md-10 > img.lazy {
    width: 100% !important;
    max-width: 880px !important;
    margin: 0 auto !important;
    border: 7px solid #fff !important;
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(35, 55, 51, .13);
}

@media (min-width: 992px) {
    html body .vo-actions-photo-style .row > [class*="col-"]:has(> img.lazy):hover > img.lazy {
        transform: scale(1.055) translateZ(0);
    }
}

@media (max-width: 991px) {
    html body .vo-actions-photo-style .rassrochka > .col-md-10 { min-height: 0; padding: 13px !important; }
}

@media (max-width: 767px) {
    html body .vo-actions-photo-style .row > [class*="col-"]:has(> img.lazy) { border-radius: 13px; }
    html body .vo-actions-photo-style .rassrochka > .col-md-10 > img.lazy { border-width: 4px !important; }
}

@media (prefers-reduced-motion: reduce) {
    html body .vo-actions-photo-style .row > [class*="col-"]:has(> img.lazy) > img.lazy { transition: none; }
}
