Hi again.
To change the product short description to below the share button, you need to change the source code at file
wp-content/themes/yolo-sofani/woocommerce/content-single-product.php and change the code like this:
<div class="summary-product-wrap">
<div class="summary-product entry-summary">
<?php
remove_action( 'woocommerce_single_product_summary','woocommerce_template_single_excerpt', 20);
add_action( 'woocommerce_single_product_summary','woocommerce_template_single_excerpt', 60);
do_action( 'woocommerce_single_product_summary' );
?>
</div>
</div>
Please check it again.
Thanks.