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

.single-product div.product.has-buy-now .rz-buy-now-button {
	background-color: #FFCC00 !important;

}

// First, let's hide the term description immediately with inline CSS
add_action('wp_head', 'hide_term_description');
function hide_term_description() {
    if (is_tax() || is_product_category() || is_product_tag()) {
        echo '<style>
        .term-description {
            display: none !important;
        }
        </style>';
    }
}

