/* Avecena Gloves — Animation Styles */
.hero-eyebrow { animation: fadeInUp 0.7s ease 0.1s both; }
.hero-title { animation: fadeInUp 0.7s ease 0.25s both; }
.hero-brand-line { animation: fadeInUp 0.7s ease 0.35s both; }
.hero-subtitle { animation: fadeInUp 0.7s ease 0.45s both; }
.hero-cta { animation: fadeInUp 0.7s ease 0.55s both; }
.hero-product-showcase { animation: fadeInUp 0.8s ease 0.4s both; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.shape-1 { animation: float 9s ease-in-out infinite; }
.shape-2 { animation: float 11s ease-in-out infinite reverse; }
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(16px, -16px); }
}

.counter-number.counted { animation: countPop 0.45s ease; }
@keyframes countPop {
    0% { transform: scale(0.85); opacity: 0.6; }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}
