/* ==========================================================================
   Spin & Rotation — UI Kit for Elementor
   ========================================================================== */

@keyframes uikfe-spin {
   to { transform: rotate(360deg); }
}

/* ── Always spinning ─────────────────────────────────────────────────────── */
.uikfe-spin-always img,
.uikfe-spin-always .elementor-icon {
   animation: uikfe-spin var(--uikfe-spin-duration, 3s) linear infinite;
}

/* ── Hover spinning ──────────────────────────────────────────────────────── */
.uikfe-spin-hover img,
.uikfe-spin-hover .elementor-icon {
   transition: transform var(--uikfe-spin-duration, 3s) linear;
}
.uikfe-spin-hover:hover img,
.uikfe-spin-hover:hover .elementor-icon {
   transform: rotate(360deg);
}
