/* Hide cart count initially to prevent showing wrong number */
.cart-products-count {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* Will be set to opacity: 1 by JavaScript once correct count is loaded */
.cart-products-count.loaded {
    opacity: 1;
}
