/* Contenedor general */

.svo-title{
    font-size:30px;    
    margin:0;
	text-align:center;
	color:#0000ff;
}
.svo-divider{
    border:0;
    height:1px;
    background:#e5e5e5;
    margin:10px 0 20px;
}

/* Caja de cada resultado */
.vos-item{
    display:flex;
    gap:30px;
    align-items:flex-start;
    border-radius:6px;
    flex-wrap:nowrap;

}

/* Imagen producto izquierda */
.vos-product-image img{
    width:250px;
    height:auto;
    display:block;
	border-radius: 10px;
}

/* Columna derecha */
.vos-right{
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
	flex:1;
}
.vos-manufacturer{
    max-width:120px;
    height:auto;
    margin-bottom:15px;
}

/* Botón */
.vos-btn-consultar{
    padding:10px 35px;
    border-radius:6px;
    font-size:16px;
	width:100%;
}

/* Responsive */
@media (max-width:768px){
    .vos-item{
        flex-direction:column;
        align-items:center;
		margin-bottom:3rem
    }
    .vos-right{
        margin:auto;
    }
    .vos-product-image img{
        max-width:100%;
    }
}
