/* Lightweight UX deterrents against casual media saving/copying */
/* Note: This does NOT prevent screenshots or motivated users. */

/* Apply to common media elements */
img, picture, video, canvas, svg {
  -webkit-user-drag: none; /* Safari/Chrome */
  user-select: none;       /* Modern browsers */
  -webkit-touch-callout: none; /* iOS Safari long-press menu */
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* reduce tap highlight */
}

/* Also disable text selection on figure wrappers that often contain images */
figure, .image, .media, .gallery, .hero, .product-image {
  user-select: none;
}
