.dsp-locator { max-width: 1200px; margin: 0 auto; padding: 24px 16px; }
.dsp-locator h2 { margin: 0 0 6px; font-size: 40px; line-height: 1.05; }
.dsp-locator .subtitle { margin: 0 0 16px; opacity: .75; font-size: 18px; }

.dsp-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  padding: 12px; border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px; background: #fff;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
}

.dsp-toolbar input[type="text"],
.dsp-toolbar select {
  height: 38px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 0 10px; outline: none;
  background: #fff;
  width: 19rem;
}

.dsp-toolbar .button {
  /* border-radius: 10px !important; */
  padding: 8px 12px !important;
  line-height: 1 !important;
}

.dsp-status { margin: 12px 2px 18px; opacity: .75; }

.dsp-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; align-items: start; }

.dsp-map {
  position: sticky; top: 18px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  background: #f6f6f6;
}

#dspMap { height: 640px; }

.dsp-results {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
  background: #fff;
  overflow: hidden;
}

.dsp-distance { margin-top: 8px; opacity: .9; }

.dsp-locator-list {
  max-height: 640px;
  overflow: auto;
  padding: 12px;
}

/* Cards */
.dsp-item {
  padding: 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  margin-bottom: 10px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.dsp-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.14);
}
.dsp-item.is-active {
  border-color: rgba(0,0,0,.25);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.dsp-item .dsp-title { font-weight: 650; font-size: 18px; margin-bottom: 4px; }
.dsp-item .dsp-meta { opacity: .85; }
.dsp-item .button { border-radius: 10px !important; }

/* Mobile */
@media (max-width: 900px) {
  .dsp-layout { grid-template-columns: 1fr; }
  .dsp-map { position: relative; top: auto; }
  #dspMap { height: 420px; }
  .dsp-locator-list { max-height: none; }
}

.dsp-company {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.dsp-company-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.dsp-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
  background: #f3f3f3;
}
.dsp-logo--fallback { display: inline-block; }

.dsp-company-name { font-weight: 650; font-size: 18px; line-height: 1.2; }
.dsp-company-sub { opacity: .75; font-size: 14px; margin-top: 2px; }
.dsp-company-actions .button { padding: 8px 10px !important; }

.dsp-company-body { padding: 12px 14px; }
.dsp-company-main { min-width: 10rem; }
.dsp-location {
  padding: 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  margin-bottom: 10px;
}
.dsp-location:last-child { margin-bottom: 0; }

.dsp-location.is-hidden { display: none; }

.dsp-location-title { font-weight: 600; margin-bottom: 4px; }
.dsp-meta { opacity: .85; }
.dsp-distance { margin-top: 8px; opacity: .9; }

/* Actions: 2 buttons side-by-side (grid), no wrapping */
.dsp-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.dsp-actions .button{
  width: 100%;
  text-align: center;
  border-radius: 999px !important;
  padding: 10px 14px !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}

/* If very small screens, stack buttons */
@media (max-width: 420px) {
  .dsp-actions{
    grid-template-columns: 1fr;
  }
}

/* Contact button under the two buttons, centered */
.dsp-contact-link{
  text-align: center;
  margin-top: 10px;
}

.dsp-contact-button{
  display: inline-block;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  line-height: 1.1 !important;
  background: #1ecb6b !important;
  color: #fff !important;
  border: none !important;
  text-decoration: none !important;
}

.dsp-contact-button:hover{
  background: #18b85f !important;
  color: #fff !important;
}

