/* ── LIGHTBOX ── */
[data-lightbox] {
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    animation: lightbox-fade-in 0.2s ease;
}

.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

@keyframes lightbox-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
