.lb-location-search {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 0 auto 1.5rem;
}

.lb-location-search__input-wrap {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.lb-location-search__input {
	flex: 1;
	border: none;
	outline: none;
	padding: 0.85rem 1.25rem;
	font-size: 1rem;
	background: transparent;
	color: #1a1a1a;
	font-family: inherit;
}

.lb-location-search__input::placeholder {
	color: #9ca3af;
}

.lb-location-search__btn {
	flex-shrink: 0;
	background: #8abb2a;
	border: none;
	border-radius: 0 50px 50px 0;
	padding: 0.85rem 1.4rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: inherit;
	transition: background 0.15s;
	white-space: nowrap;
}

.lb-location-search__btn:hover {
	background: #7aaa1e;
}

.lb-location-search__btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

@media (max-width: 560px) {
	.lb-location-search__input-wrap {
		flex-direction: column;
		border-radius: 16px;
	}
	.lb-location-search__btn {
		border-radius: 0 0 16px 16px;
		width: 100%;
		justify-content: center;
		font-size: 0.95rem;
		padding: 0.8rem 1.25rem;
		gap: 0.4rem;
	}
	.lb-location-search__btn svg {
		width: 16px;
		height: 16px;
	}
}

.lb-location-search__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.15);
	overflow: hidden;
	z-index: 9999;
	display: none;
}

.lb-location-search__dropdown.is-open {
	display: block;
}

.lb-location-search__option {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.85rem 1.25rem;
	cursor: pointer;
	transition: background 0.1s;
	border-bottom: 1px solid #f3f4f6;
}

.lb-location-search__option:last-child {
	border-bottom: none;
}

.lb-location-search__option:hover,
.lb-location-search__option.is-highlighted {
	background: #f0f7e6;
}

.lb-location-search__option-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: #8abb2a;
}

.lb-location-search__option-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.lb-location-search__option-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.lb-location-search__option-name {
	font-weight: 600;
	font-size: 0.95rem;
	color: #1a1a1a;
	line-height: 1.3;
}

.lb-location-search__option-hint {
	font-size: 0.8rem;
	color: #6b7280;
	margin-top: 0.15rem;
}

.lb-location-search__no-results {
	padding: 1rem 1.25rem;
	color: #6b7280;
	font-size: 0.9rem;
	text-align: center;
}
