/* /assets/css/brand-autocomplete.css */
/* === Brand chips + autocomplete === */
.brand-chipbox{
  display:flex; align-items:center; flex-wrap:wrap; gap:8px;
  background:#0d121b; border:1px solid #2f3750; color:#e7ecff;
  border-radius:10px; padding:6px; min-height:42px;
}
.brand-chip{
  display:flex; align-items:center; gap:6px;
  padding:4px 10px; border-radius:999px;
  background:#1a2336; border:1px solid rgba(255,255,255,.08); color:#e7ecff;
  font-size:.88rem; line-height:1;
}
.brand-chip button{
  background:transparent; border:0; color:#a9b4d0; cursor:pointer; font-size:1rem;
}
.brand-chip button:hover{ color:#ff9a3c; }

.brand-chipbox input.brand-type{
  flex:1; min-width:180px; border:0; outline:0; background:transparent; color:#e7ecff;
  height:32px; padding:0 6px; font-size:.95rem;
}
.brand-chipbox input.brand-type::placeholder{ color:#aab3c5; opacity:.9; }

.brand-suggest-wrap{ position:relative; }
.brand-suggest-list{
  position:absolute; z-index:3000; left:0; right:0;
  background:#0d121b; border:1px solid #2f3750; border-radius:10px;
  margin-top:6px; max-height:280px; overflow:auto;
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}
.brand-suggest-item{
  padding:10px 12px; cursor:pointer; display:flex; flex-direction:column; gap:2px;
}
.brand-suggest-item small{ color:#a9b4d0; }
.brand-suggest-item[aria-selected="true"], .brand-suggest-item:hover{
  background:#162036;
}
