.buscador-vivo-contenedor {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
}
#buscador-vivo-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}
#buscador-vivo-resultados {
    background: #fff;
    border: 1px solid #e3e3e3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-radius: 0 0 5px 5px;
    max-height: 380px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    left: 0;
    top: 44px;
}
.buscador-vivo-resultado {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f4f4f4;
    padding: 10px;
    gap: 10px;
}
.buscador-vivo-resultado:last-child {
    border-bottom: none;
}
.buscador-vivo-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 10px;
}
.buscador-vivo-info {
    flex: 1;
}
.buscador-vivo-relacionados {
    font-size: 0.85em;
    margin: 8px 0 0 74px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.buscador-vivo-relacionados span {
    font-weight: 600;
    margin-right: 4px;
    color: #47a65c;
}
.buscador-vivo-rel img {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-right: 2px;
    border: 1px solid #e3e3e3;
    object-fit: cover;
}
.buscador-vivo-noresult {
    padding: 12px 15px;
    color: #a9a9a9;
    font-style: italic;
}
@media (max-width: 600px) {
    .buscador-vivo-contenedor { max-width: 100%; }
    #buscador-vivo-resultados { top: 40px; }
    .buscador-vivo-img { width: 48px; height: 48px; }
    .buscador-vivo-rel img { width: 26px; height: 26px; }
}
/* Color azul para nombre de categoría y marca */
.buscador-vivo-categoria .azul,
.buscador-vivo-marca .azul {
    color: #175edc;
    font-weight: bold;
    background: #eaf1fb;
    border-radius: 4px;
    padding: 2px 6px;
    margin-right: 2px;
}

/* Stock en verde o rojo */
.buscador-vivo-stock.stock-verde {
    color: #2f9800;
    font-weight: bold;
}
.buscador-vivo-stock.stock-rojo {
    color: #e63636;
    font-weight: bold;
}
