/* 
Theme Name: Pazzel.me Theme
Theme URI: https://Pazzel.me
Description: Pazzel.me With Product Designer 
Author: Pazzel.me Team
Author URI: https://Pazzel.me
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Change price color in diffrent puzzle */

.woocommerce-Price-amount {
    color: #7A7A7A !important; /* Change to your preferred color */
    font-family: "Arial", sans-serif !important; /* Change to your preferred font */
    font-size: 18px !important; /* Adjust the font size */
    font-weight: bold !important; /* Make it bold if needed */

	
}

/* change the wish */

.wapf-field-label.wapf--above {
    color: #7a7a7a !important; /* Change label text color */
    font-family: "Fredoka", sans-serif !important; /* Change font */
    font-size: 16px !important; /* Adjust font size */

	
}



/* change the cleaner price */

.reset_variations {
    background-color: gray !important; /* Change button background color */
    color: #ffffff !important; /* Change text color */
    font-size: 16px !important; /* Adjust font size */
    font-family: "Arial", sans-serif !important; /* Change font */
    padding: 4px 15px !important; /* Adjust padding */
    border-radius: 5px !important; /* Round corners */
    border: none !important; /* Remove default border */
    cursor: pointer !important;
    transition: 0.3s;
}


@media screen and (max-width: 768px) { /* Adjust for mobile screens */
    .wapf-field-label.wapf--above {
        font-size: 10px; /* Change this to your preferred font size */
    }
}
	
/* disbale wioocomerce pricy and terms */
	
add_action('woocommerce_email_order_meta', 'add_tracking_number_to_email', 10, 3);
function add_tracking_number_to_email($order, $sent_to_admin, $plain_text) {
    $tracking_number = get_post_meta($order->get_id(), '_tracking_number', true);
    $tracking_url = get_post_meta($order->get_id(), '_tracking_url', true);
    
    if (!empty($tracking_number)) {
        echo '<p><strong>Tracking Number:</strong> ' . esc_html($tracking_number) . '</p>';
        if (!empty($tracking_url)) {
            echo '<p><a href="' . esc_url($tracking_url) . '" target="_blank">Track Your Order</a></p>';
		}
	}
}


	
@media (max-width: 768px) {
    /* Remove default Elementor background */
    .elementor-menu-toggle {
        background: none !important;
        border: none !important;
        padding: 3px !important;
    }
}

    /* Target the hamburger button and force its size */
    .elementor-menu-toggle__icon--open {
        width: 40px !important;  /* Adjust size */
        height: 40px !important; /* Adjust size */
        background-color: #8acc98 !important; /* Green background */
        border-radius: 50% !important; /* Circular shape */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: background-color 0.3s ease !important;
		
    }


    /* Hide the close (X) icon */
    .elementor-menu-toggle__icon--close {
        display: none !important;
    }
/* Change the color of the SVG icon inside the hamburger */
.elementor-menu-toggle .e-font-icon-svg {
    fill: #7F3F98 !important; /* Change to pink or your desired color */
	padding: 5px
	
}



