.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}