/* Custom animations for cookie banner */
@keyframes particleFall {
    0% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

@keyframes cookieBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.animate-particle-fall {
    animation: particleFall 3s linear forwards;
}

.animate-cookie-bounce {
    animation: cookieBounce 2s infinite;
}

.animate-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 0.5s ease-in-out;
}

.progress-glow {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.progress-bar-fill {
    width: 0%;
}

.cookie-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}