/* Основные стили */

/* Lightbox стили */
#lightbox {
    transition: opacity 0.3s ease;
}

#lightbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

#lightbox.hidden {
    display: none !important;
}

#lightbox-image {
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}