/* AYA Custom Cursor (theme-level; disabled automatically on touch and reduced motion) */

.aaya-cursor,
.aaya-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 2147483647;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 200ms ease;
}

.aaya-cursor {
  background: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.aaya-cursor-follower {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.aaya-cursor-enabled .aaya-cursor,
body.aaya-cursor-enabled .aaya-cursor-follower {
  opacity: 1;
}

body.aaya-cursor-enabled,
body.aaya-cursor-enabled a,
body.aaya-cursor-enabled button,
body.aaya-cursor-enabled input,
body.aaya-cursor-enabled textarea,
body.aaya-cursor-enabled select {
  cursor: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .aaya-cursor,
  .aaya-cursor-follower {
    display: none !important;
  }
  body.aaya-cursor-enabled,
  body.aaya-cursor-enabled * {
    cursor: auto !important;
  }
}
