/* ============================================================
   Cart Page — Quantity Button Styles
   ============================================================ */
.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    color: #F5F5F7;
    background: rgba(255,255,255,0.05);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}
.qty-btn:hover {
    background: rgba(0,102,255,0.2);
    border-color: rgba(0,102,255,0.6);
    color: #fff;
}
