/* Autocomplete dropdown — bloc accueil */
.ps-autocomplete-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  max-height: 380px;
  overflow-y: auto;
}

.ps-autocomplete-item {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.ps-autocomplete-item:last-child {
  border-bottom: none;
}

.ps-autocomplete-item:hover,
.ps-autocomplete-item--active {
  background: #f5f7f8;
  color: #111;
  text-decoration: none;
}

.ps-autocomplete-item__title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.ps-autocomplete-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.ps-ac-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 2px;
  line-height: 1.4;
}

.ps-ac-tag--code {
  background: #f0f0f0;
  color: #444;
}

.ps-ac-tag--cat {
  background: #e8f0f4;
  color: #1c6381;
}

.ps-autocomplete-empty {
  padding: 1rem;
  text-align: center;
  color: #888;
  font-size: 0.88rem;
}
