/**
 * cursor.css — Custom cursor follower (desktop only)
 *
 * Portado del prototipo (rework-prototipo/assets/css/styles.css L66-90).
 * UNLAYERED — debe persistir sobre cualquier @layer del child o GP.
 *
 * @package SmartCateringChild
 */

@media (hover: hover) and (pointer: fine) {
  .sc-cursor-dot,
  .sc-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }

  .sc-cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
  }

  .sc-cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: width 0.2s ease-out, height 0.2s ease-out;
  }

  .sc-cursor-ring.is-hover {
    width: 60px;
    height: 60px;
  }

  body.scc-has-cursor:hover { cursor: none; }
  body.scc-has-cursor a,
  body.scc-has-cursor button,
  body.scc-has-cursor input,
  body.scc-has-cursor textarea,
  body.scc-has-cursor select { cursor: none; }
}

@media (prefers-reduced-motion: reduce) {
  .sc-cursor-dot,
  .sc-cursor-ring { display: none !important; }
}
