.sucursal-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  font-family: inherit;
}

/* Botón */
.sucursal-float__btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .65rem .9rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  font-size: .9rem;
}

/* Texto sucursal actual */
.sucursal-float__current {
  font-size: .75rem;
  opacity: .9;
  white-space: nowrap;
}

/* Panel desplegable */
.sucursal-float__panel {
  position: absolute;
  bottom: calc(100% + .5rem);
  right: 0;
  background: #fff;
  border-radius: 12px;
  padding: .75rem;
  width: 220px;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  display: none;
}

.sucursal-float__panel label {
  display: block;
  font-size: .75rem;
  margin-bottom: .25rem;
  color: #444;
}

.city-select {
  width: 100%;
  padding: .4rem;
}

/* Mostrar panel */
.sucursal-float.open .sucursal-float__panel {
  display: block;
}
