/* ─── Controls: search + region filter ─── */
.locations-controls {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.locations-search-wrap {
	min-width: 400px;
	position: relative;
}
.locations-search-wrap .locations-search {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #D2D2D2;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 500;
	outline: none !important;
	height: 61px;
	color: #515151 !important;
	box-shadow: none !important;
	margin-bottom: 0;
	padding-right: 64px;
}
.locations-search-wrap:after{
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background-image: url(../../assets/search.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}
/* ─── Region filter dropdown ─── */
.locations-filter-wrap {
	position: relative;
}
.locations-filter-toggle {
	padding: 12px 20px;
	border: 1px solid #D2D2D2;
	border-radius: 8px;
	background: #fff;
	font-size: 18px;
	cursor: pointer;
	white-space: nowrap;
	height: 61px;
	color: #515151;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
/* Placeholder vs. selected state */
.locations-filter-toggle .locations-filter-label {
	overflow: hidden;
	text-overflow: ellipsis;
}
.locations-filter-toggle.has-value {
	border-color: #3893AA;
	color: #515151;
}
.locations-filter-arrow {
	margin-left: 6px;
	font-size: 12px;
}
.locations-filter-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 220px;
	max-height: 300px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	z-index: 100;
}
.locations-filter-dropdown.is-open {
	display: block;
}
.locations-filter-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	cursor: pointer;
	font-size: 14px;
	margin-bottom: 0;
	transition: background 0.15s;
}
.locations-filter-option:hover {
	background: #f3f4f6;
}
.locations-region-checkbox {
	accent-color: #3893AA;
	margin: 0 !important;
	width: 16px;
	height: 16px;
}
/* ─── Map ─── */
.locations-map-canvas {
	width: 100%;
	height: 500px;
	border-radius: 12px;
	margin-bottom: 32px;
	overflow: hidden;
}
/* ─── Cards grid ─── */
.locations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
/* ─── Single card ─── */
.location-card {
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #CACACA;
}
.location-card-country {
	background: #161B26;
	background-image: url(bg.webp);
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	padding: 40px;
}
.location-card-body {
	padding: 35px 30px;
}
.location-card-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #515151;
	text-transform: unset;
}
.location-card-address {
	display: inline;
	font-size: 18px;
	color: #515151;
	margin: 0 0 24px;
	line-height: 1.7;
	font-weight: 400;
}
.location-pin-icon {
    vertical-align: text-top;
}
.location-card-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #3893AA !important;
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	text-decoration: underline;
	margin-top: 40px;
}
/* ─── Map infowindow ─── */
.kw-gmap-infowindow {
	padding: 4px 0;
	max-width: 260px;
}
.kw-gmap-title {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 4px;
}
.kw-gmap-country {
	font-size: 13px;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 4px;
}
.kw-gmap-address {
	font-size: 13px;
	color: #4b5563;
	margin-bottom: 8px;
}
.kw-gmap-actions .kw-gmap-btn {
	color: #2a9d8f;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
}
/* ─── Responsive ─── */
@media (max-width: 849px) {
	.locations-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 549px) {
	.locations-map-canvas {
		height: 350px;
	}
}