.rad-map-frame--realistic {
  position: relative;
  min-height: 460px;
  padding: 0;
  background: #eef3f4;
}

.rad-real-map {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  background: #e8ecee;
  user-select: none;
  -webkit-user-select: none;
}

.rad-real-map__svg {
  display: block;
  width: 100%;
  height: min(58vw, 560px);
  min-height: 460px;
  cursor: grab;
  touch-action: none;
  background: #e8ecee;
  user-select: none;
  -webkit-user-select: none;
}

.rad-real-map__svg.is-dragging {
  cursor: grabbing;
}

.rad-real-map__background {
  fill: #e6eaec;
}

.rad-real-map__sea {
  fill: #cbeaf6;
}

.rad-map-shape {
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
  transition: opacity 0.18s ease, stroke-width 0.18s ease, filter 0.18s ease;
}

.rad-map-shape--main {
  fill: rgba(185, 220, 240, 0.9);
  stroke: #1d6f91;
}

.rad-map-shape--fee-sm {
  fill: rgba(255, 228, 190, 0.83);
  stroke: #f88018;
}

.rad-map-shape--fee {
  fill: rgba(255, 228, 190, 0.83);
  stroke: #f88018;
}

.rad-map-shape--hippolyte {
  fill: rgba(201, 240, 216, 0.9);
  stroke: #168b52;
}

.rad-map-shape--fee-h {
  fill: rgba(255, 228, 190, 0.83);
  stroke: #f88018;
}

.rad-map-shape--out {
  fill: rgba(230, 234, 236, 0.75);
  stroke: #8f969a;
}

.rad-map-shape--zone_sans_frais {
  fill: rgba(207, 239, 218, 0.9);
  stroke: #168b52;
}

.rad-map-shape--zone_avec_frais_km {
  fill: rgba(255, 221, 184, 0.88);
  stroke: #f88018;
}

.rad-map-shape--zone_a_verifier {
  fill: rgba(255, 241, 168, 0.92);
  stroke: #d99b00;
}

.rad-map-shape--zone_non_referencee {
  fill: rgba(230, 234, 236, 0.72);
  stroke: #8f969a;
}

.rad-map-point {
  stroke: #fff;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.rad-map-point--main {
  fill: #1d6f91;
}

.rad-map-point--fee-sm {
  fill: #f88018;
}

.rad-map-point--fee {
  fill: #f88018;
}

.rad-map-point--hippolyte {
  fill: #168b52;
}

.rad-map-point--fee-h {
  fill: #f88018;
}

.rad-map-point--out {
  fill: #8f969a;
}

.rad-map-point--zone_sans_frais {
  fill: #168b52;
}

.rad-map-point--zone_avec_frais_km {
  fill: #f88018;
}

.rad-map-point--zone_a_verifier {
  fill: #d99b00;
}

.rad-map-point--zone_non_referencee {
  fill: #8f969a;
}

.rad-map-label {
  fill: #001020;
  stroke: rgba(252, 251, 247, 0.92);
  stroke-width: 3.4px;
  paint-order: stroke;
  stroke-linejoin: round;
  text-anchor: middle;
  dominant-baseline: central;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.rad-map-label--zone_sans_frais {
  fill: #0f6c3e;
}

.rad-map-label--zone_avec_frais_km {
  fill: #9a4b00;
}

.rad-map-label--zone_a_verifier {
  fill: #7b5a00;
}

.rad-map-label--zone_non_referencee {
  fill: #4f575b;
}

.rad-map-shape[data-clickable="true"],
.rad-map-point[data-clickable="true"] {
  cursor: pointer;
}

.rad-map-label--secondary {
  font-size: 11.5px;
  font-weight: 700;
}

.rad-real-map.is-overview .rad-map-label--secondary:not(.is-highlighted) {
  display: none;
}

.rad-map-label.is-label-hidden {
  display: none;
}

.rad-map-shape.is-dimmed {
  opacity: 0.34;
}

.rad-map-shape.is-highlighted,
.rad-map-point.is-highlighted {
  filter: drop-shadow(0 0 7px rgba(0, 16, 32, 0.34));
  opacity: 1;
  stroke-width: 3;
}

.rad-map-label.is-highlighted {
  font-weight: 900;
}

.rad-map-controls {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.35rem;
  border: 1px solid rgba(7, 26, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(7, 26, 43, 0.12);
}

.rad-map-controls button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #bed5da;
  border-radius: 8px;
  background: #fff;
  color: #001020;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
}

.rad-map-controls button[data-map-reset] {
  min-width: 112px;
  padding: 0 0.75rem;
  font-size: 0.9rem;
}

.rad-map-controls button:hover,
.rad-map-controls button:focus-visible {
  background: #ddeff8;
  border-color: #3888a0;
  outline: none;
}

.rad-swatch--fee-h {
  background: #fff0d9;
  border-color: #d66b00;
}

@media (max-width: 760px) {
  .rad-map-frame--realistic,
  .rad-real-map {
    min-height: 360px;
  }

  .rad-real-map__svg {
    height: 380px;
    min-height: 360px;
  }

  .rad-map-controls {
    right: 0.55rem;
    top: 0.55rem;
    gap: 0.25rem;
  }

  .rad-map-controls button {
    min-width: 38px;
    min-height: 38px;
  }

  .rad-map-controls button[data-map-reset] {
    min-width: 92px;
    font-size: 0.82rem;
  }

  .rad-map-label {
    font-size: 13px;
  }

  .rad-map-label--secondary {
    display: none;
  }
}

@media (max-width: 430px) {
  .rad-map-frame--realistic,
  .rad-real-map {
    min-height: 330px;
  }

  .rad-real-map__svg {
    height: 340px;
    min-height: 330px;
  }

  .rad-map-controls {
    left: 0.5rem;
    right: 0.5rem;
    justify-content: center;
  }
}
