/* ==========================================================
   Image Protection (Frontend Deterrents Only)
   ========================================================== */

/* Prevent text selection */
img,
.protected-image {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;

    -webkit-user-drag: none;
    user-drag: none;

    pointer-events: auto;
}

/* Prevent accidental highlighting */
.protected-image * {
    user-select: none;
}

/* Optional helper class */
.no-select {
    user-select: none;
}