.wtfy-search-form,
.wtfy-search-form--enhanced {
  position: relative;
  z-index: 1000;
}

.wtfy-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 5000;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}

.wtfy-search-suggestions.is-visible {
  display: block;
}

.wtfy-suggestion-group + .wtfy-suggestion-group {
  border-top: 1px solid #f1f1f1;
}

.wtfy-suggestion-heading {
  padding: 8px 16px 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #820a23;
}

.wtfy-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #161616;
  font-size: 15px;
}

.wtfy-suggestion-item:hover,
.wtfy-suggestion-item.is-active {
  background: #f9f3f4;
}

.wtfy-suggestion-thumb {
  width: 38px !important;
  height: 38px !important;
  object-fit: cover;
  border-radius: 4px;
  background: #f6f6f6;
  flex-shrink: 0;
}

.wtfy-suggestion-meta {
  margin-left: auto;
  font-size: 14px;
  color: #686868;
}

.wtfy-suggestion-empty {
  padding: 12px 16px;
  font-size: 14px;
  color: #686868;
}
