/* ===== Anti-select (fallback CSS) ===== */
html, body, * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* ===== Anti-print: „ascunde” tot la print ===== */
@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
  }
}

/* ===== Watermark opțional peste tot site-ul (comentat by default) ===== */
/*
body::before {
  content: 'SHOPPING CITY • DO NOT COPY';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2147483646;
  font: 700 32px/1 Arial, sans-serif;
  color: rgba(0,0,0,.08);
  white-space: pre;
  transform: rotate(-30deg);
  background:
     repeating-linear-gradient(-30deg,
       transparent 0, transparent 32px,
       currentColor 32px, currentColor 34px);
}
*/