.gallery-trigger {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.gallery-trigger img {
    transition: transform 0.3s ease;
}
.carousel__button{
	color: #fff !important;
}
.gallery-trigger:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.wbl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbl-lightbox[hidden] {
    display: none;
}

.wbl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.wbl-stage {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbl-img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.wbl-close,
.wbl-prev,
.wbl-next {
    position: absolute;
    z-index: 2;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s ease;
}

.wbl-close:hover,
.wbl-prev:hover,
.wbl-next:hover {
    opacity: 0.7;
}

.wbl-close {
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
}

.wbl-prev,
.wbl-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
}

.wbl-prev {
    left: 1.25rem;
}

.wbl-next {
    right: 1.25rem;
}

.wbl-prev[disabled],
.wbl-next[disabled] {
    opacity: 0.2;
    cursor: default;
}