/* ── Cursor Hover Effect — structural styles only ────────────────────────── */
/* Visual styles (color, bg, size, radius) come from Elementor selectors.    */

.glidy-hc-el {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  user-select: none;

  /* Initial hidden state — GSAP controls opacity/scale */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;

  /* Defaults overridden by Elementor selectors */
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 50%;
  white-space: nowrap;
  overflow: hidden;
}

.glidy-hc-el i,
.glidy-hc-el svg {
  pointer-events: none;
  flex-shrink: 0;
  font-size: 1em;
}