/* Parkkarten-Modul — Freizeit-Land Digital Core Konzept (YJAR) */
.parkmap-root { position: relative; display: flex; flex-direction: column; gap: 10px; }

.map-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.map-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.map-filter {
  font-family: var(--body); font-weight: 600; font-size: 13.5px; padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink-soft); cursor: pointer;
}
.map-filter.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.map-zoom { display: flex; gap: 4px; }
.map-zoom button {
  width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 17px; cursor: pointer; color: var(--forest-deep);
}

.map-stage {
  position: relative; aspect-ratio: 4 / 3; width: 100%; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); background: #cfe6d6; touch-action: none; cursor: grab; box-shadow: var(--shadow-lift);
}
.map-stage:active { cursor: grabbing; }
.map-canvas { position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; transform-origin: center; }
.map-bg { position: absolute; inset: 0; width: 100%; height: 100%; }

.map-labels { position: absolute; inset: 0; pointer-events: none; }
.map-zone-label {
  position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 700; font-size: 13px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.5);
  background: rgba(20, 20, 15, .28); padding: 4px 10px; border-radius: 999px; white-space: nowrap; backdrop-filter: blur(1px);
}

.map-pins { position: absolute; inset: 0; }
.map-pin {
  position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center;
  border: none; background: none; cursor: pointer; padding: 0;
}
.map-pin .dot {
  width: 30px; height: 30px; border-radius: 50% 50% 50% 4px; transform: rotate(45deg);
  background: var(--paper); border: 2px solid var(--forest-deep); display: flex; align-items: center; justify-content: center;
  font-size: 14px; box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.map-pin .dot span { transform: rotate(-45deg); display: block; }
.map-pin.neu .dot { border-color: var(--amber-deep); background: #fff4de; }
.map-pin .badge {
  position: absolute; top: -6px; right: -6px; background: var(--amber); color: var(--amber-ink); font-size: 9px;
  font-weight: 800; padding: 1px 5px; border-radius: 999px; transform: none; font-family: var(--body);
}
.map-pin:hover .dot { transform: rotate(45deg) scale(1.12); }

.map-hint { font-size: 13px; color: var(--ink-soft); margin: 0; }

.poi-backdrop { position: fixed; inset: 0; background: rgba(20,16,10,.4); z-index: 60; }
.poi-sheet {
  position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); width: min(480px, 100%); max-height: 78vh;
  overflow-y: auto; background: var(--paper); border-radius: 18px 18px 0 0; padding: 26px 24px 30px; z-index: 61;
  box-shadow: 0 -12px 30px rgba(0,0,0,.25);
}
@media (min-width: 720px) {
  .poi-sheet { left: auto; right: 5%; bottom: 5%; transform: none; width: 360px; border-radius: 18px; max-height: 70vh; }
}
.poi-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 50%; border: none;
  background: var(--bg-soft); font-size: 15px; cursor: pointer; color: var(--ink-soft);
}
.poi-sheet h3 { font-size: 20px; margin-bottom: 4px; }
.poi-zone { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; }
.poi-sheet p { font-size: 15px; color: var(--ink-soft); }
.poi-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 13.5px; font-weight: 700;
  color: var(--forest); text-decoration: none; border-bottom: 1px solid currentColor;
}
.poi-badge-new { display: inline-block; background: var(--amber); color: var(--amber-ink); font-size: 11px; font-weight: 800;
  padding: 2px 9px; border-radius: 999px; margin-bottom: 8px; }
.poi-facts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.poi-fact { font-family: var(--body); font-size: 12.5px; font-weight: 600; background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-soft); padding: 4px 10px; border-radius: 999px; }
