.car-hero-search {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  position: relative;
}

.car-hero-search input {
  flex: 1;
  padding: 12px;
  font-size: 16px;
}

.car-hero-search button {
  background: #ff5a00;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}

.car-hero-search ul {
  position: absolute;
  background: #fff;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  border: 1px solid #ddd;
  z-index: 9999;
}

.car-hero-search li {
  padding: 8px;
  cursor: pointer;
}

.car-hero-search li:hover {
  background: #f2f2f2;
}