.bf-locator {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 560px;
  margin: 1.5em auto;
  color: #222;
  box-sizing: border-box;
}
.bf-locator *,
.bf-locator *::before,
.bf-locator *::after { box-sizing: inherit; }

.bf-locator__field { margin-bottom: 1em; position: relative; }
.bf-locator__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35em;
  font-size: 0.95rem;
}
.bf-locator__city-input {
  width: 100%;
  padding: 0.6em 0.75em;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fff;
}
.bf-locator__city-input:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.25);
}

.bf-locator__suggestions {
  list-style: none;
  margin: 2px 0 0;
  padding: 4px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.bf-locator__suggestion {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 0.75em;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.bf-locator__suggestion:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.bf-locator__suggestion::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232271b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.bf-locator__suggestion:hover,
.bf-locator__suggestion.is-active {
  background: #f0f6fc;
  color: #0a4b78;
}
.bf-locator__suggestion:hover::before,
.bf-locator__suggestion.is-active::before {
  opacity: 1;
}

.bf-locator__status {
  font-size: 0.9rem;
  margin: 0.5em 0;
  color: #555;
}

.bf-locator__results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}
.bf-locator__result {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 0;
  border-bottom: 1px solid #e5e5e5;
}
.bf-locator__result-address {
  font-size: 0.95rem;
  flex: 1 1 auto;
}
.bf-locator__result-link {
  font-size: 0.9rem;
  color: #2271b1;
  text-decoration: none;
  white-space: nowrap;
}
.bf-locator__result-link:hover,
.bf-locator__result-link:focus {
  text-decoration: underline;
}
