body.wpm-modal-open {
    overflow: hidden;
}

/* Overlay = pantalla completa */
#wpm-overlay {
    position: fixed;
    inset: 0;
    background: #fff; /* fondo blanco */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal fullscreen */
.wpm-modal {
    width: 100%;
    height: 100%;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    will-change: opacity, transform;
}

.wpm-modal.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Contenido centrado */
.wpm-modal-content {
    max-width: 800px;
    padding: 32px;
    text-align: center;
}

/* Imagen */
.wpm-modal-content img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Texto */
.wpm-description {
    font-size: 18px;
    margin-bottom: 24px;
}

/* Botón cerrar */
.wpm-close {
    position: absolute;
    top: 24px;
    right: 24px;

    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}
