.km-mapModal { position: fixed; inset: 0; display: none; z-index: 99999; }
.km-mapModal.is-open { display: block; }

.km-mapModal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }

.km-mapModal__dialog {
  position: relative;
  max-width: 980px;
  width: calc(100% - 32px);
  margin: 48px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.km-mapModal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 40px; height: 40px;
  border: 0; border-radius: 10px;
  background: rgba(0,0,0,.06);
  font-size: 26px; line-height: 40px;
  cursor: pointer;
}

.km-mapModal__header { padding: 18px 18px 10px; }
.km-mapModal__title { font-size: 18px; font-weight: 700; }
.km-mapModal__subtitle { font-size: 13px; opacity: .7; margin-top: 4px; }

.km-mapModal__body { padding: 0 18px 18px; }
.km-mapModal__iframeWrap { width: 100%; aspect-ratio: 16 / 9; background: #f3f3f3; border-radius: 14px; overflow: hidden; }
.km-mapModal__iframeWrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.km-mapModal__footer { padding: 0 18px 18px; display: flex; justify-content: flex-end; gap: 10px; }

/* jednoduché tlačítko (přizpůsob si podle KM stylů) */
.km-btn { padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(0,0,0,.12); cursor: pointer; }
.km-btn--primary { background: #eb3b84; color: #fff; border-color: transparent; }
.km-btn--ghost { background: #fff; }
