/**
 * Custom Cursor Styles v2
 * Base class for custom cursor activation.
 * Actual cursor rules are injected dynamically by custom-cursors.js
 * based on the selected set and accent color.
 * Desktop only — touch devices never load the engine.
 */

/* Reduced motion: disable custom cursors */
@media (prefers-reduced-motion: reduce) {
    html.custom-cursor-active,
    html.custom-cursor-active * {
        cursor: auto !important;
    }
}
