/**
 * WoodMart hide-larger-price hides .price > span:nth-child(2).
 * WooCommerce 10+ variable ranges put the en-dash in that span.
 */
.hide-larger-price .price:has(> .amount + span:not(.amount):not(.screen-reader-text) + .amount) {
	word-spacing: normal !important;
	visibility: visible !important;
}
.hide-larger-price .price:has(> .amount + span:not(.amount):not(.screen-reader-text) + .amount) > span:nth-child(2) {
	display: inline !important;
	margin-inline: 0.25em;
}
