.scroll-page.electrode-bg {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 68%, rgba(255,255,255,0.74) 100%),
    radial-gradient(circle at 92% 18%, rgba(179,0,0,0.12), transparent 28%),
    repeating-linear-gradient(132deg, rgba(19,26,40,0.08) 0 8px, transparent 8px 22px),
    #ffffff;
  background-attachment: fixed;
}

.dealer-hero {
  position: relative;
  overflow: hidden;
}

.dealer-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 20px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(179,0,0,0.11), transparent 58%),
    repeating-linear-gradient(145deg, rgba(19,26,40,0.14) 0 10px, transparent 10px 24px);
  opacity: 0.7;
  pointer-events: none;
}

.dealer-map-card {
  position: relative;
  z-index: 1;
  border-color: rgba(179,0,0,0.18);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
}

.dealer-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr;
  gap: 22px;
  align-items: start;
}

.dealer-controls {
  position: sticky;
  top: 96px;
}

.dealer-controls label {
  display: block;
  font-weight: 700;
  margin: 14px 0 6px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.dealer-card {
  min-height: 100%;
}

.dealer-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.dealer-title-row .badge {
  margin-bottom: 10px;
}

.distance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f6f8fb;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.empty-state {
  border-style: dashed;
  background: rgba(255,255,255,0.9);
}

.small-note {
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .dealer-layout {
    grid-template-columns: 1fr;
  }

  .dealer-controls {
    position: static;
  }
}

@media (max-width: 720px) {
  .results-header,
  .dealer-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
