.search-results-dropdown {
  width: min(92vw, 820px);
  margin-top: 4px;
  max-height: 420px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #d7dfdb;
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  z-index: 2600;
}

.search-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
}

.search-autocomplete-item + .search-autocomplete-item {
  border-top: 1px solid #ecefed;
}

.search-autocomplete-item:hover,
.search-autocomplete-item:focus-visible {
  background: #f3f6f5;
  outline: none;
}

.search-autocomplete-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #d8e4de;
  background: #f7faf8;
}

.search-autocomplete-title {
  color: #1e3f35;
  font-size: 0.95rem;
  line-height: 1.3;
}

.floating-search-bar .search-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: min(420px, 52vh);
  margin-top: 0;
}

@media (max-width: 768px) {
  .search-results-dropdown {
    width: 94%;
    max-height: 52vh;
    border-radius: 10px;
  }

  .floating-search-bar .search-results-dropdown {
    width: 100%;
  }
}
