/**
 * Digitalease Theme - Homepage Reviews Lightbox
 * 
 * Lightbox pentru imaginile din review-uri.
 * Split din features/reviews/homepage.css pentru modularizare.
 * 
 * @package Digitalease
 * @since 2.1.0
 */

/* =============================================================================
   LIGHTBOX PENTRU IMAGINILE DIN REVIEW-URI
   ============================================================================= */

.homepage-reviews-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.homepage-reviews-lightbox.hidden {
    display: none;
}

.homepage-reviews-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.homepage-reviews-lightbox .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage-reviews-lightbox .lightbox-image {
    width: auto;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.homepage-reviews-lightbox .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    transition: color 0.2s ease;
}

.homepage-reviews-lightbox .lightbox-close:hover {
    color: #590202;
}

/* =============================================================================
   SCROLL LOCK
   ============================================================================= */

html.homepage-lightbox-open {
    overflow: hidden;
}

body.homepage-lightbox-open {
    position: absolute !important;
    width: 100%;
}
