/* ===============================
   ZOOM THE WORLD – CLEAN GALLERY
   =============================== */

/* Container wirklich zentriert */
.pswp__container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Zoom-Wrap neutralisieren */
.pswp__zoom-wrap {
  position: relative !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Bild */
.pswp__img {
  max-width: 68vw !important;
  max-height: 68vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;

  transform: none !important;              /* PS Transform kill */
  position: relative !important;

  /* Floating Look */
  box-shadow: 0 20px 60px rgba(0,0,0,0.55) !important;
  border-radius: 6px !important;
}

/* Placeholder aus */
.pswp__img--placeholder {
  display: none !important;
}

/* Background */
.pswp__bg {
  background: radial-gradient(circle at center, #0b0b0b 0%, #000 70%) !important;
}

/* UI ruhig */
.pswp__top-bar {
  background: transparent !important;
}

/* Pfeile */
.pswp__button--arrow {
  opacity: 0.6 !important;
  transition: opacity 0.3s ease;
}
.pswp__button--arrow:hover {
  opacity: 1 !important;
}
