/* Websel Harita */
.wh-map { position: relative; width: 100%; }
.wh-map__canvas {
	width: 100%;
	background: #e9eef3;
	border-radius: 18px;
	overflow: hidden;
}
.wh-map--error {
	padding: 18px 20px;
	background: #fef3c7;
	border: 1px dashed #f59e0b;
	color: #92400e;
	border-radius: 12px;
	font-size: 14px;
}

/* Leaflet override — popup tipografisi */
.leaflet-container { font-family: inherit; }
.leaflet-popup-content {
	margin: 12px 14px;
	font-size: 14px;
	line-height: 1.45;
	color: #1f2937;
}
.leaflet-popup-content-wrapper {
	border-radius: 10px;
	box-shadow: 0 8px 24px -8px rgba(15,23,42,.22);
}

/* CTA "Yol Tarifi Al" butonu */
.wh-map__cta-wrap {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 500;
}
.wh-map__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 14px;
	border-radius: 999px;
	box-shadow: 0 6px 18px -6px rgba(15,23,42,.28);
	border: 1px solid rgba(15,23,42,.08);
	transition: transform .15s, box-shadow .15s, background .15s;
}
.wh-map__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -8px rgba(15,23,42,.36);
	background: #f8fafc;
}
.wh-map__cta span { font-size: 11px; opacity: .7; }

/* Stil varyantları — wrapper class'larıyla pile-up */
.wh-map--dark .wh-map__canvas { background: #1f2937; }
.wh-map--light .wh-map__canvas { background: #f3f4f6; }
