${
// Show sale price (compare_at_price) which is the price before the sale if item is on sale,
// not original_price which is the price after the sale.
(item.compare_at_price ? item.compare_at_price : item.original_price) * item.quantity | currencyFromCents
}
${ item.final_line_price | currencyFromCents }