.comprados-juntos-wrapper {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
}

.comprados-juntos-contenedor {
    display: flex;
    align-items: center; /* <-- centrado vertical */
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
}

.producto-boton-final {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    min-width: 150px;
    padding: 0;
}

.comprados-juntos-productos-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    flex: 1;
}

.producto-comprado-horizontal {
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: white;
    min-width: 150px;
    flex-shrink: 0;
}

.producto-comprado-horizontal img {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.nombre {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkbox-container {
    margin-top: 5px;
}

.simbolo-mas {
    font-size: 24px;
    font-weight: bold;
    margin: 0 10px;
    align-self: center;
}

.comprar-juntos-lateral {
    display: flex;
    align-items: center; /* <-- centrado vertical */
    justify-content: center;
    padding-right: 10px;
}

.comprar-juntos-btn {
    padding: 12px 20px;
    background-color: #295d56;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

@media(max-width:764px){


    .comprados-juntos-productos-horizontal{

          flex-direction: column;
    }
  


}