/* Wrapper */
.mp-pg-wrapper {
  position: relative;
}

/* Główny slider */
.mp-pg-main {
  margin-bottom: 12px;
}

.mp-pg-main .swiper-slide {
  text-align: center;
}

.mp-pg-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Thumbs – desktop */
.mp-pg-thumbs {
  margin-top: 8px;
}

.mp-pg-thumbs .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
}

.mp-pg-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.mp-pg-thumb-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Dots – domyślnie włączone (mobile) */
.mp-pg-pagination {
  margin-top: 8px;
}

/* Desktop – ukrywamy kropki, zostawiamy tylko thumbs */
@media (min-width: 769px) {
  .mp-pg-pagination {
    display: none;
  }
}

/* Mobile – ukrywamy miniatury, zostają kropki */
@media (max-width: 768px) {
  .mp-pg-thumbs {
    display: none;
  }
}

/* LIGHTBOX */
.mp-pg-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mp-pg-lightbox-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mp-pg-lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.mp-pg-lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mp-pg-lightbox-inner img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.mp-pg-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}



/* Strzałki w lightboxie */
.mp-pg-lightbox-prev,
.mp-pg-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  background: rgba(0,0,0,.4);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mp-pg-lightbox-prev {
  left: -50px;
}

.mp-pg-lightbox-next {
  right: -50px;
}

@media (max-width: 768px) {
  .mp-pg-lightbox-prev,
  .mp-pg-lightbox-next {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
  }

  .mp-pg-lightbox-prev {
    left: 6px;
  }

  .mp-pg-lightbox-next {
    right: 6px;
  }
}


/* Telefony – zdjęcia w sliderze nie większe niż 250px */
@media (max-width: 450px) {
  .mp-pg-main .swiper-slide img.mp-pg-image {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Małe tablety / większe telefony – max 350px */
@media (min-width: 451px) and (max-width: 787px) {
  .mp-pg-main .swiper-slide img.mp-pg-image {
    max-width: 350px;
    margin: 0 auto;
  }
}
