# CartItem
The `item` object represents a single line item in the shopping cart. It exposes product details, pricing, quantity, customizations, and attributes for each cart entry.
## Usage Example
```liquid
{%- comment -%} Render all items in the cart {%- endcomment -%}
{% for item in cart.items %}
-
{% if item.image %}
{% endif %}
{{ item.title }}
Qty: {{ item.quantity }} × {{ item.unit_price | money_with_currency }}
Line total: {{ item.line_price | money_with_currency }}
{% if item.customizations.size > 0 %}
{% for c in item.customizations %}
- {{ c.group_name }}: {{ c.value }}
{% endfor %}
{% endif %}
{% endfor %}
```
## Properties
### is_linkable
Tells whether this item is linkable in the store.
### id
Returns the unique identifier for this line item.
### product_id
Returns the associated product ID for this line item.
### requires_shipping
Indicates if this item requires shipping.
### category_path
Returns the category path used when the product was added to the cart.
### url
Returns the product URL for this item as used when added to the cart.
### gtin
Returns the product GTIN (Global Trade Item Number).
### model
Returns the product model number for this item.
### manufacturer
Returns the manufacturer for this product.
### type
Returns the item type (e.g., product, bundle, or gift_card).
### attributes
Returns the selected attributes for this item as an array.
### title
Returns the title of this line item.
### description
Returns the description of this line item.
### attributes_label
Returns a comma-separated list of selected attributes for this item.
### customizations
Returns the customizations applied to this cart line item.
### image
Returns the image URL for this line item, if available.
### deliverytime
Returns the delivery time in days for this item.
### quantity
Returns the quantity of this item in the cart.
### line_price
Returns the total price for this line item (quantity x unit price).
### net_price
Returns the net price (excluding tax) for this line item.
### unit_price
Returns the unit price for this item.
### rate
Returns the tax rate for this item as a decimal.
### tax
Returns the tax amount for this line item.
### stock_out
Indicates if this item is sold out and cannot be purchased.
### weight_in_grams
Returns the weight of this item in grams.
### shipping_weight_in_grams
Returns the shipping weight of this item in grams.
### unit_name
Returns the unit name for this item (e.g., piece, kg).