.search-form {
  position: relative;
}
.suggestions {
  list-style: none;
  position: absolute;
  top: 100%;  /* input ke niche */
  left: 0;
  right: 0;
  background: #fff;
color:#313232;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 0;
  padding: 0;
}

.suggestions li {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.suggestions li:hover {
  background: #f5f5f5;
}

.search-icon {
  width: 16px;
  height: 16px;
  stroke: #666;
  flex-shrink: 0;
}
@media(max-width:768px){
ul.suggestions {
    background: white;
    width: 90% !important;
    border-radius: 3px;  
    margin: auto;
}
}
