/* ============================================
   ANIMATIONS — SellerPay Site v2
   GSAP-driven + CSS fallbacks
   ============================================ */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee__track { animation: none; }
    .floating-card { animation: none; }
}

/* Floating cards subtle animation */
.floating-card--1 {
    animation: float-1 6s ease-in-out infinite;
}
.floating-card--2 {
    animation: float-2 7s ease-in-out infinite;
    animation-delay: -3s;
}
@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}
