/* -------------------------------------------------------------------
 * Shop Suche: Filter Sidebar + Toolbar
 * ---------------------------------------------------------------- */

.itemSearchCols {
	display: flex;
	gap: 2em;
	align-items: flex-start;
}

.itemSearchFilters {
	width: 320px;
	min-width: 260px;
}

@media (max-width: 980px) {
	.itemSearchCols { flex-direction: column; }
	.itemSearchFilters { width: 100%; min-width: 0; }
}

.UISearchFilterSidebarActions {
	margin: 0 0 1em;
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
}

.UIFilterResetLink {
	font-size: 12px;
	text-decoration: underline;
}

.UIFilterBox {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background: #fff;
	margin: 0 0 1em;
}

.UIFilterBoxHeader {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .75em 1em;
	background: #fff;
	border: 0;
	cursor: pointer;
	font-weight: 700;
}

.UIFilterBoxChevron {
	transition: transform .15s ease;
}

.UIFilterBox.is-collapsed .UIFilterBoxChevron {
	transform: rotate(-90deg);
}

.UIFilterBoxBody {
	padding: 0 1em 1em;
}

.UIFilterBox.is-collapsed .UIFilterBoxBody {
	display: none;
}

.UIFilterList {
	list-style: none;
	margin: 0;
	padding: 0;
}

.UIFilterItem {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5em .5em;
	border-radius: 3px;
}

.UIFilterItem.is-active {
	background: #f0f0f0;
	font-weight: 700;
}

.UIFilterLink {
	text-decoration: none;
}

.UIFilterCount {
	font-size: 12px;
	opacity: .7;
}

.UIFilterMoreItem {
	display: none;
}

.UIFilterBox.is-more-open .UIFilterMoreItem {
	display: flex;
}

.UIFilterMoreToggle {
	margin-top: .75em;
	background: transparent;
	border: 0;
	padding: 0;
	text-decoration: underline;
	cursor: pointer;
}

.UIFilterPriceRow {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr;
	gap: .5em;
	align-items: center;
}

.UIFilterPriceLabel {
	font-size: 12px;
	opacity: .8;
}

.UIFilterPriceInput {
	width: 100%;
	padding: .4em .5em;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.UIFilterPriceActions {
	margin-top: .75em;
	display: flex;
	gap: .75em;
	align-items: center;
}

.UIListingToolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1em;
	margin: 1em 0;
}

.UIListingOrderForm {
	display: flex;
	gap: .75em;
	align-items: center;
}

.UIOrderSelect {
	padding: .45em .6em;
	border: 1px solid #ddd;
	border-radius: 3px;
}
