/* Autocomplete dropdown — WP-06 Part 6 */
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: var(--shadow-md);
}
.autocomplete-item {
  padding: .65rem .875rem;
  cursor: pointer;
  font-size: .9rem;
  transition: background .1s;
}
.autocomplete-item:hover,
.autocomplete-item.active {
  background: var(--clr-bg);
}
