body.photo-lightbox-open {
    overflow: hidden;
}

.gallery-main {
    position: relative;
}

.gallery-zoom-button,
.photo-lightbox-close,
.photo-lightbox-nav {
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    padding: 0;
    color: #27221e;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.gallery-zoom-button {
    position: absolute;
    z-index: 4;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gallery-zoom-button:hover {
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transform: scale(1.06);
}

.gallery-zoom-button:focus-visible,
.photo-lightbox-close:focus-visible,
.photo-lightbox-nav:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.78);
    outline-offset: 3px;
}

.gallery-zoom-button svg,
.photo-lightbox-close svg,
.photo-lightbox-nav svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.photo-lightbox {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 5vh 5vw;
    background: rgba(10, 9, 9, 0.86);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.photo-lightbox-dialog {
    position: relative;
    display: grid;
    max-width: 90vw;
    max-height: 90vh;
    place-items: center;
}

.photo-lightbox-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
    touch-action: pan-y;
    user-select: none;
}

.photo-lightbox-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}

.photo-lightbox-close:hover {
    background: #fff;
    transform: scale(1.05);
}

.photo-lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.photo-lightbox-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.photo-lightbox-prev {
    left: 12px;
}

.photo-lightbox-next {
    right: 12px;
}

.photo-lightbox-counter {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 12px;
    min-width: 58px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    background: rgba(13, 12, 12, 0.62);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    font: 600 12px/1 Arial, sans-serif;
    text-align: center;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

@media (max-width: 600px) {
    .gallery-zoom-button {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
    }

    .photo-lightbox-close {
        top: 8px;
        right: 8px;
    }

    .photo-lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .photo-lightbox-prev {
        left: 8px;
    }

    .photo-lightbox-next {
        right: 8px;
    }

    .photo-lightbox-counter {
        bottom: 8px;
    }
}
