.services-track {
  display: grid;
  gap: 28px;
}

.services-track-head {
  max-width: 52ch;
}

.track-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.map-shell {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
}

#tracking-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.map-overlay {
  position: absolute;
  z-index: 500;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  font-weight: 600;
}

.map-overlay-eta {
  top: 16px;
  left: 16px;
}

.map-overlay-status {
  top: 16px;
  right: 16px;
}

.eta-label {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eta-value {
  font-size: 1.2rem;
  color: var(--black);
}

.track-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-fallback-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 320;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.location-fallback-item {
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
}

.location-fallback-item:hover {
  background: rgba(39, 110, 241, 0.08);
}

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.city-list-item,
.city-list-empty {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
}

.city-list-item:hover {
  background: rgba(39, 110, 241, 0.08);
}

.city-list-empty {
  color: var(--gray-500);
  cursor: default;
}

@media screen and (max-width: 960px) {
  .track-panel {
    grid-template-columns: 1fr;
  }
}
