Custom php template file only for mobile

archive product page overwrite into your current active theme.
More detail wp_is_mobile()

<?php
// archive product page


if( wp_is_mobile() )
{
    // your costume template path
}else{
    // Woocommerce defult archive page code put into else part
}

?>

Hope is work for you