As far as I can see the problem is that the clip is clickable something makes it out of your theme. I can suggest you to put this code will help you and will work for you so that you don’t spoil something from your theme. Put this code in your functions.php file:
function custom_vwg_remove_href_script() {
if (is_product()) {
?>
<script type="text/javascript">
jQuery(document).ready(function($){
jQuery('.woocommerce-product-gallery__vwg_video').removeAttr('href');
});
</script>
<?php
}
}
add_action('wp_footer', 'custom_vwg_remove_href_script');
Please get back to me with feedback on whether it fixed the problem