.ziper-header-search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ziper-location-search {
  width: 340px;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}

.ziper-location-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.ziper-location-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: 15px;
  font-family: inherit;
}

.ziper-location-search input::placeholder {
  color: #333;
}

.ziper-endereco-label {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 14px;
  cursor: pointer;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ziper-sugestoes-box {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 999999;
  overflow: hidden;
}

.ziper-sugestoes-box button {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: #fff;
  color: #111;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.ziper-sugestoes-box button:hover {
  background: #f5f5f5;
}

@media(max-width:768px) {
  .ziper-header-search-wrap {
    gap: 6px;
  }

  .ziper-location-search {
    width: 220px;
    height: 42px;
  }

  .ziper-endereco-label {
    max-width: 120px;
    font-size: 12px;
  }
}