/* Cadre fixe 2px, non-scalé, sans interaction */
.pswp__fixed-frame {
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  border: 2px solid #adadad;
  opacity: 0; /* rendu visible au premier zoomPanUpdate */
}

/* Fond optionnel pour rendre opaques les PNG/WebP transparents */
/* .pswp__img--opaque-bg {
  background-color: #141414;
} */

.pswp__img--opaque-bg {
  background: linear-gradient(135deg, #141414 0%, #2b2b2b 50%, #141414 100%);
}
img.pswp-opaque-bg.alignnone {
  border: 0 !important;
  box-shadow: none !important;
}

/* Indicateur loupe uniquement sur les liens marqués .pswp-opaque-bg (data flag ajouté en JS) */
a.pswp-item.pswp-opaque-bg[data-pswp-opaque-bg="1"] {
  position: relative;
  display: inline-block;
}

a.pswp-item.pswp-opaque-bg[data-pswp-opaque-bg="1"]::after {
  content: '';
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(20, 20, 20, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23fff' stroke-width='2' fill='none'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cline x1='16' y1='16' x2='21' y2='21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

a.pswp-item.pswp-opaque-bg[data-pswp-opaque-bg="1"]:hover::after {
  background-color: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}
