#cart-count.htmx-swapping {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.25s ease;
}
#cart-count.htmx-added {
    opacity: 1;
    transform: scale(1);
    transition: all 0.25s ease;
}
