body.store .product-image img,
body.store .product-gallery img,
body.store .cart-thumb img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.image-protection-notice {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 15px);
  max-width: calc(100% - 30px);
  padding: 11px 16px;
  border-radius: 5px;
  background: #211f2f;
  color: #fff;
  font: 13px/1.4 Arial, sans-serif;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.image-protection-notice.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
