/* OVERLAY */
.suite-lightbox-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(251, 248, 244, 0.92); /* Ritz cream */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.35s ease;
}


.suite-lightbox-overlay.visible {
    opacity: 1;
}

/* IMAGE CONTAINER */
.suite-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suite-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease;
}

/* NAV BUTTONS */
.suite-lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.6rem;
    color: #0A1A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.suite-lightbox-btn:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.08);
}

.suite-lightbox-btn.prev { left: -60px; }
.suite-lightbox-btn.next { right: -60px; }

/* CLOSE BUTTON */
.suite-lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    color: #0A1A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.suite-lightbox-close:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.08);
}

/* COUNTER */
.suite-lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    opacity: 0.85;
}
