.snh-quick-search-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.snh-qs-tab {
	min-height: 44px;
	padding: 0.5em 1em;
	border: 1px solid currentColor;
	background: transparent;
	cursor: pointer;
}

.snh-qs-tab.is-active {
	background: currentColor;
}

.snh-qs-panel {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.snh-qs-panel select,
.snh-qs-panel button {
	min-height: 44px;
}

.snh-autocomplete-wrap {
	position: relative;
	margin-bottom: 1rem;
}

.snh-autocomplete-input {
	width: 100%;
	min-height: 44px;
	padding: 0.5em 1em;
}

.snh-autocomplete-suggestions {
	position: absolute;
	z-index: 10;
	background: #fff;
	border: 1px solid #d7dfdf;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.snh-autocomplete-suggestions li a {
	display: block;
	padding: 0.5em 1em;
	min-height: 44px;
	line-height: 44px;
}

.snh-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.snh-filter-chips select {
	min-height: 44px;
}

.snh-search-results-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 600px) {
	.snh-search-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
	.snh-search-results-grid { grid-template-columns: repeat(3, 1fr); }
}

.snh-result-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border: 1px solid #e4eaea;
}

.snh-result-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.snh-result-title,
.snh-result-region,
.snh-result-price {
	padding: 0.25em 0.75em;
}
