/* منع تحديد النص (يقلل النسخ بالماوس) */
body, .product-description, .product-content {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* تعطيل الضغط المطوّل ونسخ الصور في الجوال */
* {
  -webkit-touch-callout: none;
}

/* منع سحب الصور (Drag) وحفظها بالسحب */
img {
  -webkit-user-drag: none;
  user-drag: none;
}