.vbn-location-picker {
	--vbn-cat-navy: #1e2a4c;
	--vbn-cat-orange: #ff431e;
	position: relative;
	display: inline-block;
}
.vbn-location-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 4px;
	border: 0;
	background: transparent;
	color: var(--vbn-cat-navy);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.vbn-location-trigger i {
	font-size: 13px;
	color: var(--vbn-cat-orange);
}
.vbn-location-trigger-caret {
	color: #9aa1ad !important;
	font-size: 10px !important;
	transition: transform .15s ease;
}
.vbn-location-picker.is-open .vbn-location-trigger-caret {
	transform: rotate(180deg);
}
.vbn-location-trigger-text {
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vbn-location-popup {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 999;
	width: 380px;
	max-width: 90vw;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(20, 20, 40, .18);
	overflow: hidden;
}
.vbn-location-popup-inner {
	padding: 18px;
}
.vbn-location-search {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid #e2e5eb;
	border-radius: 8px;
	margin-bottom: 12px;
}
.vbn-location-search i {
	color: #9aa1ad;
	font-size: 14px;
}
.vbn-location-search-input {
	flex: 1 1 auto;
	border: 0;
	outline: none;
	font-size: 14px;
	color: var(--vbn-cat-navy);
}
.vbn-location-detect {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 10px 4px;
	margin-bottom: 8px;
	border: 0;
	border-bottom: 1px solid #eef0f3;
	background: transparent;
	color: var(--vbn-cat-orange);
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}
.vbn-location-detect.loading {
	opacity: .6;
	cursor: default;
	pointer-events: none;
}
.vbn-location-status {
	margin: 0 0 8px;
	min-height: 1.2em;
	color: #6b7280;
	font-size: 12px;
}
.vbn-location-status:empty {
	margin: 0;
	min-height: 0;
}
.vbn-location-popular-label {
	margin: 10px 0 12px;
	color: #9aa1ad;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-align: center;
}
.vbn-location-city-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px 8px;
}
.vbn-location-city {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	text-align: center;
}
.vbn-location-city-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #e2e5eb;
	border-radius: 50%;
	color: var(--vbn-cat-navy);
	font-size: 16px;
}
.vbn-location-city:hover .vbn-location-city-icon {
	border-color: var(--vbn-cat-orange);
	color: var(--vbn-cat-orange);
}
.vbn-location-city-name {
	color: var(--vbn-cat-navy);
	font-size: 12px;
	font-weight: 500;
}
.vbn-location-viewall {
	display: block;
	margin-top: 16px;
	color: var(--vbn-cat-orange);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

@media (max-width: 480px) {
	.vbn-location-popup {
		width: 320px;
	}
	.vbn-location-city-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
