#container2 {
    background:#f7f7f7;
    padding:15px;
    border-radius:6px;
    margin-bottom:15px;
}

#container2 label {
    font-size:12px;
    font-weight:600;
}

#container2 input,
#container2 select {
    height:34px;
}

.bs-example {
    margin:20px;
}

tr.border_bottom td {
    border-bottom:1pt solid black;
}

.polig {
    font-family:arial;
    font-weight:bold;
}





/* PRECIO */
.precio-grande{
    font-size:32px;
    font-weight:700;
    color:#27ae60;
}

.precio-unitario{
    font-size:13px;
    color:#777;
}

/* BADGE */
.badge-rango{
    margin-top:8px;
    font-size:13px;
    color:#777;
}

/* CARRITO */
.carrito-item{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.carrito-producto{
    font-weight:600;
}

.carrito-detalle{
    font-size:13px;
    color:#666;
}

.carrito-precio{
    font-weight:700;
    margin-top:4px;
}

.resumen-linea{
    display:flex;
    justify-content:space-between;
    margin-top:8px;
}

.resumen-total{
    display:flex;
    justify-content:space-between;
    font-size:22px;
    font-weight:700;
    margin-top:12px;
    color:#27ae60;
}

.carrito-vacio{
    padding:25px;
    background:#f1f3f5;
    border-radius:8px;
    text-align:center;
    color:#888;
}

/* IMAGEN PRODUCTO */
.producto-imagen-wrapper{
    background:#f8f9fa;
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
}

.producto-img{
    max-width:100%;
    max-height:260px;
    object-fit:contain;
    transition:all .3s ease;
}

.producto-img:hover{
    transform:scale(1.03);
}

/* LOADING */
.leyendoDatos{
    display:none;
    position:fixed;
    z-index:9999;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background:rgba(255,255,255,.8)
    url("../img/loading.gif")
    50% 50%
    no-repeat;
}

.show{display:block;}
.hide{display:none;}