.wcas-attribute-search {
	position: relative;
	width: 100%;
	max-width: 100%;
}

.wcas-search-box {
	display: flex;
	align-items: stretch;
	gap: 0;
	border: 1px solid #d0d0d0;
	border-radius: 30px;
	overflow: hidden;
}

.wcas-input {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	outline: none;
	padding: 12px 20px;
	font-size: 15px;
	background: transparent;
}

.wcas-search-btn {
	flex: 0 0 auto;
	border: none;
	cursor: pointer;
	padding: 12px 28px;
	font-size: 15px;
	background-color: #1d1d1d;
	color: #fff;
	white-space: nowrap;
}

.wcas-search-btn:hover {
	opacity: 0.9;
}

.wcas-suggestions {
	position: absolute;
	z-index: 100;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	max-height: 260px;
	overflow-y: auto;
}

.wcas-suggestions[hidden] {
	display: none;
}

.wcas-suggestions li {
	padding: 10px 18px;
	cursor: pointer;
	font-size: 14px;
}

.wcas-suggestions li.wcas-suggestion:hover,
.wcas-suggestions li.wcas-suggestion.wcas-active {
	background-color: #f2f2f2;
}

.wcas-suggestions li.wcas-no-results {
	cursor: default;
	color: #999;
}
