.operations-map-shell {
  position: relative;
  height: 560px;
  overflow: hidden;
  border: 1px solid #d6dade;
  border-radius: var(--card-radius);
  background: #dce3e7;
}

.operations-map {
  width: 100%;
  height: 100%;
  background: #dce3e7;
}

.operations-map__status {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 500;
  padding: 9px 14px;
  border-radius: 3px;
  background: rgba(26, 37, 45, .9);
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}

.operations-map__status:empty {
  display: none;
}

.operations-map__panel {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 500;
  display: grid;
  width: min(280px, calc(100% - 48px));
  padding: 20px 22px;
  border-left: 4px solid #b60032;
  border-radius: var(--card-radius-compact);
  background: rgba(255, 255, 255, .95);
  color: #17242d;
  box-shadow: 0 14px 35px rgba(20, 31, 38, .22);
  backdrop-filter: blur(10px);
}

.operations-map__panel small {
  margin-bottom: 9px;
  color: #b60032;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.operations-map__panel h4 {
  margin: 0;
  color: #111b21;
  font-size: 17px;
  line-height: 1.25;
}

.operations-map__panel span {
  margin-top: 6px;
  color: #5b6870;
  font-size: 11px;
  line-height: 1.5;
}

.operations-map__panel button {
  width: fit-content;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid #b60032;
  background: transparent;
  color: #9c002b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.operations-map__panel button:hover,
.operations-map__panel button:focus-visible {
  background: #b60032;
  color: #fff;
}

.operations-map__panel button:focus-visible {
  outline: 3px solid rgba(182, 0, 50, .25);
  outline-offset: 3px;
}

.operations-map .leaflet-control-zoom {
  border: 0;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(20, 31, 38, .2);
}

.operations-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  border-bottom-color: #e3e6e8;
  color: #17242d;
  font: 22px/38px Georgia, serif;
}

.operations-map .leaflet-control-attribution {
  padding: 3px 7px;
  background: rgba(255, 255, 255, .88);
  color: #4f5c64;
  font-size: 9px;
}

.operations-map .leaflet-control-attribution a {
  color: #8e0028;
}

.naftoon-map-marker {
  background: transparent;
  border: 0;
}

.naftoon-map-marker__pin {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 6px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #b60032;
  box-shadow: 0 3px 12px rgba(26, 37, 45, .42);
  transform: rotate(-45deg);
}

.naftoon-map-marker__pin::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(182, 0, 50, .5);
  border-radius: 50%;
  animation: real-map-pulse 2200ms ease-out infinite;
}

.operations-map .leaflet-popup-content-wrapper {
  border-radius: var(--card-radius-compact);
  box-shadow: 0 12px 30px rgba(20, 31, 38, .28);
}

.operations-map .leaflet-popup-content {
  min-width: 190px;
  margin: 16px 18px;
}

.map-popup {
  display: grid;
  gap: 4px;
}

.map-popup strong {
  color: #17242d;
  font-size: 14px;
}

.map-popup span,
.map-popup small {
  color: #637079;
  line-height: 1.45;
}

.operations-map__list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.operations-map__list li {
  border-bottom: 1px solid #d9dde0;
}

.operations-map__list button {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.operations-map__list strong {
  color: #17242d;
  font-size: 15px;
}

.operations-map__list span {
  color: #65717a;
  font-size: 13px;
  line-height: 1.5;
}

@keyframes real-map-pulse {
  0% { opacity: .75; transform: scale(.45); }
  75%, 100% { opacity: 0; transform: scale(2.2); }
}

@media (max-width: 767px) {
  .operations-map-shell {
    height: 430px;
  }

  .operations-map__panel {
    right: 12px;
    bottom: 28px;
    left: 12px;
    width: auto;
    padding: 14px 16px;
  }

  .operations-map__panel button {
    min-height: 44px;
  }

  .operations-map__list {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .naftoon-map-marker__pin::after {
    animation: none;
  }
}
