/* Gallery CSS */
.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    align-items: center;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.gallery-img {
    margin: 0 20px;
    max-height: 420px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    transform: scale(0.8);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.gallery-img.active {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.gallery-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #c9b26a;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
    stroke: #c9b26a;
    stroke-width: 2;
    fill: none;
}

.gallery-btn:hover {
    background-color: #f9d616;
    border-color: #f9d616;
}

.gallery-btn:hover svg {
    stroke: #000;
}
.gallery-wrapper {
    position: relative;
    z-index: 1;
}

.gallery-track {
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .gallery-wrapper,
    .gallery-track {
        z-index: 1;
    }
}
