/* Image protection — visual deterrents.
 * Targets any image served from /image/catalog/ or /image/cache/catalog/
 * (= product photos). Watermark on the image itself is added server-side. */
img[src*="/image/catalog/"],
img[src*="/image/cache/catalog/"],
.product-thumb img,
.thumbnail img,
.image-additional img,
.product-zoom-image,
.additional-images img,
.sub-image img,
.swiper-slide img,
.lightbox img,
.mfp-img,
.ptzoom-container img,
.ptzoom-zoom {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-touch-callout: none;
}
