/* Basic styling resembling card buttons */
.wqq-btns{
    display:grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap:10px;
    margin-bottom:10px;
}
.wqq-btn{
    background:#111;
    color:#fff;
    border:none;
    padding:14px 10px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
    transition:transform .05s ease, opacity .15s ease;
}
.wqq-btn:hover{ opacity:.9; }
.wqq-btn.active{ outline:2px solid #2ecc71; background:#2b7a57; }

.wqq-manual{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:6px;
}
.wqq-round{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    font-size:18px;
    line-height:1;
}
.wqq-input{
    flex:1;
    height:36px;
    padding:6px 10px;
    border:1px solid #ccc;
    border-radius:10px;
}
.wqq-total{
    margin-left:10px;
    font-weight:600;
}
/* Ensure our UI doesn't break in themes */
.wqq-active .quantity input.qty{ display:none !important; }
