/* Lightbox Overlay — Solid White */
.omay-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}
.omay-lightbox.is-visible { opacity: 1; }
.omay-lightbox img {
    max-width: 96vw;
    max-height: 94vh;
    object-fit: contain;
    cursor: default;
}
.omay-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #2C2C2C;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.3s;
    line-height: 1;
    z-index: 1;
}
.omay-lightbox__close:hover { opacity: 1; }
.omay-lightbox__prev,
.omay-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #2C2C2C;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.3s;
    padding: 1rem;
    z-index: 1;
}
.omay-lightbox__prev { left: 8px; }
.omay-lightbox__next { right: 8px; }
.omay-lightbox__prev:hover,
.omay-lightbox__next:hover { opacity: 1; }
