foreach ( $cart->get_cart() as $cart_item ){
if (!has_term($cats, 'product_cat', $value['product_id'] )){
$price = $cart_item['data']->get_price(); // Get the product price
$new_price = $price-$price*50/100; // the calculation
$cart_item['data']->set_price( $new_price ); // Set the new price
}
}