/* ─── Custom Cursor ───────────────────────────────────────────
   Hotspot: 7 7 (center of target circle)
   Fallback: auto / pointer for browsers that don't support SVG cursors
─────────────────────────────────────────────────────────────── */

html,
body,
* {
  cursor: url('../cursor/default.svg') 12 12, auto;
}

a,
button,
[role="button"],
label[for],
select,
input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="radio"],
.eitorf-btn,
.eitorf-btn-primary,
.eitorf-btn-secondary,
.eitorf-btn-outline,
.eitorf-btn-ghost,
.eitorf-btn-danger,
.eitorf-chip,
.eitorf-bookmark-btn,
.btn-magnetic-wrap,
[data-filter-key] {
  cursor: url('../cursor/pointer.svg') 12 12, pointer;
}

/* text fields keep native text-cursor for usability */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
  cursor: text;
}
