/* ═══════════════════════════════════════════════════════════════
   WOOKIT CORE — Spinner
   Loading spinner used in buttons and overlays.
   ═══════════════════════════════════════════════════════════════ */

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

.wookit-btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid color-mix(in srgb, var(--wookit-accent-fg, #fff) 35%, transparent);
    border-top-color: var(--wookit-accent-fg, #fff);
    border-radius: 50%;
    animation: wookit-spin .6s linear infinite;
    flex-shrink: 0;
}
