.location-bar {
  background: #fff8e9;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 7px 20px;
  font-size: 14px;
}

.location-bar select {
  appearance: auto;
  background: #fff;
  border: 1px solid #cabdb5;
  border-radius: 7px;
  color: var(--deep-red);
  font-weight: 800;
  height: 34px;
  width: auto;
  min-width: 230px;
  padding: 0 10px;
}

.location-bar select:focus-visible {
  border-color: var(--ember);
  outline: 3px solid #eca32959;
}

@media (max-width: 680px) {
  .location-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 9px 18px;
    text-align: center;
  }

  .location-bar select {
    width: 100%;
  }
}
