/* Custom Cursor — site-wide (not admin) */
body:not(.wp-admin) {
  cursor: none;
}
body:not(.wp-admin) a,
body:not(.wp-admin) button,
body:not(.wp-admin) .btn,
body:not(.wp-admin) input,
body:not(.wp-admin) textarea,
body:not(.wp-admin) [role="button"] {
  cursor: none;
}
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: #ff8718;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255, 135, 24, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover { width: 16px; height: 16px; background: #fff; }
.cursor-ring.hover { width: 48px; height: 48px; border-color: rgba(255, 255, 255, 0.6); }

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}
