/**
 * Protection du contenu SIMECO.CI (copie, glisser-déposer images)
 * Note : une capture d'écran OS ne peut pas être bloquée à 100 % dans un navigateur.
 */
html.simeco-content-protected,
html.simeco-content-protected body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html.simeco-content-protected input,
html.simeco-content-protected textarea,
html.simeco-content-protected select,
html.simeco-content-protected [contenteditable='true'],
html.simeco-content-protected .allow-copy,
html.simeco-content-protected .allow-copy * {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Page contact uniquement : email, téléphone, liens mailto/tel */
html.simeco-content-protected.simeco-contact-page .contact-copyable,
html.simeco-content-protected.simeco-contact-page .contact-copyable *,
html.simeco-content-protected.simeco-contact-page a[href^='mailto:'],
html.simeco-content-protected.simeco-contact-page a[href^='tel:'] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

html.simeco-content-protected img,
html.simeco-content-protected picture,
html.simeco-content-protected svg.simeco-protected-media,
html.simeco-content-protected video {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

html.simeco-content-protected a img,
html.simeco-content-protected button img {
  pointer-events: none;
}

@media print {
  html.simeco-content-protected body {
    display: none !important;
  }
  html.simeco-content-protected body::before {
    content: 'Impression non autorisée — SIMECO.CI';
    display: block;
    padding: 2rem;
    font-family: sans-serif;
  }
}
