* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	background: #0d0b08;
	color: #fff;
	overflow: hidden;
}

#map {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#map img[src^="data:image/svg+xml"] {
	transition: opacity 0.22s ease, filter 0.22s ease;
	will-change: opacity, filter;
}


/* =========================
	Header
========================= */

.app-header {
	position: fixed;
	top: 8px;
	left: 8px;
	right: 8px;
	height: 86px;
	z-index: 20;
	display: grid;
	grid-template-columns: 340px 1fr 340px;
	align-items: center;
	padding: 0 24px;
	background: rgba(8, 8, 8, 0.82);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.brand-logo-img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: block;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.96);
	border: 2px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	flex: 0 0 auto;
}

.brand-logo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 28%, #fff7d6 0 13%, transparent 14%),
		linear-gradient(135deg, #2c7a4b, #75b35c);
	border: 2px solid rgba(255, 255, 255, 0.85);
	display: grid;
	place-items: center;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
	flex: 0 0 auto;
}

.brand-logo svg {
	width: 34px;
	height: 34px;
}

.brand-text {
	min-width: 0;
}

.brand-name {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #f7d68a;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-copy {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-title {
	text-align: center;
	min-width: 0;
	position: relative;
}

.header-title h1 {
	margin: 0;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
	font-size: 31px;
	font-weight: 900;
	letter-spacing: 0.16em;
	color: #fff7e1;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-title h1 span {
	color: #f7d68a;
	font-size: 17px;
	vertical-align: middle;
	letter-spacing: 0;
}

.header-title .sub {
	position: relative;
	display: inline-block;
	margin-top: 1px;
	padding: 0 42px;
	font-size: 12px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.74);
	font-weight: 800;
	letter-spacing: 0.12em;
}

.header-title .sub::before,
.header-title .sub::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 34px;
	height: 1px;
	background: rgba(255, 255, 255, 0.18);
}

.header-title .sub::before {
	left: 0;
}

.header-title .sub::after {
	right: 0;
}

.header-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.map-type-toggle {
	display: inline-flex;
	align-items: center;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(247, 214, 138, 0.28);
	gap: 4px;
}

