/* Only applied on pointer devices — JS skips init on touch screens */
.cursor-heart {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  font-size: 16px;
  /* offset so the heart tip sits near the actual pointer */
  margin-top: -20px;
  margin-left: -8px;
  will-change: transform;
  /* no transition here — the JS lerp handles the smoothness */
}
