/* =========================
   MINIATURY POD WPIS
========================= */

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.gallery-thumb {
    width: 140px;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* =========================
   MODAL FULLSCREEN
========================= */

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.gallery-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* =========================
   SWIPER
========================= */

.gallery-swiper {
    width: 100%;
    height: 100%;
}

.gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    height: 100%;
}

/* =========================
   OBRAZEK + ZOOM
========================= */

.gallery-swiper img {
    display: block;
    object-fit: contain;   /* KLUCZ */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    cursor: zoom-in;
}

/* =========================
   CLOSE BUTTON
========================= */

.gallery-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 34px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

/* =========================
   ARROWS (opcjonalnie poprawka)
========================= */

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}
