.wcqcb-wrapper {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wcqcb-add {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 30px !important;
    background: var(--wcqcb-bg, #111);
    color: var(--wcqcb-text, #fff);
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--wcqcb-radius, 8px);
    border: none;
    cursor: pointer;
	margin-bottom:5px;
}

.wcqcb-add.wcqcb-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.wcqcb-qty {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: var(--wcqcb-radius, 8px);
    background: black;
    color: white !important;
}

.wcqcb-minus,
.wcqcb-plus {
    display:flex;
    align-items:center;
    justify-content:center;
    width: 50px;
    height: 60px;
    border: none;
    background: #94772A;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 6px;
}