.mobile-map-sheet { display: none; }

@media (max-width: 600px) {
  .mobile-map-sheet {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: max(0px, env(safe-area-inset-bottom));
    left: 0;
    display: block;
    max-height: min(72svh, 580px);
    padding: 10px 16px 16px;
    border-radius: 20px 20px 0 0;
    background: var(--surface);
    box-shadow: 0 -10px 28px rgba(23, 53, 47, 0.22);
  }
  .mobile-map-sheet__handle { width: 42px; height: 4px; margin: 0 auto 10px; border-radius: 999px; background: #b8c4bd; }
  .mobile-map-sheet__header { display: flex; gap: 10px; align-items: flex-start; justify-content: space-between; }
  .mobile-map-sheet__header h2 { margin: 0; color: var(--ink); font-size: 1.05rem; line-height: 1.45; }
  .mobile-map-sheet__close { flex: 0 0 auto; min-height: 36px; padding: 6px 10px; border: 0; border-radius: 10px; background: #e8efeb; color: var(--ink); font: inherit; }
  .mobile-map-sheet__body { max-height: calc(min(72svh, 580px) - 92px); padding: 10px 4px 2px 0; overflow-y: auto; }
  .mobile-map-sheet__address { margin: 0; color: var(--muted); line-height: 1.55; overflow-wrap: anywhere; }
  .mobile-map-sheet__facts { display: grid; gap: 6px; margin: 14px 0; }
  .mobile-map-sheet__facts div { display: grid; grid-template-columns: 7.2em 1fr; gap: 8px; }
  .mobile-map-sheet__facts dt { color: var(--muted); }
  .mobile-map-sheet__facts dd { margin: 0; color: var(--ink); font-weight: 700; }
  .mobile-map-sheet__actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .mobile-map-sheet__actions button { min-height: 44px; }
}
