@charset "UTF-8";
/* Autocomplétion Barre de Recherche */
.searchForm {
  position: relative; }

/* Conteneur des résultats */
.search-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d4d4d5;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
  z-index: 1000;
  /* Assez haut pour passer au-dessus du contenu */
  max-height: 400px;
  overflow-y: auto;
  display: none;
  /* Caché par défaut */
  text-align: left; }

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

/* Un résultat individuel */
.search-suggestion {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  transition: background-color 0.2s ease; }

.search-suggestion:last-child {
  border-bottom: none; }

.search-suggestion:hover,
.search-suggestion.is-active {
  background-color: #f9fafb; }

/* Image du produit */
.search-suggestion img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
  border: 1px solid #ddd; }

/* Nom du produit */
.search-suggestion span {
  font-size: 14px;
  color: #4183c4;
  font-weight: 500; }

/* États Loading / Empty */
.search-suggestion.loading,
.search-suggestion.empty {
  padding: 15px;
  color: #767676;
  font-style: italic;
  justify-content: center;
  cursor: default; }

.search-suggestion.loading:hover,
.search-suggestion.empty:hover {
  background-color: transparent; }
