/* Contenedor fullwidth centrado bajo la cabecera */
.avasol-search-wrap{
  width:100%;
  padding: 10px 16px 0;
}
/* caja centrada */
.avasol-search{
  max-width: 960px;
  margin: 0 auto 16px;
  position: relative;
}
.avasol-search__form { display:flex; gap:8px; align-items:center; }

/* input redondeado */
.avasol-search__input{
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 9999px;
  outline: none;
  font-size: 16px;
  line-height: 1.2;
}
.avasol-search__input:focus { border-color:#d41a86; box-shadow: 0 0 0 3px rgba(212,26,134,.12); }

/* botón con texto "Buscar" */
.avasol-search__btn{
  border: 0;
  background: #d41a86;
  color: #fff;
  padding: 12px 18px;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
}

/* dropdown */
.avasol-search__dropdown {
  position: absolute; left:0; right:0; top:100%; z-index: 9999;
  background: #fff; border:1px solid #e8e8e8; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  margin-top: 8px; max-height: 70vh; overflow:auto;
}

.avs-section { padding: 8px 6px; }
.avs-section__title {
  font-weight: 700; font-size: 12px; color:#777; text-transform: uppercase;
  padding: 6px 10px;
}
.avs-item {
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px; text-decoration:none; color:#222; border-radius:8px;
}
.avs-item:hover { background:#f7f7f7; }
.avs-thumb { width:34px; height:34px; object-fit:contain; border:1px solid #eee; border-radius:6px; }
.avs-title { flex:1; }
.avs-price { font-weight:600; white-space:nowrap; }
.avs-empty { padding:14px 12px; color:#666; }
