/*
Theme Name: Martfury Child
Theme URI: http://drfuri.com/unero
Author: DrFuri
Author URI: http://drfuri.com
Description: Martfury Child Theme.
Version: 1.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: martfury
Domain Path: /lang/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready
Template: martfury
*/

add_action('woocommerce_single_product_summary', 'rudra_order_now_button', 35);

function rudra_order_now_button() {
    global $product;

    if (!$product || !$product->is_purchasable()) {
        return;
    }

    $checkout_url = wc_get_checkout_url();

    echo '<a href="' . esc_url(add_query_arg('add-to-cart', $product->get_id(), $checkout_url)) . '" 
        class="button rudra-order-now" 
        style="display:inline-block;margin-top:10px;background:#e91e63;color:#fff;padding:12px 25px;border-radius:5px;text-decoration:none;font-weight:600;">
        অর্ডার করুন
    </a>';
}
