/* GK public map — matches gk-landing tokens (cream / terracotta / sage). */
.gk-map-wrap {
	max-width: var(--gk-max, 1100px);
	margin: 0 auto;
	padding: 0 0 2rem;
	font-family: var(--gk-font, "Source Sans 3", sans-serif);
	color: var(--gk-ink, #17140f);
}

.gk-stats-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	justify-content: center;
	margin-bottom: 1.25rem;
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	background: var(--gk-cream, #f1ece1);
	border: 1px solid var(--gk-line, #d9d1c0);
}

.gk-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 88px;
}

.gk-stat-value {
	font-family: var(--gk-display, Fraunces, Georgia, serif);
	font-size: 1.85rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--gk-ink, #17140f);
}

.gk-stat-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--gk-muted, #6b6558);
	margin-top: 0.2rem;
}

.gk-map-layers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--gk-body, #4a453c);
}

.gk-layer-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 1px solid var(--gk-line, #d9d1c0);
	background: var(--gk-paper, #faf7f1);
	user-select: none;
}

.gk-layer-toggle input {
	accent-color: var(--gk-accent, #c1401f);
	width: 1rem;
	height: 1rem;
	margin: 0;
}

.gk-layer-swatch {
	display: inline-block;
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.gk-layer-swatch--open {
	background: #c1401f;
	border: 1px solid #a33519;
}

.gk-layer-swatch--shipped {
	background: transparent;
	border: 2.5px solid #3d6b4f;
	box-sizing: border-box;
}

.gk-map {
	width: 100%;
	height: 500px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--gk-line, #d9d1c0);
	box-shadow: 0 2px 12px rgba(23, 20, 15, 0.06);
}

.gk-marker-open {
	stroke: #a33519;
	fill: #c1401f;
}

.gk-marker-shipped {
	stroke: #3d6b4f;
	fill: #3d6b4f;
	fill-opacity: 0;
}
