A CSS class which is appended to the html
tag when the user cart is empty.
Hiding the cart quantity number in the header not to show “(0)”:
<span class="header__cart-quantity">
(
<span data-ajax-cart-bind="item_count">
{{ cart.item_count }}
</span>
)
</span>
html.js-ajax-cart-empty .header__cart-quantity {
display: none;
}