/* ==========================================================================
   COMPONENT: CUSTOM PRECISION CURSOR (DESKTOP)
   ========================================================================== */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(216, 210, 197, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-precise), 
              height 0.25s var(--ease-precise), 
              border-color 0.25s var(--ease-precise),
              background-color 0.25s var(--ease-precise);
  display: none;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor, .custom-cursor-dot {
    display: block;
  }
  
  body:hover .custom-cursor.cursor-active {
    width: 64px;
    height: 64px;
    background-color: rgba(216, 210, 197, 0.08);
    border-color: var(--accent-primary);
  }
}
