/*
 * The booking-summary template (templates/forms/bookingform/summary.php)
 * renders each ticket row and the grand total with a data-amount attribute
 * holding the raw numeric price. For free tickets/events that's exactly "0"
 * (cast from float(0)), so we can target it precisely without touching
 * paid line items.
 */

/* Hide an individual ticket row's price when that ticket is free */
.em-booking-summary .em-bs-row-item[data-amount="0"] .em-bs-cell-price {
	display: none;
}

/* Hide the "Total Price" row entirely when the booking's grand total is zero */
.em-booking-summary[data-amount="0"] .em-bs-section-total {
	display: none;
}