/* =========================================================
   HG Listing Widget — price summary + $/night removal
   ========================================================= */

/* Hide the $/night price on property listing pages only.
   WordPress adds .single-property to <body> on property CPT singles. */
body.single-property .homelocal-booking-widget .rent-unit {
	display: none !important;
}

/* Hide the native "Total" row — replaced by our three-line summary */
.homelocal-booking-widget .homelocal-booking-overview .total {
	display: none !important;
}

/* ── Price summary ──────────────────────────────────────── */
.hg-lw-summary {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hg-lw-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
	font-size: 0.9rem;
	color: #555;
}

.hg-lw-row--total {
	font-weight: 700;
	font-size: 0.975rem;
	color: #111;
	margin-top: 8px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
