.gallery-container {
    width: 100%;
    height: 100dvh; /* Tüm ekran yüksekliği kadar */
    perspective: 1000px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 0; /* Mobilde üstte boşluk bırakmamak için */
}

.gallery-track {
    display: flex;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}

.gallery-slide {
    flex: 0 0 60vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center center;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.5s;
    position: relative;
    margin: 0 10px;
}

    .gallery-slide.active {
        opacity: 1;
        transform: scale(1.25);
        z-index: 2;
    }

    .gallery-slide img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        object-fit: contain;
    }

/* Tam ekran görüntüleme */
.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .fullscreen img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
    }
