/**
 * Lightbox preview for AI print thumbnails on the cart and checkout pages.
 */

.sw-ai-cart-thumbnail {
    cursor: zoom-in;
}

.sw-ai-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.88);
}

.sw-ai-lightbox.active {
    display: flex;
}

.sw-ai-lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}

.sw-ai-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.sw-ai-lightbox-close:hover {
    background: rgba(255,255,255,0.22);
}

body.sw-ai-lightbox-open {
    overflow: hidden;
}
