/*
 * Fatin Image Protection
 * Intentionally limited to interaction behavior only.
 * No sizing, spacing, positioning, color, opacity or pointer-events changes.
 */

img {
	-webkit-user-drag: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

/* Applied by the JavaScript after detection; kept explicit for maintainability. */
img[data-fatin-image-protected="true"] {
	-webkit-user-drag: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}
