.ecorahi-map-section {
	margin: 0 0 28px;
	background: #fff;
	border: 1px solid #e6e2d6;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px -28px rgba(31, 107, 74, 0.35);
	scroll-margin-top: 96px;
}

.ecorahi-map-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid #e6e2d6;
	background: linear-gradient(180deg, #fafbf8, #fff);
}

.ecorahi-map-head-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.ecorahi-map-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(31, 107, 74, 0.22);
	background: #fff;
	color: #1f6b4a;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ecorahi-map-toggle:hover {
	background: #1f6b4a;
	border-color: #1f6b4a;
	color: #fff;
}

.ecorahi-map-section--collapsed .ecorahi-map-canvas {
	display: none;
}

.ecorahi-map-section--collapsed .ecorahi-map-head {
	border-bottom: 0;
}

.ecorahi-map-head h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
	color: #20261d;
}

.ecorahi-map-head p {
	margin: 6px 0 0;
	font-size: 13px;
	color: #5f675a;
}

.ecorahi-map-count {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #e8f2ec;
	color: #1f6b4a;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.ecorahi-map-canvas {
	width: 100%;
	min-height: 280px;
	background: #eef1ec;
	z-index: 1;
	position: relative;
}

.ecorahi-map-canvas:not(.ecorahi-map--active) {
	touch-action: pan-y;
}

.ecorahi-map-canvas.ecorahi-map--active {
	touch-action: none;
}

.ecorahi-map-touch-hint {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 500;
	transform: translateX(-50%);
	border: 0;
	border-radius: 999px;
	padding: 10px 16px;
	background: rgba(23, 54, 40, 0.88);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	pointer-events: auto;
}

.ecorahi-map-canvas .leaflet-control-zoom a {
	border-radius: 10px;
	color: #1f6b4a;
}

/* Google-style category pin */
.ecorahi-gpin-wrap {
	background: transparent;
	border: 0;
}

.ecorahi-gpin {
	position: relative;
	width: 46px;
	height: 54px;
}

.ecorahi-gpin-bubble {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--pin-color, #1f6b4a);
	box-shadow: 0 8px 18px rgba(26, 31, 22, 0.22);
	display: grid;
	place-items: center;
	overflow: hidden;
	z-index: 2;
}

.ecorahi-gpin-bubble img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
}

.ecorahi-gpin-fallback {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pin-color, #1f6b4a);
}

