Hello,
In your case the solution will be to directly edit the "Showcart" file of the "Cart" view of your front-end template via "Hikashop->Display->Views" and change that line :
<td data-title="<?php echo JText::_('HIKASHOP_CHECKOUT_STATUS'); ?>" align="center"><?php echo $stockText;?></td>
By :
<td class="wishlist_status_value" data-title="<?php echo JText::_('HIKASHOP_CHECKOUT_STATUS'); ?>" align="center"><?php echo $stockText;?></td>
Then you'll be able to directly use your CSS code on the "wishlist_status_value" class.
Thank you for your feedback.