/**
 * Premium custom cursor — desktop only (activated via JS).
 */

body.fatone-custom-cursor,
body.fatone-custom-cursor a,
body.fatone-custom-cursor button,
body.fatone-custom-cursor .fatone-btn,
body.fatone-custom-cursor label,
body.fatone-custom-cursor [role="button"] {
  cursor: none !important;
}

body.fatone-custom-cursor input,
body.fatone-custom-cursor textarea,
body.fatone-custom-cursor select,
body.fatone-custom-cursor [contenteditable="true"] {
  cursor: text !important;
}

.fatone-cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fatone-cursor.is-visible {
  opacity: 1;
}

.fatone-cursor.is-hidden {
  opacity: 0;
}

.fatone-cursor-dot,
.fatone-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  will-change: transform;
  pointer-events: none;
}

.fatone-cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--fatone-primary);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.fatone-cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 95, 99, 0.45);
  background: rgba(26, 95, 99, 0.04);
  z-index: 1;
  transition:
    width 0.4s var(--fatone-ease),
    height 0.4s var(--fatone-ease),
    margin 0.4s var(--fatone-ease),
    border-color 0.4s var(--fatone-ease),
    background 0.4s var(--fatone-ease),
    opacity 0.3s ease;
}

.fatone-cursor-ring.is-hover {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-color: rgba(26, 95, 99, 0.75);
  background: rgba(26, 95, 99, 0.08);
}

.fatone-cursor-ring.is-pressed {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-color: var(--fatone-primary);
  background: rgba(26, 95, 99, 0.14);
}

.fatone-cursor-ring.is-link {
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  border-color: var(--fatone-primary);
  background: rgba(26, 95, 99, 0.1);
}
