/* ------------------------------------------------
   Location Auto-Suggest Dropdown
   ------------------------------------------------ */
.search-col {
    position: relative;
    width: 100%;
    height: 59px;
    background: #ffffff;
    box-shadow: 0 4px 20px 10px rgba(57, 86, 163, .15);
    border-radius: 40px;
}
.search-col input[type="text"] {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: none;
    outline: none;
    border-radius: 40px;
}
.search-col button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}
.search-col button i {
    font-size: 20px;
    color: var(--blue);
}
.location-autosuggest {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 100;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0px 4px 24px rgba(23, 37, 73, 0.14);
	overflow: hidden;
	max-height: 360px;
	overflow-y: auto;
}

.location-autosuggest.is-open {
	display: block;
}

.location-autosuggest__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 600;
	color: var(--dark-blue);
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease;
	border-bottom: 1px solid rgba(23, 37, 73, 0.06);
}

.location-autosuggest__item:last-child {
	border-bottom: none;
}

.location-autosuggest__empty {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	font-size: 15px;
	font-weight: 600;
	color: var(--dark-blue);
	opacity: 0.7;
}

.location-autosuggest__item:hover,
.location-autosuggest__item.is-active {
	background-color: var(--soft-blue);
	color: var(--dark-blue);
	text-decoration: none;
}

.location-autosuggest__item strong {
	font-weight: 800;
	color: var(--coral);
}

.autosuggest-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--soft-blue);
	border-radius: 50%;
	font-size: 13px;
	color: var(--blue);
}

.location-autosuggest__item:hover .autosuggest-icon,
.location-autosuggest__item.is-active .autosuggest-icon {
	background: var(--blue);
	color: var(--white);
}

.autosuggest-label {
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.autosuggest-badge {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--blue);
	background: rgba(57, 86, 163, 0.1);
	padding: 3px 8px;
	border-radius: 20px;
}

@media (min-width: 768px) {
	.location-autosuggest__item {
		padding: 14px 22px;
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.location-autosuggest__item {
		padding: 14px 24px;
		font-size: 16px;
		gap: 14px;
	}

	.autosuggest-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
}