.homes-filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: 1.5em;
	margin-bottom: 1.5em;
	padding: 1em 1.25em;
	border-radius: 6px;
}

.homes-filter-field {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
}

.homes-filter-field label {
	font-size: 1.05em;
	font-weight: 600;
	margin: 0;
}

.homes-filter-sort,
.homes-filter-min,
.homes-filter-max {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 8px 34px 8px 16px;
	border: 1px solid #ccc;
	border-radius: 7px;
	font-size: 18px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23555' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 12px;
}

.homes-filter-sort {
	width: 11.5em;
}

.homes-filter-range {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.homes-filter-range select {
	width: 9.5em;
}

.homes-filter-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5em;
}

.homes-filter-apply {
	white-space: nowrap;
}

.homes-filter-reset {
	background: none;
	border: none;
	outline: none;
	box-shadow: none;
	color: var(--primary-theme-color, #0073aa);
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	font-size: 18px;
}

.homes-filter-reset:focus {
	outline: none;
	box-shadow: none;
}

.homes-filter-reset:hover,
.homes-filter-reset:focus {
	color: var(--primary-theme-color-alt, #005a87);
}

.homes-filter-empty {
	padding: 1.5em;
	text-align: center;
	font-style: italic;
}

@media (max-width: 767px) {
	.homes-filter-bar {
		flex-direction: column;
		align-items: stretch;
	}
	.homes-filter-sort,
	.homes-filter-range select {
		width: 100%;
	}
	.homes-filter-range {
		margin-bottom: 0.75em;
	}
}
