/* ========================================
   VANITY LIGHTBOX — Luxury Lightbox Component
   ======================================== */

.vanity-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 50000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vanity-lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

/* Close button */
.vanity-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #D8B96F;
    font-size: 32px;
    cursor: pointer;
    z-index: 50002;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.vanity-lightbox-close:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Navigation arrows */
.vanity-lightbox-prev,
.vanity-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #D8B96F;
    font-size: 40px;
    cursor: pointer;
    z-index: 50002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
    padding: 0;
}

.vanity-lightbox-prev {
    left: 15px;
}

.vanity-lightbox-next {
    right: 15px;
}

.vanity-lightbox-prev:hover,
.vanity-lightbox-next:hover {
    color: #fff;
}

/* Image container */
.vanity-lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 85vh;
}

.vanity-lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    transition: opacity 0.25s ease;
}

/* Counter */
.vanity-lightbox-counter {
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(216, 185, 111, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Caption */
.vanity-lightbox-caption {
    margin-top: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 600px;
}

/* Hide arrows if only one image */
.vanity-lightbox-overlay[data-single="true"] .vanity-lightbox-prev,
.vanity-lightbox-overlay[data-single="true"] .vanity-lightbox-next,
.vanity-lightbox-overlay[data-single="true"] .vanity-lightbox-counter {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .vanity-lightbox-prev {
        left: 5px;
        font-size: 30px;
        width: 40px;
    }

    .vanity-lightbox-next {
        right: 5px;
        font-size: 30px;
        width: 40px;
    }

    .vanity-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .vanity-lightbox-image {
        max-width: 95vw;
        max-height: 75vh;
    }
}
