/* Europlex Dealer Locator — homepage globe intro overlay */

#edl-intro-overlay {
	/* Contained to the map box (.edl-mapwrap is `position: relative;
	   overflow: hidden;` in locator.css) rather than the full viewport —
	   sits above the sidebar (z-index: 2) and search bar (z-index: 3). */
	position: absolute;
	inset: 0;
	z-index: 10;
	background: #02030a;
	transition: opacity 0.1s linear;
	cursor: pointer;
}

#edl-intro-canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.edl-intro-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8%;
	text-align: center;
	color: #e8f0ff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.75;
	pointer-events: none;
	text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.edl-intro-skip {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 8px 16px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.35);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background 0.15s ease;
}

.edl-intro-skip:hover {
	background: rgba(255,255,255,0.18);
}

@media (max-width: 600px) {
	.edl-intro-caption { font-size: 12px; bottom: 12%; }
	.edl-intro-skip { top: 14px; right: 14px; padding: 6px 12px; font-size: 12px; }
}
