/* Force le curseur sur les miniatures */
.gallery-item img, .wp-block-gallery img, .gallery-icon img {
    cursor: zoom-in !important;
}

/* L'overlay (fond noir) */
.wsp-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    display: none; /* Piloté par le JS */
    justify-content: center;
    align-items: center;
    z-index: 9999999 !important;
    cursor: zoom-out;
}

/* L'image dans la popup */
.wsp-overlay img {
    display: block !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    border: 4px solid #ffffff;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    opacity: 1 !important;
    visibility: visible !important;
}