@media (max-width: 768px) {
    body.store-has-mobile-dock {
        padding-bottom: 5rem;
    }
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.animate-bounce-subtle {
    animation: bounce-subtle 2s infinite ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .animate-bounce-subtle {
        animation: none;
    }
}