.ecorahi-gpin-tail {
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 14px;
	height: 14px;
	margin-left: -7px;
	background: var(--pin-color, #1f6b4a);
	transform: rotate(45deg);
	border-radius: 0 0 3px 0;
	box-shadow: 2px 2px 4px rgba(26, 31, 22, 0.18);
	z-index: 1;
}

/* Google-style category cluster */
.ecorahi-gcluster-wrap {
	background: transparent;
	border: 0;
}

.ecorahi-gcluster {
	position: relative;
	width: 56px;
	height: 56px;
}

.ecorahi-gcluster-single,
.ecorahi-gcluster-stack {
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--cluster-color, #1f6b4a);
	box-shadow: 0 10px 24px rgba(26, 31, 22, 0.24);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.ecorahi-gcluster-single img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.ecorahi-gcluster-fallback {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--cluster-color, #1f6b4a);
}

.ecorahi-gcluster-stack img {
	position: absolute;
	width: 24px;
	height: 24px;
	object-fit: contain;
	background: #fff;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.ecorahi-gcluster-stack .stack-1 {
	top: 8px;
	left: 8px;
	z-index: 3;
}

.ecorahi-gcluster-stack .stack-2 {
	top: 8px;
	right: 8px;
	z-index: 2;
}

.ecorahi-gcluster-stack .stack-3 {
	bottom: 8px;
	left: 50%;
	margin-left: -12px;
	z-index: 1;
}

.ecorahi-gcluster-count {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--cluster-color, #1f6b4a);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 22px;
	text-align: center;
	border: 2px solid #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
	z-index: 5;
}

/* Popup */
.ecorahi-leaflet-popup .leaflet-popup-content-wrapper {
	border-radius: 14px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.ecorahi-leaflet-popup .leaflet-popup-content {
	margin: 0;
	width: 188px !important;
}

.ecorahi-map-popup-media {
	display: block;
	height: 56px;
	overflow: hidden;
	background: #e8ede9;
}

.ecorahi-map-popup-media--compact {
	height: 56px;
}

.ecorahi-map-popup-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ecorahi-map-popup-body {
	padding: 8px 10px 10px;
}

.ecorahi-map-popup-cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
	padding: 3px 8px 3px 4px;
	border-radius: 999px;
	background: #e8f2ec;
	color: #1f6b4a;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.ecorahi-map-popup-cat-ico {
	width: 18px;
	height: 18px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
}

.ecorahi-map-popup-body h3 {
	margin: 0 0 4px;
	font-size: 12px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ecorahi-map-popup-body h3 a {
	color: #20261d;
	text-decoration: none;
}

.ecorahi-map-popup-body h3 a:hover {
	color: #1f6b4a;
}

.ecorahi-map-popup-loc,
.ecorahi-map-popup-price {
	margin: 0 0 6px;
	font-size: 12px;
	color: #5f675a;
	line-height: 1.4;
}

.ecorahi-map-popup-loc {
	padding-left: 16px;
	position: relative;
}

.ecorahi-map-popup-loc::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 12px;
	height: 12px;
	background: #8a9486;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 21s7-4.35 7-11a7 7 0 1 0-14 0c0 6.65 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 21s7-4.35 7-11a7 7 0 1 0-14 0c0 6.65 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ecorahi-map-popup-price {
	color: #1f6b4a;
	font-weight: 800;
	margin-bottom: 0;
}

.ecorahi-map-popup-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-top: 8px;
}

.ecorahi-map-popup-actions--single {
	grid-template-columns: 1fr;
}

.ecorahi-map-popup-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 34px;
	padding: 0 8px;
	border-radius: 8px;
	background: #1f6b4a;
	color: #fff !important;
	font-size: 10px;
	font-weight: 700;
	text-decoration: none !important;
	text-align: center;
	line-height: 1;
	box-sizing: border-box;
	border: none;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}

.ecorahi-map-popup-btn--directions::before,
.ecorahi-map-popup-btn--view::before {
	content: "";
	display: inline-block;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background: currentColor;
}

