.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
}

.lightbox-image-wrapper {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.lightbox-close:hover {
    opacity: 1;
}

/* Стилі для галереї на мобільних пристроях (ширина екрана до 768px) */
@media (max-width: 768px) {
  
    
 

.gallery .gallery-item {
    flex: 1;
        padding: 0 2px 0px!important;
    max-width: 16.666%;
}
}