.hmc-search-container > ul > li {
    width: 100%;
    max-width: 550px;
  }
  .hmc-adv-search-container {
    position: relative;
    max-width: 700px;
    margin: auto;
      min-width: 500px;
  }
  
  .hmc-search-form {
    display: flex;
    border: 1px solid #000;
    border-radius: 50px;
    overflow: hidden;
      height: 42px;
      align-items: center;
  }
  
  .hmc-search-input {
    flex-grow: 1;
    padding: 12px 20px 12px 25px !important;
    border: none !important;
    outline: none;
      box-shadow: none !important;
    font-size: 1rem !important;
  }
  
  .hmc-search-form button {
    background: var(--fs-color-secondary);
    color: white;
    padding: 0 20px;
    border: none;
    font-size: 14px;
      font-weight: 600;
    cursor: pointer;
    margin: 0;
      white-space: nowrap;
      border-radius: 50px;
      margin: 3px !important;
  }
  
  .hmc-search-form button i{
      margin-right: 10px;
  }
  
  .hmc-search-popup {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 200%;
    max-width: 800px;
    background: white;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 20px;
    border-radius: 10px;
  }
  
  .hmc-search-history {
    margin-bottom: 20px;
    position: relative;
  }
  
  .hmc-search-history .clear-history {
    color: #3170ee;
    font-size: 0.875rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .hmc-search-history ul,
  .suggestions-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hmc-search-history ul li,
  .suggestions-left ul li {
    padding: 5px 0;
  }
  
  .suggestions-left {
    float: left;
    width: 30%;
  }
  
  .suggestions-right {
    float: right;
    width: 68%;
  }
  
  .suggestion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
  }
  
  .suggestion-grid .item {
    text-align: center;
    font-size: 14px;
  }
  
  .suggestion-grid .item img {
    max-width: 80px;
    margin-bottom: 5px;
    aspect-ratio: 1/1;
  }
  
  /* Clear floats */
  .hmc-search-suggestions::after {
    content: "";
    display: block;
    clear: both;
  }
  
  .hmc-search-history h3 {
    font-size: 1rem;
    color: #000;
  }
  
  .search-history-list {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #000;
    column-gap: 15px;
    row-gap: 0;
    flex-wrap: wrap;
  }
  
  .search-history-list li {
    margin: 0;
    cursor: pointer;
  }
  
  .search-history-list span {
    margin-left: 7px;
  }
  
  .suggestion-keywords {
    height: 75vh;
    max-height: 300px;
    overflow-y: scroll;
  }
  
  .suggestion-keywords li {
    color: #000;
    font-size: 0.875rem;
    cursor: pointer;
  }
  
  .suggestions-left h3,
  .suggestion-category-header h3 {
    font-size: 1rem;
    color: #000;
  }
  
  .suggestion-keywords li:hover {
    color: var(--fs-experimental-link-color-hover);
  }
  
  .next-category {
    color: #3170ee;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  
  .suggestion-category-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
  
.hmc-suggestion-keywords-popup {
  position: absolute;
  width: 200%;
  max-width: 800px;
  background: #fff;
  top: calc(100% + 10px);
  left: 0;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 5px;
  display: none;
}


.suggest-list {
  padding: 20px 0 !important;
}

.suggest-list li {
  list-style: none;
 
}

.suggest-list li a{
	 display: flex;
  align-items: center;
  justify-content: start;
	gap: 15px;
  font-size: 0.875rem;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
}

.suggest-list li:hover {
  background: #f5f5f5;
}

.suggest-list li img {
  max-width: 60px;
  margin-top: -3px;
}
