Subtotal ({{ splitMethod === 'dishes' ? 'dishes' : 'bill' }}):
${{ billBreakdown.subtotal.toFixed(2) }}
Tax ({{ splitMethod === 'dishes' ? taxPercent : evenTaxPercent }}%):
${{ billBreakdown.taxAmount.toFixed(2) }}
Tip ({{ splitMethod === 'dishes' ? computedDishTipPercent.toFixed(1) : computedEvenTipPercent.toFixed(1) }}%):
(${{ billBreakdown.subtotal.toFixed(2) }} + ${{ billBreakdown.taxAmount.toFixed(2) }}) × {{ tipPercent }}%
${{ billBreakdown.subtotal.toFixed(2) }} × {{ tipPercent }}%
(${{ billBreakdown.subtotal.toFixed(2) }} + ${{ billBreakdown.taxAmount.toFixed(2) }}) × {{ evenTipPercent }}%
${{ billBreakdown.subtotal.toFixed(2) }} × {{ evenTipPercent }}%
Fixed Tip Amount
${{ billBreakdown.tipAmount.toFixed(2) }}
Total:
${{ billBreakdown.total.toFixed(2) }}