.galeri-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.90);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    touch-action: none; 
}

.galeri-modal.aktif {
    display: flex;
}

.galeri-resim-alani {
    width: 80vw;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.galeri-buyuk-resim {
    display: block;
    width: auto;
    height: auto;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease; 
    cursor: zoom-in;
    touch-action: manipulation; 
}

.galeri-kapat {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: white;
    font-size: 45px;
    line-height: 45px;
    cursor: pointer;
    z-index: 10001;
    transition: 0.2s;
}

.galeri-kapat:hover {
    transform: scale(1.15);
}

.galeri-ok {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 70px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: 0.2s;
}

.galeri-ok:hover {
    background-color: rgba(255, 255, 255, 0.30);
}

.galeri-sol {
    left: 25px;
}

.galeri-sag {
    right: 25px;
}

@media (max-width: 768px) {

    .galeri-resim-alani {
        width: 80vw;
        height: 75vh;
    }

    .galeri-buyuk-resim {
        max-width: 75vw;
        max-height: 70vh;
    }

    .galeri-ok {
        width: 45px;
        height: 60px;
        font-size: 30px;
    }

    .galeri-sol {
        left: 10px;
    }

    .galeri-sag {
        right: 10px;
    }

    .galeri-kapat {
        top: 10px;
        right: 15px;
        font-size: 38px;
    }
}

@media (max-width: 480px) {

    .galeri-resim-alani {
        width: 78vw;
        height: 65vh;
    }

    .galeri-buyuk-resim {
        max-width: 72vw;
        max-height: 60vh;
    }

    .galeri-ok {
        width: 40px;
        height: 55px;
        font-size: 26px;
    }

    .galeri-sol {
        left: 5px;
    }

    .galeri-sag {
        right: 5px;
    }

    .galeri-kapat {
        top: 8px;
        right: 10px;
        font-size: 35px;
    }
}