{{ t('yourCart') }}
📦
{{ getLocalizedField(item, 'name') }}
{{ t('brand') }}: {{ item.brand }}
{{ item.quantity }}
{{ formatPrice(item.price * item.quantity) }}
{{ formatPrice(item.price) }} × {{ item.quantity }}
{{ t('orderSummary') }}
{{ t('subtotal') }} ({{ cartItemsCount }} {{ t('items') }})
{{ formatPrice(subtotal) }}
{{ t('discount') }}
{{ formatPrice(discount) }}
{{ t('shipping') }}
{{ shippingCost === 0 ? t('free') : formatPrice(shippingCost) }}
{{ t('total') }}
{{ formatPrice(total) }}
← {{ t('continueShopping') }}