/* Ruta: wp-content/plugins/portalaseo-pedido/assets/css/
/* Archivo: carrito.css */

#pap-carro-bar{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    height:58px;
    display:none;
    align-items:center;
    gap:12px;
    padding:0 12px;
    background:#F4B400;
    border-radius:14px;
    box-shadow:0 4px 14px rgba(0,0,0,.25);
    z-index:9999;
}

.pap-carro-info{
    display:flex;
    align-items:center;
    gap:8px;
    color:#212529;
    font-weight:600;
}

.pap-carro-info i{
    font-size:22px;
}

#pap-carro-bar-total{
    margin-left:auto;
    color:#212529;
    font-size:18px;
    font-weight:700;
}

#pap-ver-carrito{
    margin-left:8px;
}

/* ===========================
DETALLE DEL CARRITO
=========================== */

#pap-carro-items{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.pap-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:14px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:#171717;
    color:#fff;
}

.pap-item-info{
    flex:1;
    min-width:0;
}

.pap-item-info h4{
    margin:0;
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.pap-item-info small{
    display:block;
    margin-top:4px;
    color:#888;
    font-size:12px;
}

.pap-item-controles{
    display:flex;
    align-items:center;
    gap:18px;
    flex-shrink:0;
}

.pap-cantidad{
    display:flex;
    align-items:center;
    gap:6px;
}

.pap-cantidad button{
    width:32px;
    height:32px;
    border:none;
    border-radius:8px;
    background:#F4B400;
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.pap-cantidad span{
    width:34px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:8px;
    background:#222;
    font-weight:700;
}

.pap-item-total{
    width:90px;
    text-align:right;
    white-space:nowrap;
    font-size:16px;
    font-weight:700;
}

.pap-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:24px;
    margin-right:12px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.08);
    font-size:20px;
    font-weight:700;
}

.pap-vacio{
    padding:30px;
    text-align:center;
    color:#888;
}

.pap-carro-footer{
    display:flex;
    justify-content:flex-end;
    margin-top:24px;
}