.rlp-map-shell {
	--rlp-orange: #ee7001;
	--rlp-orange-dark: #c75e00;
	--rlp-cream: #fff4e8;
	--rlp-green-soft: #dcebd3;
	--rlp-ink: #25211f;
	--rlp-muted: #6d6d6d;
	position: relative;
	width: 100%;
	min-height: var(--rlp-map-height, 620px);
	background: var(--rlp-green-soft);
	overflow: hidden;
}

.rlp-map {
	width: 100%;
	height: var(--rlp-map-height, 620px);
}

.rlp-consent {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 36px 24px;
	text-align: center;
	color: var(--rlp-ink);
	background:
		radial-gradient(circle at 50% 115%, rgba(238, 112, 1, .13), transparent 48%),
		var(--rlp-green-soft);
	z-index: 2;
}

.rlp-consent p {
	max-width: 540px;
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
}

.rlp-consent strong {
	display: inline-block;
	margin-bottom: 5px;
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.15;
	color: var(--rlp-orange);
}

.rlp-button,
.rlp-popup__route {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 2px solid var(--rlp-orange);
	border-radius: 0;
	background: var(--rlp-orange);
	color: #fff !important;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.rlp-button:hover,
.rlp-button:focus-visible,
.rlp-popup__route:hover,
.rlp-popup__route:focus-visible {
	border-color: var(--rlp-orange-dark);
	background: var(--rlp-orange-dark);
	transform: translateY(-1px);
}

.rlp-button:focus-visible,
.rlp-popup__route:focus-visible {
	outline: 3px solid rgba(238, 112, 1, .35);
	outline-offset: 3px;
}

.rlp-marker {
	display: block;
	width: 48px;
	height: 64px;
	filter: drop-shadow(0 5px 5px rgba(37, 33, 31, .28));
	transform-origin: 50% 100%;
	transition: transform .18s ease;
}

.rlp-marker:hover {
	transform: translateY(-3px) scale(1.05);
}

.rlp-marker--partner {
	width: 44px;
	height: 57px;
}

.rlp-popup {
	box-sizing: border-box;
	width: min(320px, 72vw);
	padding: 6px 2px 4px;
	color: var(--rlp-ink);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
}

.rlp-popup__logo {
	display: block;
	max-width: 150px;
	max-height: 62px;
	width: auto;
	height: auto;
	margin: 0 0 14px;
	object-fit: contain;
	object-position: left center;
}

.rlp-popup__title {
	margin: 0 0 10px;
	color: var(--rlp-orange);
	font-size: 22px;
	line-height: 1.12;
}

.rlp-popup__description,
.rlp-popup__address {
	margin: 0 0 12px;
}

.rlp-popup__description p {
	margin: 0 0 8px;
}

.rlp-popup__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	margin: 0 0 15px;
}

.rlp-popup__contact a {
	color: var(--rlp-ink);
	text-decoration-color: var(--rlp-orange);
	text-underline-offset: 3px;
}

.rlp-popup__route {
	min-height: 40px;
	padding: 9px 16px;
	font-size: 14px;
}

.rlp-notice {
	padding: 18px 20px;
	border-left: 4px solid var(--rlp-orange);
	background: var(--rlp-cream);
	color: var(--rlp-ink);
}

@media (max-width: 640px) {
	.rlp-map-shell,
	.rlp-map {
		min-height: min(var(--rlp-map-height, 620px), 70vh);
		height: min(var(--rlp-map-height, 620px), 70vh);
	}

	.rlp-consent {
		padding: 28px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rlp-button,
	.rlp-popup__route,
	.rlp-marker {
		transition: none;
	}
}
