/**
 * BugHerd #371 — Shop filter typography.
 * Labels at 14px weight 600 (were too bold); count in parentheses set to 14px to match
 * the label (it was rendering 16px) and weight 400. Scoped to the shop/archive filter panel.
 */

#pp-shop-filters .facetwp-display-value {
	font-weight: 600 !important;
}

#pp-shop-filters .facetwp-counter {
	font-size: 14px !important;
	font-weight: 400 !important;
}

/**
 * BugHerd #466 — the radio-facet "Any" (reset) option doesn't match the sibling options.
 * FacetWP wraps the other options' text in .facetwp-display-value (forced to 14px / weight 600),
 * but the "Any" reset row's text is a direct child of .facetwp-radio with no span, so it falls
 * back to the row's inherited 16px / lighter weight. Match the whole radio row to 14px + weight
 * 600 so "Any" lines up (harmless to siblings — their span and the counter are already 14px).
 */
#pp-shop-filters .facetwp-type-radio .facetwp-radio {
	font-size: 14px !important;
	font-weight: 600 !important;
}
