.iraq-map {
  width: 100%;
  height: 280px;
  min-height: 240px;
  border-radius: var(--radius-box, 0.5rem);
  z-index: 0;
  overflow: hidden;
  border: 1px solid var(--color-base-300, #ddd);
  touch-action: none;
}
.iraq-map-lg {
  height: min(52vh, 420px);
  min-height: 300px;
}
/* iPhone */
@media (max-width: 640px) {
  .iraq-map {
    height: min(38vh, 240px);
    min-height: 200px;
  }
  .iraq-map-lg {
    height: min(42dvh, 320px);
    min-height: 220px;
  }
}
/* iPad portrait */
@media (min-width: 768px) and (max-width: 1023px) {
  .iraq-map {
    height: min(40vh, 360px);
    min-height: 280px;
  }
  .iraq-map-lg {
    height: min(48vh, 480px);
    min-height: 340px;
  }
}
.iraq-map .maplibregl-canvas {
  outline: none;
}
/* Hide map vendor chrome (aqariraq pattern). */
.iraq-map .maplibregl-ctrl-attrib,
.iraq-map .maplibregl-compact-attrib,
.iraq-map .maplibregl-ctrl-logo {
  display: none !important;
}
.iraq-map .maplibregl-marker {
  transition: none !important;
}
.iraq-map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  color: #fff;
  font: 700 12px/1 system-ui, sans-serif;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgb(0 0 0 / 35%);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
@media (pointer: coarse) {
  .iraq-map-pin {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.iraq-map-pin-shop {
  background: #0f766e;
  cursor: default;
}
.iraq-map-pin-dest {
  background: #b45309;
}
