.dealers {
  margin: 90px 0;
  background: #ffffff;
}
@media (max-width: 900px) {
  .dealers {
    margin: 60px 0;
  }
}
.dealers__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .dealers__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dealers__head-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dealers__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 45px;
  color: #1a1a1a;
}
@media (max-width: 1200px) {
  .dealers__title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 900px) {
  .dealers__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.dealers__subtitle {
  margin: 8px 0 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
}
.dealers__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.dealers__filter {
  padding: 9px 17px;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  background: #ffffff;
  color: #6b7280;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 13.3px;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.15s ease;
}
.dealers__filter:hover:not(.is-active) {
  border-color: #ff8c00;
  color: #ff8c00;
}
.dealers__filter.is-active {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #ffffff;
}
.dealers__grid {
  display: grid;
  grid-template-columns: minmax(0, 826px) minmax(0, 400px);
  grid-gap: 14px;
  gap: 14px;
}
@media (max-width: 1200px) {
  .dealers__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  }
}
@media (max-width: 900px) {
  .dealers__grid {
    grid-template-columns: 1fr;
  }
}
.dealers__map-wrap {
  border-radius: 12px;
  overflow: hidden;
}
.dealers__map {
  width: 100%;
  height: 448px;
  background: #f5f7fb;
}
@media (max-width: 900px) {
  .dealers__map {
    height: 360px;
  }
}
.dealers__list {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 448px;
}
.dealers__list-head {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #1a1a1a;
  flex-shrink: 0;
}
.dealers__list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  flex: 1;
}
.dealers__empty {
  text-align: center;
  color: #8892a6;
  padding: 40px 20px;
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
}

.dealer-card {
  padding: 16px 16px 17px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.dealer-card:last-child {
  border-bottom: 0;
}
.dealer-card:hover {
  background: #fafbfc;
}
.dealer-card.is-highlighted {
  background: rgba(255, 140, 0, 0.08);
}
.dealer-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dealer-card__name {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25.6px;
  color: #1a1a1a;
}
.dealer-card__status {
  flex-shrink: 0;
  padding: 1px 8px 2.19px;
  border-radius: 100px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 19.2px;
  white-space: nowrap;
}
.dealer-card__status--active {
  background: #dcfce7;
  color: #166534;
}
.dealer-card__status--inactive {
  background: #fee2e2;
  color: #991b1b;
}
.dealer-card__addr {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.4px;
  color: #6b7280;
}
.dealer-card__phone {
  margin: 0;
  padding-top: 4px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.4px;
}
.dealer-card__phone a {
  color: #ff8c00;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.dealer-card__phone a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.leaflet-popup-content {
  margin: 12px 14px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.leaflet-popup-content strong {
  display: block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.leaflet-popup-content a {
  color: #ff8c00;
  -webkit-text-decoration: none;
  text-decoration: none;
}
/*# sourceMappingURL=styles.css.map */
