/* Waterclick dealer map. Brand red #d72127 accent, matches the child theme. */

.wclk-map-wrap {
	width: 100%;
}

.wclk-map {
	width: 100%;
	min-height: 200px;
	border-radius: 14px;
	overflow: hidden;
	z-index: 0; /* keep Leaflet panes under the theme header/menus */
	border: 1px solid #e6e8eb;
	box-shadow: 0 14px 34px -18px rgba(20, 28, 38, .35);
}

/* Branded red teardrop pin (divIcon SVG). drop-shadow lifts it off the map. */
.wclk-pin svg {
	display: block;
	width: 30px;
	height: 40px;
	filter: drop-shadow(0 3px 3px rgba(20, 28, 38, .32));
}

/* Cleaner, rounded Leaflet zoom control to match the map card. */
.wclk-map .leaflet-control-zoom {
	border: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 14px -4px rgba(20, 28, 38, .28);
}
.wclk-map .leaflet-control-zoom a {
	width: 32px;
	height: 32px;
	line-height: 32px;
	color: #1a1a1a;
	border-bottom-color: #eceef1;
}
.wclk-map .leaflet-control-zoom a:hover {
	background: #fdecec;
	color: #d72127;
}
.wclk-map .leaflet-control-attribution {
	background: rgba(255, 255, 255, .82);
	font-size: 10px;
	border-radius: 8px 0 0 0;
}

.wclk-map-empty {
	padding: 16px;
	background: #f6f6f6;
	border: 1px dashed #c9c9c9;
	border-radius: 8px;
	color: #666;
	font-size: 14px;
}

/* Locator layout: list beside the map on desktop, stacked on mobile. */
.wclk-has-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 1024px) {
	.wclk-has-list {
		grid-template-columns: 300px 1fr;
	}
	.wclk-has-list .wclk-map-list {
		order: -1;
	}
}

.wclk-map-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 500px;
	overflow-y: auto;
	border: 1px solid #ececec;
	border-radius: 8px;
}

.wclk-map-list-item {
	padding: 12px 14px;
	border-bottom: 1px solid #ececec;
	cursor: pointer;
	transition: background .15s ease;
}

.wclk-map-list-item:last-child {
	border-bottom: 0;
}

.wclk-map-list-item:hover {
	background: #fdecec;
}

.wclk-map-list-item strong {
	display: block;
	color: #1a1a1a;
}

.wclk-list-province {
	display: inline-block;
	font-size: 12px;
	color: #d72127;
	margin-top: 2px;
}

.wclk-list-address {
	display: block;
	font-size: 13px;
	color: #666;
	margin-top: 2px;
}

.leaflet-popup-content-wrapper {
	border-radius: 12px;
	box-shadow: 0 10px 30px -8px rgba(20, 28, 38, .35);
}

.wclk-popup strong {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
	color: #1a1a1a;
}

.wclk-popup-row {
	font-size: 13px;
	line-height: 1.5;
	color: #444;
}

.wclk-popup-row a {
	color: #d72127;
}
