How do you display the current cart item count? 🛒
```liquid
<div class="cart-icon">
<!-- How to show number of items? -->
</div>
```
### Explanation
To show the cart item count:
```liquid
{{ cart.item_count }}
{% if cart.item_count > 0 %}
Items: {{ cart.item_count }}
{% else %}
Cart is empty
{% endif %}
```
Key points:
- `cart.item_count` includes quantities
- Updates automatically with Ajax
- Available globally in theme
- Returns 0 for empty cart
Answer Options:
- {{ cart.count }}
- {{ cart.item_count }}
- {{ cart.items.size }}
- {{ cart.total_items }}