-
{{lang 'cart.checkout.subtotal'}}:
{{#or customer (if theme_settings.restrict_to_login '!==' true)}}
{{cart.sub_total.formatted}}
{{else}}
{{> components/common/login-for-pricing}}
{{/or}}
{{#if cart.gift_wrapping_cost.amount}}
-
{{lang 'cart.checkout.gift_wrapping'}}:
{{cart.gift_wrapping_cost.formatted}}
{{/if}}
{{#if cart.shipping_handling.show_estimator}}
-
{{lang 'cart.checkout.shipping'}}:
{{> components/cart/shipping-estimator cart.shipping_handling}}
{{/if}}
{{#each cart.taxes}}
{{#unless included}}
-
{{name}}:
{{cost.formatted}}
{{/unless}}
{{/each}}
{{#if cart.discount }}
-
{{lang 'cart.discount'}}:
{{cart.discount.formatted}}
{{/if}}
{{#if cart.coupons}}
{{#each cart.coupons}}
-
{{lang 'cart.coupons.code_label' code=code}}
{{discount.formatted}}
{{/each}}
{{else}}
-
{{lang 'cart.coupon_code'}}:
{{> components/cart/coupon-input}}
{{/if}}
-
{{lang 'cart.checkout.grand_total'}}:
{{#or customer (if theme_settings.restrict_to_login '!==' true)}}
{{cart.grand_total.formatted}}
{{else}}
{{> components/common/login-for-pricing}}
{{/or}}
{{#each cart.taxes}}
{{#if included}}
-
{{concat name (lang 'cart.included_in_total')}}:
{{cost.formatted}}
{{/if}}
{{/each}}