/* SERSEO GALLERY – LIGHTBOX */

/* Pełnoekranowy overlay */
#sgp-lightbox {
    display: none; /* startowo ukryty – JS pokazuje przez fadeIn */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;

    /* Te właściwości tu mogą zostać,
       ale bez display:flex nie mają wpływu */
    justify-content: center;
    align-items: center;
}

/* Tło do kliknięcia (zamknięcie) */
.sgp-lb-bg {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

/* Zdjęcie w lightboxie – CENTROWANIE */
.sgp-lb-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
    z-index: 2;

    display: block;
    margin: 0;
    object-fit: contain;
}

/* X – zamknięcie */
.sgp-lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 3;
}

/* Strzałki na boki */
.sgp-lb-prev,
.sgp-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    cursor: pointer;
    z-index: 3;
    user-select: none;
    padding: 0 15px;
}

.sgp-lb-prev {
    left: 20px;
}

.sgp-lb-next {
    right: 20px;
}

.sgp-lb-prev:hover,
.sgp-lb-next:hover,
.sgp-lb-close:hover {
    color: #ddd;
}

/* Mobile */
@media (max-width: 600px) {
    .sgp-lb-prev,
    .sgp-lb-next {
        font-size: 36px;
    }

    .sgp-lb-close {
        font-size: 30px;
        right: 20px;
    }
}
