/* MAP */
#map {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 2rem;
  z-index: 0;
}

#bottom {
  display: flex;
  gap: 2rem;
}

#sidebar {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-type {
  padding-left: 1rem;
}

.service-label {
  font-weight: 500;
  margin-bottom: 6px;
}

.cb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 6px;
}

.cb-row input[type="checkbox"] {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.distributors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: minmax(auto, 1fr);
  gap: 16px;
  flex: 1;
}

.distributor {
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.distributor-logo {
  align-self: flex-start;
}

.distributor-hr {
  border: none;
  border-top: 1px solid var(--neutral-300);
  margin: 0;
}

.distributor-name {
  font-weight: 600;
  font-size: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  background: var(--brand-accent-100);
  color: var(--neutral-800);
}

.distributor-name {
  font-weight: 600;
}

.distributor-country {
  font-weight: 500;
}

.distributor-info {
  font-size: 14px;
  flex-grow: 1;
}

.distributor-address {
  color: var(--text-muted);
}

.no-results {
  color: var(--text-muted);
  padding: 1rem 0;
}

@media (max-width: 600px) {
  #bottom {
    flex-direction: column;
  }
  #sidebar {
    min-width: 100%;
  }
}
