/* Premium loading animation for cart badge */
#cart-count.cart-loading {
    opacity: 0.4;
    transform: scale(0.85);
    animation: cartBadgePulse 0.9s ease-in-out infinite;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

@keyframes cartBadgePulse {
    0% {
        transform: scale(0.85);
        opacity: 0.4;
    }
    50% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(0.85);
        opacity: 0.4;
    }
}

/* Smooth reveal when JS updates the count */
#cart-count {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
