/* ============================================================
   PhotoViewer — zoom & pan plein écran sur la photo modale existante
   ============================================================ */
.photo-modal {
  overflow: hidden;
  touch-action: none;
}

.photo-modal-img.pv-img {
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  transition: transform 0.05s linear;
  will-change: transform;
}

.photo-modal-img.pv-img.pv-zoomed { cursor: grab; }
.photo-modal-img.pv-img.pv-dragging { cursor: grabbing; transition: none; }