.map-type-button {
	border: 0;
	border-radius: 999px;
	padding: 8px 13px;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.map-type-button:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.map-type-button.active {
	background: linear-gradient(135deg, #f8d585, #d79b3e);
	color: #2a1a0d;
}

.header-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	color: #f7d68a;
	background: rgba(150, 99, 39, 0.22);
	border: 1px solid rgba(247, 214, 138, 0.38);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

/* =========================
	Left Menu
========================= */

.left-menu {
	position: fixed;
	top: 122px;
	left: 20px;
	width: 282px;
	z-index: 15;
	background: rgba(23, 20, 18, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(14px);
}

.menu-title {
	padding: 18px 20px;
	background: linear-gradient(135deg, rgba(139, 92, 39, 0.98), rgba(97, 62, 31, 0.98));
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.menu-title-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(247, 214, 138, 0.35);
	color: #f7d68a;
	flex: 0 0 auto;
}

.filter-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.filter-button {
	width: 100%;
	min-height: 72px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 15px 18px;
	border: 0;
	color: #fff;
	background: rgba(20, 19, 18, 0.88);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	text-align: left;
	font-size: 15px;
	font-weight: 900;
	transition: background 0.25s ease, opacity 0.25s ease;
}

.filter-button:hover {
	background: rgba(60, 47, 37, 0.96);
}

.filter-button.active {
	background: linear-gradient(135deg, rgba(139, 92, 39, 0.96), rgba(95, 63, 36, 0.96));
}

.filter-button.dimmed {
	opacity: 0.45;
}

.filter-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border: 1px solid rgba(247, 214, 138, 0.34);
	background: rgba(255, 255, 255, 0.08);
	color: #f7d68a;
}

.filter-text {
	line-height: 1.5;
}

/* =========================
	Side Panel
========================= */

.side-panel {
	position: fixed;
	top: 122px;
	right: 20px;
	width: min(420px, calc(100vw - 40px));
	z-index: 15;
	background: linear-gradient(145deg, rgba(83, 57, 35, 0.94), rgba(48, 36, 28, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
	backdrop-filter: blur(18px);
	overflow: hidden;
	transition: transform 0.32s ease, opacity 0.32s ease;
}

.side-panel.is-hidden {
	transform: translateX(calc(100% + 40px));
	opacity: 0;
	pointer-events: none;
}

.panel-inner {
	padding: 26px 28px 28px;
}

.panel-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 18px;
}

.panel-title-wrap {
	min-width: 0;
}

.panel-kicker {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 8px;
	color: #f7d68a;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.panel-title {
	margin: 0;
	color: #fff7e1;
	font-size: 22px;
	line-height: 1.45;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.panel-address {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	line-height: 1.6;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.close-panel {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	flex: 0 0 auto;
	transition: background 0.2s ease;
}

.close-panel:hover {
	background: rgba(255, 255, 255, 0.22);
}

.panel-description {
	margin: 18px 0 0;
	padding: 16px 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.9;
	font-weight: 700;
	border-top: 1px dashed rgba(255, 255, 255, 0.18);
	border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 20px;
}

.tag {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(196, 143, 68, 0.42);
	border: 1px solid rgba(247, 214, 138, 0.28);
	color: #ffe3a4;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.action-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.action-button {
	min-height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	color: #24180d;
	background: linear-gradient(135deg, #f8d585, #d79b3e);
	text-decoration: none;
	font-size: 14px;
	font-weight: 900;
	border: 1px solid rgba(255, 255, 255, 0.26);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
	transition: transform 0.22s ease, filter 0.22s ease;
	cursor: pointer;
}

.action-button:hover {
	transform: translateY(-2px);
	filter: brightness(1.04);
}

.action-button.disabled {
	background: rgba(180, 180, 180, 0.28);
	color: rgba(255, 255, 255, 0.42);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
}

/* =========================
	Camp List
========================= */

.camp-list-panel {
	position: fixed;
	left: 20px;
	bottom: 20px;
	width: 320px;
	z-index: 14;
	background: rgba(13, 12, 11, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.44);
	backdrop-filter: blur(14px);
	overflow: hidden;
}

.camp-list-title {
	padding: 14px 18px;
	color: #f7d68a;
	font-size: 13px;
	font-weight: 900;
	background: rgba(91, 65, 39, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.camp-list-count {
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.camp-list {
	max-height: 330px;
	overflow: auto;
}

.camp-list-button {
	width: 100%;
	border: 0;
	display: block;
	text-align: left;
	padding: 14px 18px;
	color: rgba(255, 255, 255, 0.88);
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	font-weight: 800;
	transition: background 0.22s ease;
}

.camp-list-button:hover,
.camp-list-button.active {
	background: rgba(139, 92, 39, 0.48);
}

.camp-list-button small {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;
}

.camp-list-empty {
	padding: 18px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.8;
	font-weight: 700;
}

.camp-list-more {
	padding: 12px 18px;
	color: #f7d68a;
	font-size: 12px;
	line-height: 1.6;
	font-weight: 800;
	background: rgba(139, 92, 39, 0.26);
}

/* =========================
	Status
========================= */

.map-status {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 40;
	max-width: calc(100vw - 40px);
	display: none;
	padding: 12px 16px;
	background: rgba(10, 10, 10, 0.82);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.map-status.show {
	display: block;
}

/* =========================
	Google Info Window
========================= */

.gm-style .gm-style-iw-c {
	padding: 0 !important;
	border-radius: 18px !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.gm-style .gm-style-iw-d {
	overflow: visible !important;
	padding: 0 !important;
	max-height: none !important;
}

.gm-style .gm-style-iw-tc::after {
	background: #2a2119 !important;
	box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.22) !important;
}

.gm-style .gm-ui-hover-effect {
	display: none !important;
}

.mini-window {
	position: relative;
	min-width: 270px;
	background: #2a2119;
	color: #fff;
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
	padding: 18px 52px 18px 20px;
	overflow: hidden;
}

.mini-window-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
	padding: 0;
}

.mini-window-close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.mini-window-close svg {
	width: 14px;
	height: 14px;
	display: block;
}

.mini-window-title {
	margin: 0;
	color: #f7d68a;
	font-weight: 900;
	font-size: 16px;
	line-height: 1.5;
}

.mini-window-address {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
	line-height: 1.6;
	font-weight: 700;
}


.camp-list-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.camp-list-name {
	min-width: 0;
	line-height: 1.45;
}

.camp-list-vr-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, #fff0b8, #d79b3e);
	color: #24180d;
	border: 1px solid rgba(255, 255, 255, 0.55);
	box-shadow: 0 6px 16px rgba(247, 214, 138, 0.22);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.camp-list-vr-badge svg {
	width: 13px;
	height: 13px;
	display: block;
}

.panel-vr-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 9px;
	border-radius: 999px;
	background: linear-gradient(135deg, #fff0b8, #d79b3e);
	color: #24180d;
	border: 1px solid rgba(255, 255, 255, 0.5);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 18px rgba(247, 214, 138, 0.18);
}

/* =========================
	Responsive
========================= */

@media (max-width: 1180px) {
	.app-header {
		grid-template-columns: 250px 1fr 320px;
	}

	.header-title h1 {
		font-size: 24px;
	}

	.brand-name {
		font-size: 18px;
	}

	.left-menu {
		width: 250px;
	}

	.camp-list-panel {
		width: 280px;
	}

	.map-type-button {
		padding: 7px 10px;
	}
}

@media (max-width: 900px) {
	body {
		overflow: hidden;
	}

	.app-header {
		top: 8px;
		left: 8px;
		right: 8px;
		height: auto;
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 10px 12px 12px;
		border-radius: 16px;
	}

	.brand {
		justify-content: center;
		gap: 9px;
	}

	.brand-logo-img,
	.brand-logo {
		width: 42px;
		height: 42px;
	}

	.brand-name {
		font-size: 17px;
		line-height: 1.2;
	}

	.brand-copy {
		display: none;
	}

	.header-title h1 {
		font-size: 18px;
		letter-spacing: 0.12em;
		line-height: 1.2;
	}

	.header-title h1 span {
		font-size: 12px;
	}

	.header-title .sub {
		margin-top: 2px;
		padding: 0 28px;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: 0.08em;
	}

	.header-title .sub::before,
	.header-title .sub::after {
		width: 22px;
	}

	.header-actions {
		justify-content: center;
		flex-wrap: nowrap;
		gap: 8px;
		margin-top: 4px;
	}

	.map-type-toggle {
		padding: 3px;
		gap: 3px;
	}

	.map-type-button {
		padding: 7px 11px;
		font-size: 11px;
	}

	.header-pill {
		padding: 8px 11px;
		font-size: 11px;
	}

	.left-menu {
		top: 136px;
		left: 8px;
		right: 8px;
		width: auto;
		border-radius: 14px;
		background: rgba(13, 12, 11, 0.86);
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		backdrop-filter: blur(14px);
	}

	.filter-list {
		display: flex;
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
	}

	.filter-list li {
		flex: 0 0 auto;
	}

	.filter-button {
		width: auto;
		min-height: 44px;
		gap: 8px;
		padding: 9px 13px;
		border-bottom: 0;
		border-right: 1px solid rgba(255, 255, 255, 0.08);
		font-size: 12px;
		line-height: 1.3;
		white-space: nowrap;
	}

	.filter-icon {
		width: 26px;
		height: 26px;
	}

	.filter-icon svg {
		width: 15px;
		height: 15px;
	}

	.filter-text {
		line-height: 1.3;
	}

	.camp-list-panel {
		display: none;
	}

	.side-panel {
		top: auto;
		left: 8px;
		right: 8px;
		bottom: 8px;
		width: auto;
		max-height: 44vh;
		border-radius: 18px;
		overflow-y: auto;
		transform: none;
	}

	.side-panel.is-hidden {
		transform: translateY(calc(100% + 24px));
		opacity: 0;
		pointer-events: none;
	}

	.panel-inner {
		padding: 16px 18px 18px;
	}

	.panel-head {
		gap: 12px;
		margin-bottom: 12px;
	}

	.panel-kicker {
		margin-bottom: 5px;
		font-size: 11px;
	}

	.panel-title {
		font-size: 19px;
		line-height: 1.35;
		letter-spacing: 0.03em;
	}

	.panel-address {
		margin-top: 5px;
		font-size: 10px;
		line-height: 1.5;
	}

	.close-panel {
		width: 30px;
		height: 30px;
	}

	.panel-description {
		margin: 12px 0 0;
		padding: 12px 0;
		font-size: 12px;
		line-height: 1.75;
	}

	.tag-list {
		gap: 7px;
		margin-top: 13px;
	}

	.tag {
		min-height: 28px;
		padding: 6px 10px;
		font-size: 10px;
	}

	.action-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
		margin-top: 16px;
	}

	.action-button {
		min-height: 42px;
		border-radius: 12px;
		padding: 9px 8px;
		font-size: 12px;
	}

	.action-button svg {
		width: 15px;
		height: 15px;
	}

	.map-status {
		bottom: 72px;
		font-size: 11px;
		padding: 9px 12px;
	}

	.mini-window {
		min-width: 220px;
		padding: 14px 44px 14px 16px;
		border-radius: 15px;
	}

	.mini-window-title {
		font-size: 13px;
	}

	.mini-window-address {
		font-size: 10px;
	}

	.mini-window-close {
		width: 26px;
		height: 26px;
		top: 8px;
		right: 8px;
	}

	#map {
		height: 100dvh;
	}
}
@media (max-width: 900px) {
	.app-header {
		top: 8px;
		left: 8px;
		right: 8px;
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"brand title"
			"actions actions";
		align-items: center;
		gap: 6px 10px;
		padding: 10px 12px 12px;
		border-radius: 16px;
	}

	.brand {
		grid-area: brand;
		justify-content: flex-start;
		gap: 0;
	}

	.brand-logo-img,
	.brand-logo {
		width: 44px;
		height: 44px;
	}

	.brand-text {
		display: none;
	}

	.brand-name,
	.brand-copy {
		display: none;
	}

	.header-title {
		grid-area: title;
		text-align: left;
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-width: 0;
	}

	.header-title h1 {
		font-size: 18px;
		line-height: 1.25;
		letter-spacing: 0.12em;
		text-align: left;
		white-space: nowrap;
	}

	.header-title h1 span {
		font-size: 11px;
		margin: 0 2px;
	}

	.header-title .sub {
		margin-top: 2px;
		padding: 0;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: 0.06em;
		text-align: left;
	}

	.header-title .sub::before,
	.header-title .sub::after {
		display: none;
	}

	.header-actions {
		grid-area: actions;
		justify-content: center;
		flex-wrap: nowrap;
		gap: 8px;
		margin-top: 4px;
	}

	.map-type-toggle {
		padding: 3px;
		gap: 3px;
	}

	.map-type-button {
		padding: 7px 12px;
		font-size: 11px;
	}

	.header-pill {
		padding: 8px 12px;
		font-size: 11px;
	}
}

/* =========================
	Final Override: Mobile Slide Filter Menu
========================= */

.filter-toggle {
	display: none;
}

@media (min-width: 901px) {
	.left-menu {
		transform: none !important;
	}

	.left-menu.is-collapsed {
		transform: none !important;
	}

	.filter-toggle {
		display: none !important;
	}
}

@media (max-width: 900px) {
	.left-menu {
		top: 124px !important;
		left: 8px !important;
		right: auto !important;
		width: 238px !important;
		max-height: calc(100dvh - 220px) !important;
		border-radius: 16px !important;
		overflow: visible !important;
		background: rgba(13, 12, 11, 0.92) !important;
		box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45) !important;
		backdrop-filter: blur(14px) !important;
		transform: translateX(0) !important;
		transition: transform 0.28s ease !important;
		z-index: 17 !important;
		white-space: normal !important;
	}

	.left-menu.is-collapsed {
		transform: translateX(calc(-100% - 10px)) !important;
	}

	.filter-toggle {
		position: absolute !important;
		top: 0 !important;
		right: -50px !important;
		width: 46px !important;
		height: 52px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 3px !important;
		border: 1px solid rgba(247, 214, 138, 0.38) !important;
		border-radius: 0 14px 14px 0 !important;
		background: rgba(91, 65, 39, 0.95) !important;
		color: #fff7e1 !important;
		cursor: pointer !important;
		box-shadow: 8px 12px 28px rgba(0, 0, 0, 0.32) !important;
		z-index: 3 !important;
		padding: 0 !important;
		font-family: inherit !important;
	}

	.filter-toggle-icon {
		color: #f7d68a !important;
		font-size: 17px !important;
		line-height: 1 !important;
		font-weight: 900 !important;
	}

	.filter-toggle-text {
		font-size: 10px !important;
		font-weight: 900 !important;
		line-height: 1 !important;
		letter-spacing: 0.04em !important;
	}

	.filter-list {
		display: block !important;
		width: 100% !important;
		min-width: 0 !important;
		max-height: calc(100dvh - 220px) !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		padding: 0 !important;
		margin: 0 !important;
		white-space: normal !important;
	}

	.filter-list li {
		display: block !important;
		width: 100% !important;
		flex: none !important;
	}

	.filter-button {
		width: 100% !important;
		min-height: 56px !important;
		display: flex !important;
		align-items: center !important;
		gap: 10px !important;
		padding: 12px 14px !important;
		border-right: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
		font-size: 12px !important;
		line-height: 1.35 !important;
		white-space: normal !important;
		text-align: left !important;
	}

	.filter-icon {
		width: 30px !important;
		height: 30px !important;
		flex: 0 0 auto !important;
	}

	.filter-icon svg {
		width: 16px !important;
		height: 16px !important;
	}

	.filter-text {
		line-height: 1.35 !important;
		white-space: normal !important;
	}

	.filter-button.active {
		background: linear-gradient(135deg, rgba(139, 92, 39, 0.98), rgba(95, 63, 36, 0.98)) !important;
	}

	.filter-button.dimmed {
		opacity: 0.62 !important;
	}
}

@media (max-width: 900px) {
	.filter-toggle-icon {
		width: 22px !important;
		height: 22px !important;
		display: grid !important;
		place-items: center !important;
		color: #f7d68a !important;
	}

	.filter-toggle-icon svg {
		width: 18px !important;
		height: 18px !important;
		display: block !important;
		transition: transform 0.24s ease !important;
	}

	.filter-toggle.is-open .filter-toggle-icon svg {
		transform: rotate(180deg) !important;
	}

	.filter-toggle-text {
		margin-top: 1px !important;
	}
}
@media (max-width: 900px) {
	.left-menu {
		top: 154px !important;
		max-height: calc(100dvh - 250px) !important;
	}

	.filter-list {
		max-height: calc(100dvh - 250px) !important;
	}
}
/* =========================
	Compact Desktop Left Panels
========================= */

@media (min-width: 901px) {
	.filter-button {
		min-height: 60px;
		gap: 12px;
		padding: 11px 17px;
		font-size: 14px;
		line-height: 1.35;
	}

	.filter-icon {
		width: 30px;
		height: 30px;
	}

	.filter-icon svg {
		width: 16px;
		height: 16px;
	}

	.camp-list-panel {
		bottom: 18px;
	}

	.camp-list-title {
		padding: 11px 16px;
		font-size: 12px;
	}

	.camp-list-count {
		font-size: 10px;
	}

	.camp-list {
		max-height: 255px;
	}

	.camp-list-button {
		padding: 11px 16px;
		font-size: 13px;
		line-height: 1.45;
	}

	.camp-list-button small {
		margin-top: 3px;
		font-size: 10px;
		line-height: 1.4;
	}

	.camp-list-vr-badge {
		min-height: 24px;
		padding: 4px 8px;
		font-size: 10px;
	}

	.camp-list-more,
	.camp-list-empty {
		padding: 12px 16px;
		font-size: 12px;
		line-height: 1.65;
	}
}


/* =========================
	Travel Time Quick Card
========================= */

.panel-address {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
}

.panel-copy-address {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 23px;
	padding: 4px 9px;
	border: 1px solid rgba(247, 214, 138, 0.32);
	border-radius: 999px;
	background: rgba(247, 214, 138, 0.12);
	color: #f7d68a;
	font-family: inherit;
	font-size: 10px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.panel-copy-address:hover {
	background: rgba(247, 214, 138, 0.24);
	color: #fff7e1;
	transform: translateY(-1px);
}

.travel-time-card {
	position: fixed;
	left: 50%;
	bottom: 24px;
	width: min(560px, calc(100vw - 40px));
	z-index: 30;
	transform: translate(-50%, 18px);
	opacity: 0;
	pointer-events: none;
	padding: 18px 20px 20px;
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(58, 39, 27, 0.96), rgba(31, 24, 19, 0.95));
	border: 1px solid rgba(247, 214, 138, 0.24);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.52);
	backdrop-filter: blur(18px);
	transition: transform 0.26s ease, opacity 0.26s ease;
}

.travel-time-card.show {
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
}

.travel-time-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.travel-time-kicker {
	color: #f7d68a;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.travel-time-title {
	margin-top: 4px;
	color: #fff7e1;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 900;
	letter-spacing: 0.03em;
}

.travel-time-close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	flex: 0 0 auto;
	padding: 0;
	transition: background 0.2s ease;
}

.travel-time-close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.travel-time-close svg {
	width: 16px;
	height: 16px;
}

.travel-time-routes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.travel-time-route {
	padding: 14px 15px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(247, 214, 138, 0.18);
}

.travel-time-route.is-muted {
	opacity: 0.58;
}

.travel-time-route-label {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	line-height: 1.4;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.travel-time-route-value {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin-top: 7px;
	color: #fff7e1;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 900;
}

.travel-time-route-value span:last-child {
	color: #f7d68a;
}

.travel-time-note {
	margin: 13px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	line-height: 1.75;
	font-weight: 700;
}

.travel-time-map-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 14px;
	padding: 9px 15px;
	border-radius: 999px;
	color: #24180d;
	background: linear-gradient(135deg, #f8d585, #d79b3e);
	text-decoration: none;
	font-size: 13px;
	font-weight: 900;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.travel-time-loading,
.travel-time-error {
	padding: 14px 15px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(247, 214, 138, 0.18);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	line-height: 1.75;
	font-weight: 800;
}

@media (max-width: 900px) {
	.panel-address {
		gap: 5px;
	}

	.panel-copy-address {
		min-height: 21px;
		padding: 4px 8px;
		font-size: 9px;
	}

	.travel-time-card {
		left: 8px;
		right: 8px;
		bottom: 8px;
		width: auto;
		transform: translateY(18px);
		padding: 15px 16px 17px;
		border-radius: 18px;
	}

	.travel-time-card.show {
		transform: translateY(0);
	}

	.travel-time-title {
		font-size: 16px;
	}

	.travel-time-routes {
		grid-template-columns: 1fr;
	}

	.travel-time-route {
		padding: 12px 13px;
	}

	.travel-time-route-value {
		font-size: 16px;
	}
}


/* =========================
	Address Copy Button Refinement
========================= */

.panel-copy-address {
	white-space: nowrap;
}

@media (max-width: 900px) {
	.panel-copy-address {
		font-size: 9px;
		padding: 4px 8px;
	}
}


/* =========================
	Mobile Travel Slide Interaction
========================= */

@media (max-width: 900px) {
	.side-panel {
		transition: transform 0.52s cubic-bezier(0.22, 0.9, 0.28, 1), opacity 0.52s ease !important;
	}

	.side-panel.is-travel-hidden {
		transform: translateX(calc(100% + 24px)) !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}

	.travel-time-card {
		left: 8px !important;
		right: 8px !important;
		bottom: 8px !important;
		width: auto !important;
		transform: translateX(calc(-100% - 24px)) !important;
		opacity: 0 !important;
		transition: transform 0.52s cubic-bezier(0.22, 0.9, 0.28, 1), opacity 0.52s ease !important;
	}

	.travel-time-card.show {
		transform: translateX(0) !important;
		opacity: 1 !important;
	}
}


/* =========================
	Category Filter Accent
========================= */

.filter-button[data-category="auto"] .filter-icon,
.filter-button[data-category="rider"] .filter-icon,
.filter-button[data-category="rv"] .filter-icon {
	background: linear-gradient(135deg, rgba(247, 214, 138, 0.18), rgba(165, 106, 47, 0.18));
	box-shadow: 0 0 18px rgba(247, 214, 138, 0.12);
}

.filter-button[data-category="auto"].active,
.filter-button[data-category="rider"].active,
.filter-button[data-category="rv"].active {
	background: linear-gradient(135deg, rgba(151, 98, 44, 0.98), rgba(82, 55, 36, 0.98));
}


/* =========================
	Mobile Performance Patch
========================= */

@media (max-width: 900px) {
	#map img[src^="data:image/svg+xml"] {
		transition: none !important;
		will-change: auto !important;
		filter: none !important;
	}

	.app-header,
	.left-menu,
	.side-panel,
	.camp-list-panel,
	.travel-time-card,
	.map-status {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	.app-header,
	.left-menu,
	.side-panel,
	.travel-time-card {
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36) !important;
	}

	.filter-button,
	.action-button,
	.map-type-button,
	.panel-copy-address,
	.filter-toggle,
	.close-panel,
	.mini-window-close,
	.travel-time-close {
		transition: none !important;
	}

	.action-button:hover,
	.panel-copy-address:hover {
		transform: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}
