/* Location picker bar — services section (matches BBBring orange + warm panel) */
.bbbring-loc-bar {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfb 0%, #fff5ed 45%, #fff9f5 100%);
  border: 1px solid rgba(15, 20, 25, 0.08);
  box-shadow: 0 18px 48px rgba(15, 20, 25, 0.07);
  margin-bottom: 2.5rem;
}

.bbbring-loc-bar__skyline {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23c9a882' d='M0 120V85h45v20h30V70h25v35h40V55h35v30h28V65h32v55h38V80h42v40h36V60h44v60h40V75h48v45h35V90h40v30h32V70h38v50h45V85h50v35h55V95h48v25h52V72h46v48h55V88h60v32h58V100h62v20h55V78h70v42h65V92h72v28h68V85h75v35h80V98h85v22h90V110h95V120H0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 72px;
}

.bbbring-loc-bar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.35rem;
}

.bbbring-loc-bar__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  min-width: 118px;
}

.bbbring-loc-bar__pin-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 0.35rem;
}

.bbbring-loc-bar__rings {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(90, 98, 104, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(90, 98, 104, 0.12), 0 0 0 14px rgba(90, 98, 104, 0.06);
}

.bbbring-loc-bar__pin {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #e53935;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.bbbring-loc-bar__pin svg {
  width: 34px;
  height: 34px;
}

.bbbring-loc-bar__title {
  font-family: var(--bbbringlanding-font, "Manrope", system-ui, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1d21;
  line-height: 1.2;
  max-width: 10rem;
}

.bbbring-loc-bar__search {
  flex: 1 1 220px;
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.bbbring-loc-bar__input-wrap {
  position: relative;
  flex: 1;
  display: flex;
}

.bbbring-loc-bar__input {
  width: 100%;
  border: 1px solid rgba(15, 20, 25, 0.14);
  border-radius: 12px;
  padding: 0.65rem 3rem 0.65rem 1rem;
  font-size: 0.95rem;
  background: #fff;
  color: #1a1d21;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bbbring-loc-bar__input:focus {
  outline: none;
  border-color: #fe7d00;
  box-shadow: 0 0 0 3px rgba(254, 125, 0, 0.2);
}

.bbbring-loc-bar__input::placeholder {
  color: #8b939c;
}

.bbbring-loc-bar__geolocate {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #fe7d00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.bbbring-loc-bar__geolocate:hover {
  background: rgba(254, 125, 0, 0.1);
  color: #d96a00;
}

.bbbring-loc-bar__geolocate:focus-visible {
  outline: 2px solid #fe7d00;
  outline-offset: 2px;
}

.bbbring-loc-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.bbbring-loc-bar__btn {
  border: none;
  border-radius: 12px;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--bbbringlanding-font, "Manrope", system-ui, sans-serif);
  color: #fff;
  background: linear-gradient(180deg, #ff9426 0%, #fe7d00 100%);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(254, 125, 0, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.bbbring-loc-bar__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(254, 125, 0, 0.4);
}

.bbbring-loc-bar__btn:active {
  transform: translateY(1px);
}

.bbbring-loc-bar__btn:focus-visible {
  outline: 2px solid #1a1d21;
  outline-offset: 2px;
}

.bbbring-loc-bar__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

/* Visible feedback for Set Location / GPS / map (was visually-hidden — users saw no result). */
.bbbring-loc-bar__status {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.35rem 0.35rem;
  min-height: 1.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1d21;
}

.bbbring-loc-bar__status:empty {
  display: none;
}

.bbbring-loc-bar__hint {
  position: relative;
  z-index: 1;
  padding: 0 1.35rem 1rem;
  font-size: 0.8rem;
  color: #5c6670;
}

.bbbring-loc-bar__hint a {
  color: #fe7d00;
  font-weight: 600;
}

#bbbring-loc-map-canvas {
  height: 380px;
  min-height: 320px;
  width: 100%;
  background: #e8eaed;
}

#bbbring-loc-map-canvas .leaflet-container {
  height: 100%;
  width: 100%;
  font-family: var(--bbbringlanding-font, "Manrope", system-ui, sans-serif);
  border-radius: 0;
}

#bbbring-loc-map-canvas .leaflet-control-attribution {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.85);
}

.pac-container {
  z-index: 10050 !important;
  border-radius: 12px;
  margin-top: 4px;
  font-family: var(--bbbringlanding-font, "Manrope", system-ui, sans-serif);
}

@media (max-width: 767px) {
  .bbbring-loc-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .bbbring-loc-bar__brand {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    text-align: left;
  }

  .bbbring-loc-bar__pin-wrap {
    margin-bottom: 0;
  }

  .bbbring-loc-bar__title {
    max-width: none;
  }

  .bbbring-loc-bar__actions {
    width: 100%;
  }

  .bbbring-loc-bar__btn {
    flex: 1;
    text-align: center;
  }
}
