/* ── Anora Lightbox ─────────────────────────────────────────────────────── */
#anora-lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 24px;
    box-sizing: border-box;
}

#anora-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

/* Image */
#anora-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.25s ease;
    display: block;
}

#anora-lightbox.is-open #anora-lightbox-img {
    transform: scale(1);
}

/* Close button */
#anora-lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 100000;
}

#anora-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
}