.checkout-item-controls {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border);
    background: white;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--color-text);
}

.checkout-qty-btn:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
}

.checkout-qty-btn:active {
    transform: scale(0.95);
}

.checkout-qty-value {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.checkout-remove-btn {
    margin-left: 8px;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #d32f2f;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-remove-btn:hover {
    background: #fff5f5;
    border-color: #d32f2f;
}

.checkout-remove-btn:active {
    transform: scale(0.98);
}