<style>

/*ICON CON CONTADOR*/
.contenedor-producto {
    position: relative;
    display: inline-block;
    
}

.imagen-producto {
    width: 20px;
    height: 20px;
}

.contador-productos {
    position: absolute;
    top: -6px;
    right: -10px;
    font-family: "noto sans";
    background: black;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    
    text-align: center;
    font-size: 10px;
    line-height: 20px;
}

/*CART*/
.productos-carrito {
    list-style: none;
    padding: 0;
    margin: 0;
}

.producto {
    display: flex;
    padding: 10px;
    padding-right: 10px;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.03) 0px 8px 32px;
}

.producto-imagen {
     width: 80px ; 
    height: 80px ; 
    object-fit: cover; 
    object-position: center center ; 
    
    overflow: hidden;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.producto-imagen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
   
    border-radius: 8px !important;
    
    
    
}

.producto-info {
    flex-grow: 1;
}

.producto-titulo {
    margin: 0;
    font-size: 16px;
    font-family: "Playfair Display";
    margin-top: 10px;
    margin-bottom: 10px;
}

.producto-precio {
    margin: 0;
    font-family: "noto sans";
    font-weight: 400px;
    font-size: 14px;
}

.cantidad-producto {
    color: #ff0000; 
    padding-left: 5px;
     font-family: "noto sans";
      font-weight: 400px;
    
}

.eliminar-producto {
    font-size: 16px;
    margin-left: auto;
    color:red;
    font-weight: bold;
    cursor: pointer;
}

.eliminar-producto:hover {
    color: black;
}


.contenedor-producto {
    position: relative;
    display: inline-block;
    
}

.imagen-producto {
    width: 20px;
    height: 20px;
}

.contador-productos {
    position: absolute;
    top: -6px;
    right: -10px;
    font-family: "noto sans";
    background: black;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    
    text-align: center;
    font-size: 10px;
    line-height: 20px;
}
/*BOTONES*/

.ver-carrito {   
    display:none !important;
    padding: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border-radius: 8px !important;
    background-color: #d40000 !important; 
    color: #ffffff !important; 
    font-family: "noto sans" !important;
    font-size: 16px !important;
    font-weight: bold !important;
    margin-right: 10px !important; 
}

.finalizar-compra {
    padding: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: #000000 !important;
    color: #ffffff !important; 
    border-radius: 8px !important;
    font-family: "noto sans" !important;
    font-size: 16px !important;
    font-weight: bold !important;
    width: 100px !important;
}

.ver-carrito:hover {
    background-color: black !important;
    color: white !important;
}

.finalizar-compra:hover {
    background-color: #d40000 !important;
    color: white !important;
}

.subtotal-carrito {
    padding-bottom: 10px !important;
    font-family: "noto sans" !important;
    font-size: 18px !important;
    font-weight: bold !important;
}
/*envio gratis estilo barra*/

p.progress-text {
    padding-left: 5px !important;
}
</style>
