#gallery__fullscreen {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    backdrop-filter: blur(0);
    justify-content: center;
    align-items: center;
    z-index: 200;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

.open--gallery__fullscreen {
    backdrop-filter: blur(6px) !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    transform: translateY(0) !important;
}

#gallery__fullscreen__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#gallery__fullscreen__close {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}