.map-page { display: flex; flex-direction: column; }
.map-toolbar { display: flex; align-items: center; gap: 14px 18px; padding: 12px 20px; border-bottom: 1px solid #333; flex-wrap: wrap; }
.map-toolbar h1, .map-toolbar h2 { font-size: 18px; margin: 0; color: #E8A838; font-family: Lora, Georgia, serif; }
.map-filters { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.map-count { font-size: 13px; color: #999; margin-left: auto; }
@keyframes gm-spin { to { transform: rotate(360deg); } }
.map-loading { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 1400;
	display: flex; align-items: center; gap: 9px; background: rgba(28,28,28,.96); color: #F5F5F0;
	border: 1px solid #333; border-radius: 20px; padding: 8px 16px; font-size: 13px; box-shadow: 0 4px 16px rgba(0,0,0,.45); }
.map-loading[hidden] { display: none; }
.map-loading-spin { width: 14px; height: 14px; border: 2px solid #444; border-top-color: #E8A838;
	border-radius: 50%; animation: gm-spin .7s linear infinite; }
.map-canvas-wrap { position: relative; }
#map-canvas { height: 78vh; min-height: 460px; width: 100%; background: #1A1A1A; }
.leaflet-container:focus, #map-canvas:focus, #map-canvas *:focus { outline: none; }
.map-hint { position: absolute; inset: 0; z-index: 1500; display: flex; align-items: center; justify-content: center;
	background: rgba(0,0,0,.5); color: #F5F5F0; font-size: 17px; font-weight: 600; pointer-events: none;
	opacity: 0; transition: opacity .2s; }
.map-hint.show { opacity: 1; }

.map-embed { max-width: 1040px; margin: 0 auto; border: 1px solid #333; border-radius: 10px; overflow: hidden; }
.map-embed #map-canvas { height: 60vh; min-height: 400px; }
.map-embed .map-toolbar h2 { font-size: 16px; }

.dp { position: relative; }
.dp-trigger { background: #222; color: #F5F5F0; border: 1px solid #333; border-radius: 8px; padding: 9px 14px;
	font: inherit; font-size: 14px; cursor: pointer; min-width: 190px; text-align: left; }
.dp-trigger.active { border-color: #E8A838; }
.dp-pop { position: absolute; top: calc(100% + 8px); left: 0; z-index: 2000; background: #1e1e1e;
	border: 1px solid #333; border-radius: 12px; padding: 14px; box-shadow: 0 14px 34px rgba(0,0,0,.55); }
.dp-head { display: flex; justify-content: space-between; position: absolute; top: 16px; left: 14px; right: 14px; pointer-events: none; }
.dp-nav { pointer-events: auto; background: none; border: none; color: #F5F5F0; font-size: 22px; line-height: 1; cursor: pointer; padding: 0 6px; }
.dp-nav:disabled { color: #555; cursor: default; }
.dp-months { display: flex; gap: 22px; }
.dp-month { width: 224px; }
.dp-month-name { text-align: center; font-weight: 600; color: #E8A838; font-size: 14px; margin-bottom: 10px; text-transform: capitalize; }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-wd { text-align: center; font-size: 11px; color: #888; padding: 2px 0 6px; }
.dp-day { text-align: center; padding: 7px 0; font-size: 13px; border-radius: 6px; cursor: pointer; user-select: none; }
.dp-day.empty { visibility: hidden; cursor: default; }
.dp-day.disabled { color: #555; cursor: default; }
.dp-day:not(.disabled):not(.empty):hover { background: #333; }
.dp-day.in-range { background: #3a3320; border-radius: 0; }
.dp-day.start, .dp-day.end { background: #E8A838; color: #1A1A1A; font-weight: 700; }
.dp-day.start { border-radius: 6px 0 0 6px; }
.dp-day.end { border-radius: 0 6px 6px 0; }
.dp-day.start.end { border-radius: 6px; }
.dp-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 10px; border-top: 1px solid #333; font-size: 13px; color: #999; }
.dp-clear { background: none; border: none; color: #E8A838; cursor: pointer; font: inherit; }

.guests { display: flex; align-items: center; gap: 9px; background: #222; border: 1px solid #333; border-radius: 8px; padding: 6px 10px; }
.g-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #444; background: #2a2a2a; color: #F5F5F0; cursor: pointer; font-size: 15px; line-height: 1; }
.g-btn:disabled { opacity: .4; cursor: default; }
.guests #g-val { min-width: 14px; text-align: center; font-size: 14px; }
.guests label { font-size: 12px; color: #999; }

.gm-switch { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none;
	font-size: 13px; color: #ccc; }
.gm-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.gm-switch-track { position: relative; flex: none; width: 36px; height: 20px; border-radius: 20px;
	background: #333; border: 1px solid #444; transition: background .15s, border-color .15s; }
.gm-switch-knob { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%;
	background: #888; transition: transform .15s, background .15s; }
.gm-switch input:checked + .gm-switch-track { background: #E8A838; border-color: #E8A838; }
.gm-switch input:checked + .gm-switch-track .gm-switch-knob { transform: translateX(16px); background: #1A1A1A; }
.gm-switch input:focus-visible + .gm-switch-track { box-shadow: 0 0 0 2px rgba(232,168,56,.4); }

.gm-pin { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50% 50% 50% 0;
	background: #E8A838; color: #1A1A1A; font-size: 13px; transform: rotate(-45deg); border: 2px solid #1A1A1A; box-shadow: 0 2px 5px rgba(0,0,0,.5); }
.gm-pin span { display: flex; transform: rotate(45deg); }
.gm-pill { display: inline-block; background: #E8A838; color: #1A1A1A; font-weight: 700; font-size: 12px;
	padding: 3px 8px; border-radius: 13px; border: 2px solid #1A1A1A; white-space: nowrap; box-shadow: 0 2px 5px rgba(0,0,0,.5); }
.gm-dot { width: 11px; height: 11px; border-radius: 50%; background: #5a5a52; opacity: .7; border: 1px solid #1A1A1A; }
.gm-pill-more { display: inline-flex; align-items: center; gap: 3px; }
.gm-pill-more svg { flex: none; }
.gm-pin, .gm-pill { transition: transform .12s ease; }
.leaflet-marker-icon:hover { z-index: 10000 !important; }
.leaflet-marker-icon:hover .gm-pill { transform: scale(1.2); }
.leaflet-marker-icon:hover .gm-pin { transform: rotate(-45deg) scale(1.2); }

.leaflet-popup-content-wrapper { background: #222; color: #F5F5F0; border-radius: 10px; position: relative; }
.leaflet-popup-tip { background: #222; }
.leaflet-popup-content { margin: 0; width: 230px !important; }

.leaflet-popup-tip-container { left: calc(50% + var(--tip-shift, 0px)); }
.gm-place-bottom .leaflet-popup-tip-container,
.gm-place-right .leaflet-popup-tip-container,
.gm-place-left .leaflet-popup-tip-container { display: none; }
.gm-place-bottom .leaflet-popup-content-wrapper::after,
.gm-place-right .leaflet-popup-content-wrapper::after,
.gm-place-left .leaflet-popup-content-wrapper::after { content: ''; position: absolute; border: 8px solid transparent; }
.gm-place-bottom .leaflet-popup-content-wrapper::after { border-top: 0; border-bottom-color: #222; top: -8px; left: calc(50% + var(--tip-shift, 0px)); margin-left: -8px; }
.gm-place-right .leaflet-popup-content-wrapper::after { border-left: 0; border-right-color: #222; left: -8px; top: calc(50% + var(--tip-shift, 0px)); margin-top: -8px; }
.gm-place-left .leaflet-popup-content-wrapper::after { border-right: 0; border-left-color: #222; right: -8px; top: calc(50% + var(--tip-shift, 0px)); margin-top: -8px; }
.gm-pop img { width: 100%; height: 120px; object-fit: cover; border-radius: 10px 10px 0 0; display: block; background: #333; }
.gm-pop-body { padding: 9px 11px 11px; }
.gm-pop-body h3 { margin: 0 0 4px; font-size: 14px; font-family: Lora, Georgia, serif; line-height: 1.25; }
.gm-pop-meta { font-size: 12px; color: #999; margin-bottom: 8px; }
.gm-pop-meta b { color: #E8A838; }
.gm-pop-price { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.gm-pop-price small { color: #999; font-weight: 400; }
.gm-pop-price.none { color: #999; font-weight: 400; font-size: 13px; }
.gm-pop a.gm-book { display: block; text-align: center; background: #E8A838; color: #1A1A1A;
	text-decoration: none; padding: 7px; border-radius: 6px; font-weight: 600; font-size: 13px; }