.ecorahi-map-popup-btn--directions::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l19-9-9 19-2-8-8-2z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l19-9-9 19-2-8-8-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ecorahi-map-popup-btn--view::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ecorahi-map-popup-btn--view {
	background: #fff;
	color: #1f6b4a !important;
	border: 1.5px solid #c5d9cc;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-btn {
	min-height: 32px;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-btn-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-btn {
	min-width: 0;
	padding: 0;
}

/* Compact mobile popup */
.ecorahi-leaflet-popup--mobile .leaflet-popup-content-wrapper {
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(31, 107, 74, 0.08);
}

.ecorahi-leaflet-popup--mobile .leaflet-popup-content {
	width: 196px !important;
}

.ecorahi-leaflet-popup--mobile .leaflet-popup-tip {
	box-shadow: none;
}

.ecorahi-leaflet-popup--mobile .leaflet-popup-close-button {
	top: 6px !important;
	right: 6px !important;
	width: 28px !important;
	height: 28px !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92) !important;
	color: #20261d !important;
	font-size: 20px !important;
	line-height: 28px !important;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ecorahi-map-popup--compact .ecorahi-map-popup-body {
	padding: 8px 10px 10px;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-cat {
	margin-bottom: 4px;
	padding: 2px 6px 2px 3px;
	font-size: 8px;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-cat-ico {
	width: 12px;
	height: 12px;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-body h3 {
	margin: 0 0 4px;
	font-size: 12px;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-loc {
	margin: 0 0 3px;
	font-size: 10px;
	-webkit-line-clamp: 1;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-price {
	margin: 0 0 2px;
	font-size: 10px;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-actions {
	gap: 5px;
	margin-top: 6px;
}

.ecorahi-map-popup--compact .ecorahi-map-popup-btn {
	width: 100%;
	min-height: 32px;
}

.ecorahi-map-popup--cluster .ecorahi-map-popup-body {
	padding: 10px 12px 12px;
}

.ecorahi-map-popup--cluster .ecorahi-map-popup-count {
	margin: 0 0 3px;
	font-size: 13px;
	font-weight: 800;
	color: #20261d;
}

.ecorahi-map-popup--cluster .ecorahi-map-popup-hint {
	margin: 0;
	font-size: 10px;
	color: #5f675a;
	line-height: 1.35;
}

.ecorahi-leaflet-popup--cluster-info .leaflet-popup-content-wrapper {
	background: #fff;
}

.ecorahi-map-section--clusters-only .ecorahi-map-head {
	background: linear-gradient(180deg, #eef6f1, #fff);
}

.ecorahi-map-section--clusters-only .ecorahi-map-count {
	background: #1f6b4a;
	color: #fff;
}

.ecorahi-map-clusters-only .ecorahi-map-canvas {
	min-height: 360px;
}

@media (max-width: 640px) {
	.ecorahi-map-section--clusters-only .ecorahi-map-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.ecorahi-map-section--clusters-only .ecorahi-map-count {
		font-size: 11px;
		height: auto;
		min-height: 34px;
		padding: 6px 12px;
		white-space: normal;
		text-align: center;
	}
}

.ecorahi-map-single .ecorahi-map-head {
	display: none;
}

.ecorahi-map-single .ecorahi-map-section {
	margin: 0;
	border-radius: 14px;
}

@media (max-width: 640px) {
	.ecorahi-map-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.ecorahi-map-head h2 {
		font-size: 18px;
	}

	.ecorahi-map-canvas {
		touch-action: pan-x pan-y pinch-zoom;
	}

	body.ecorahi-map-touching {
		overflow: hidden;
	}

	.ecorahi-leaflet-popup .leaflet-popup-content-wrapper {
		max-width: calc(100vw - 40px);
	}

	.ecorahi-leaflet-popup .leaflet-popup-content {
		width: min(188px, calc(100vw - 48px)) !important;
	}

	.ecorahi-leaflet-popup--mobile .leaflet-popup-content {
		width: min(188px, calc(100vw - 48px)) !important;
	}

	.ecorahi-leaflet-popup .leaflet-popup-close-button {
		width: 34px;
		height: 34px;
		font-size: 22px;
		line-height: 34px;
		padding: 0;
	}

	.ecorahi-leaflet-popup:not(.ecorahi-leaflet-popup--mobile) .leaflet-popup-close-button {
		width: 34px;
		height: 34px;
	}
}

body.ecorahi-map-page .ecorahi-leaflet-popup .leaflet-popup-content {
	width: min(188px, calc(100vw - 44px)) !important;
}

body.ecorahi-map-page .ecorahi-leaflet-popup--mobile .leaflet-popup-content {
	width: min(188px, calc(100vw - 44px)) !important;
}

body.ecorahi-map-page .ecorahi-leaflet-popup--cluster-info .leaflet-popup-content {
	width: 180px !important;
}

/* Dedicated /map/ page layout — light eco theme */
body.ecorahi-map-page {
	background: #eef3ec;
}

body.ecorahi-map-page .site-content,
body.ecorahi-map-page .ecorahi-map-page-main,
body.ecorahi-map-page #content.site-content {
	padding: 0;
	margin: 0;
	max-width: none;
	width: 100%;
}

body.ecorahi-map-page .site-footer {
	position: relative;
	z-index: 2;
}

.ecorahi-map-section--fullscreen {
	margin: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	min-height: calc(100vh - 140px);
	display: flex;
	flex-direction: column;
	background: #eef3ec;
}

.ecorahi-map-section--fullscreen .ecorahi-map-canvas {
	flex: 1 1 auto;
	min-height: calc(100vh - 220px);
	height: calc(100vh - 220px) !important;
	background: #dde8e0;
}

@media (max-width: 991.98px) {
	.ecorahi-map-section--fullscreen {
		min-height: auto;
	}

	.ecorahi-map-section--fullscreen .ecorahi-map-canvas {
		min-height: 58vh;
		height: 58vh !important;
	}
}

/* Premium light map (/map/) */
.ecorahi-map-section--premium {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: #eef3ec;
}

.ecorahi-map-section--premium .ecorahi-map-head {
	padding: 20px 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8f2 100%);
	border-bottom: 1px solid #d8e4d8;
}

.ecorahi-map-section--premium .ecorahi-map-head h2 {
	font-size: 24px;
	color: #1a2e22;
}

.ecorahi-map-section--premium .ecorahi-map-head p {
	color: #4a5f50;
	font-size: 14px;
}

.ecorahi-map-section--premium .ecorahi-map-count {
	background: linear-gradient(135deg, #e2f2e8 0%, #d0e8da 100%);
	color: #1f6b4a;
	border: 1px solid rgba(31, 107, 74, 0.16);
	box-shadow: 0 4px 14px rgba(31, 107, 74, 0.1);
}

.ecorahi-map-section--premium .ecorahi-map-canvas {
	background: #dde8e0;
}

.ecorahi-map-section--premium .leaflet-control-zoom {
	border: 0 !important;
	box-shadow: 0 8px 24px rgba(31, 107, 74, 0.14) !important;
	border-radius: 12px;
	overflow: hidden;
}

.ecorahi-map-section--premium .leaflet-control-zoom a {
	background: #fff !important;
	color: #1f6b4a !important;
	border-color: #d8e4d8 !important;
	font-weight: 700;
}

.ecorahi-map-section--premium .leaflet-control-zoom a:hover {
	background: #e8f2ec !important;
	color: #145a3c !important;
}

.ecorahi-map-section--premium .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.92) !important;
	color: #5f675a !important;
	border-radius: 8px 0 0 0;
}

.ecorahi-map-section--premium .ecorahi-gcluster-single,
.ecorahi-map-section--premium .ecorahi-gcluster-stack {
	border-width: 3px;
	box-shadow:
		0 0 0 3px rgba(31, 107, 74, 0.14),
		0 10px 24px rgba(26, 31, 22, 0.18);
}

.ecorahi-map-section--premium .ecorahi-gcluster-count {
	background: #1f6b4a;
	color: #fff;
	border-color: #fff;
	box-shadow: 0 4px 12px rgba(31, 107, 74, 0.28);
}

/* Twilight map theme (legacy — unused on /map/) */
.ecorahi-map-section--night {
	background: #121820;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.ecorahi-map-section--night .ecorahi-map-head {
	background: linear-gradient(180deg, #18222d 0%, #121820 100%);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ecorahi-map-section--night .ecorahi-map-head h2 {
	color: #f3f6f2;
}

.ecorahi-map-section--night .ecorahi-map-head p {
	color: #a3b0a8;
}

.ecorahi-map-section--night .ecorahi-map-count {
	background: rgba(45, 143, 98, 0.22);
	color: #b8ebd0;
	border: 1px solid rgba(143, 212, 173, 0.28);
}

.ecorahi-map-section--night .ecorahi-map-canvas {
	background: #101820;
}

.ecorahi-map-section--night .leaflet-control-zoom {
	border: 0 !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

.ecorahi-map-section--night .leaflet-control-zoom a {
	background: rgba(24, 34, 45, 0.94) !important;
	color: #b8ebd0 !important;
	border-color: rgba(255, 255, 255, 0.1) !important;
}

.ecorahi-map-section--night .leaflet-control-zoom a:hover {
	background: rgba(31, 107, 74, 0.42) !important;
	color: #e4f7ec !important;
}

.ecorahi-map-section--night .leaflet-control-attribution {
	background: rgba(16, 24, 32, 0.78) !important;
	color: #8a968f !important;
}

.ecorahi-map-section--night .leaflet-control-attribution a {
	color: #8fd4ad !important;
}

/* Brighter pins & clusters on dark map */
.ecorahi-map-section--night .ecorahi-gpin-bubble {
	background: #fff;
	border-width: 3px;
	box-shadow:
		0 0 0 3px rgba(143, 212, 173, 0.28),
		0 10px 24px rgba(0, 0, 0, 0.45);
}

.ecorahi-map-section--night .ecorahi-gcluster {
	filter: drop-shadow(0 0 10px rgba(143, 212, 173, 0.35));
}

.ecorahi-map-section--night .ecorahi-gcluster-single,
.ecorahi-map-section--night .ecorahi-gcluster-stack {
	inset: 2px;
	background: #fff;
	border-width: 4px;
	box-shadow:
		0 0 0 4px rgba(143, 212, 173, 0.32),
		0 12px 28px rgba(0, 0, 0, 0.42);
}

.ecorahi-map-section--night .ecorahi-gcluster-single img {
	width: 36px;
	height: 36px;
}

.ecorahi-map-section--night .ecorahi-gcluster-stack img {
	width: 26px;
	height: 26px;
	border-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.ecorahi-map-section--night .ecorahi-gcluster-count {
	top: -4px;
	right: -4px;
	min-width: 26px;
	height: 26px;
	line-height: 22px;
	font-size: 12px;
	background: #fff;
	color: var(--cluster-color, #1f6b4a);
	border: 3px solid var(--cluster-color, #1f6b4a);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.ecorahi-map-section--night .ecorahi-leaflet-popup .leaflet-popup-content-wrapper {
	background: #1a2430;
	color: #eef2ea;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ecorahi-map-section--night .ecorahi-leaflet-popup .leaflet-popup-tip {
	background: #1a2430;
}

.ecorahi-map-section--night .ecorahi-map-popup-body h3 a {
	color: #f3f6f2;
}

.ecorahi-map-section--night .ecorahi-map-popup-loc,
.ecorahi-map-section--night .ecorahi-map-popup-price,
.ecorahi-map-section--night .ecorahi-map-popup-hint {
	color: #a3b0a8;
}

.ecorahi-map-section--night .ecorahi-map-popup-loc::before {
	background: #8a968f;
}

.ecorahi-map-section--night .ecorahi-map-popup-price {
	color: #8fd4ad;
}

.ecorahi-map-section--night .ecorahi-map-popup-cat {
	background: rgba(45, 143, 98, 0.2);
	color: #b8ebd0;
}

.ecorahi-map-section--night .ecorahi-map-popup-cat-ico {
	background: #fff;
}

.ecorahi-map-section--night .ecorahi-map-popup-count {
	color: #f3f6f2;
}

.ecorahi-map-section--night .ecorahi-map-popup-btn--directions {
	background: linear-gradient(135deg, #3aa876 0%, #1f6b4a 100%);
}

.ecorahi-map-section--night .ecorahi-map-popup-btn--view {
	background: #121820;
	color: #b8ebd0 !important;
	border-color: rgba(143, 212, 173, 0.35);
}

.ecorahi-map-section--night .ecorahi-leaflet-popup--mobile .leaflet-popup-close-button {
	background: rgba(26, 36, 48, 0.96) !important;
	color: #eef2ea !important;
}
