.search-box {
  position: relative;
}

.search-suggestions {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  background: #fff;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  border: 1px solid #e7e7e7;
  overflow: hidden;
  z-index: 9999;
  display: none;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #222;
  text-decoration: none;
  transition: 0.2s;
}

.suggestion-item:hover {
  background: #fff3ec;
  color: #ff5a00;
  padding-left: 20px;
}

.suggestion-empty {
  padding: 13px 16px;
  font-size: 13px;
  color: #777;
}