.lsw-search-wrap {
	position: relative;
	max-width: 420px;
}

.lsw-search-form {
	position: relative;
	display: flex;
	align-items: center;
}

.lsw-search-input {
	width: 100%;
	padding: 10px 40px 10px 14px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}

.lsw-search-input:focus {
	outline: none;
	border-color: #999;
}

.lsw-search-submit {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 4px;
	color: #555;
}

.lsw-suggestions {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	max-height: 380px;
	overflow-y: auto;
	z-index: 999;
}

.lsw-suggestion {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	text-decoration: none;
	color: #222;
	border-bottom: 1px solid #f2f2f2;
}

.lsw-suggestion:last-child {
	border-bottom: none;
}

.lsw-suggestion:hover,
.lsw-suggestion.is-active {
	background: #f6f6f6;
}

.lsw-thumb {
	width: 36px;
	height: 36px;
	border-radius: 4px;
	object-fit: cover;
	flex: none;
	background: #f0f0f0;
}

.lsw-thumb-placeholder {
	display: inline-block;
}

.lsw-suggestion-text {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.lsw-suggestion-title {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lsw-suggestion-type {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #999;
}

.lsw-suggestion-price {
	margin-left: auto;
	padding-left: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #222;
	white-space: nowrap;
	flex: none;
}

.lsw-no-results {
	padding: 14px;
	font-size: 14px;
	color: #777;
}

/* Op mobiel wordt de lijst via JS position:fixed gezet (zie live-search.js),
   zodat hij altijd binnen het scherm blijft ongeacht een fixed header/zoekbalk. */
@media (max-width: 600px) {
	.lsw-search-wrap {
		max-width: 100%;
	}

	.lsw-suggestions {
		border-radius: 0;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
		z-index: 9999;
		box-sizing: border-box;
	}

	.lsw-thumb {
		width: 32px;
		height: 32px;
	}

	.lsw-suggestion-price {
		font-size: 13px;
	}
}
