.gemtech-google-map {
	width: 100%;
	height: 450px;
	display: block;
}

.gemtech-google-map__info {
	font-size: 14px;
	line-height: 1.5;
	max-width: 260px;
}

.gemtech-map-directions-btn {
	display: block;
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--dir-color, inherit);
	opacity: 0.85;
	cursor: pointer;
	margin-top: 3px;
	transition: color 0.15s ease, opacity 0.15s ease;
}

.gemtech-map-directions-btn:hover {
	color: var(--dir-hover-color, var(--dir-color, inherit));
	opacity: 1;
}

/* ── HTML markers ──────────────────────────────────────────────────────────── */

.gemtech-map-marker-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gemtech-map-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 7px 16px;
	border-radius: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	white-space: nowrap;
	line-height: 1.4;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
	cursor: pointer;
	user-select: none;
}

.gemtech-map-marker__name {
	font-size: 13px;
	font-weight: 600;
}

/* Downward-pointing tail — colour set via inline style in JS */
.gemtech-map-marker__tail {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid currentColor;
}
