/**
 * Protection des visuels — site entier.
 * Complète image-protection.js (clic droit, glisser-déposer, sélection).
 */
img,
picture,
picture img,
video,
svg[data-protect-image="true"],
[data-protect-image="true"] img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
}

/* Fonds image inline (cartes œuvres, hero…) */
[style*="background-image"]:not([data-allow-image-save="true"]) {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.image-protection-active {
  -webkit-touch-callout: none;
}
