/* ── Custom Cursor ── */
/* Override UA defaults (pointer on a, button, input, etc.) */
* {
  cursor: url("../assets/img/keyblade-cursor.webp") 43 42, auto !important;
}

/* Magnifier active — hide cursor on lens + zoom target */
/* Higher-specificity !important beats the universal rule above */
.magnifier-lens,
[data-zoom].no-cur {
  cursor: none !important;
}
