/* SMT WP Customize – archive price filter bar */

.smtwpc-price-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35em 0.75em;
	width: 100%;
	margin: 0 0 1.25em;
	padding: 0;
	clear: both;
	font-size: 0.95em;
	line-height: 1.5;
}

.smtwpc-price-filter__label {
	font-weight: 600;
	color: inherit;
	white-space: nowrap;
}

.smtwpc-price-filter__list {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.15em 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.smtwpc-price-filter__item {
	display: inline-flex;
	align-items: baseline;
	margin: 0;
	padding: 0;
}

.smtwpc-price-filter__item:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 0.85em;
	margin: 0 0.65em;
	background: currentColor;
	opacity: 0.25;
	vertical-align: middle;
}

.smtwpc-price-filter__link {
	color: inherit;
	text-decoration: none;
	opacity: 0.85;
	border-bottom: 1px solid transparent;
}

.smtwpc-price-filter__link:hover,
.smtwpc-price-filter__link:focus {
	opacity: 1;
	text-decoration: underline;
	outline: none;
}

.smtwpc-price-filter__link.is-active {
	opacity: 1;
	font-weight: 600;
	border-bottom-color: currentColor;
	text-decoration: none;
}

@media (max-width: 600px) {
	.smtwpc-price-filter {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5em;
	}
}
