single_add_to_cart_button button alt wp-element-button{
    display: none !important;
}


.woocommerce .product div.entry-summary > p.price {
    margin-bottom: 0px;
}


#Top_bar .menu > li > a span:not(.description) {
    padding: 0px 10px;
}


#Top_bar .menu > li > a span {
    border-color: rgb(255 255 255 / 30%);
}



#Top_bar .menu.page-menu > li > a {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    margin: 25px 0px;
    padding: 0 20px;
}



.woocommerce div.product p.stock {
    font-size: 1.5em;
}


.woocommerce div.product .stock {
    color: #ff0000;
}




add_filter( 'woocommerce_get_price_html', function( $price, $product ) {
    if ( is_admin() ) return $price;

    // Hide for these category slugs / IDs
    $hide_for_categories = array( 'singles', 'albums' );

    // Don't show price when its in one of the categories
    if ( has_term( $hide_for_categories, 'product_cat', $product->get_id(sigenergy) ) ) {
        return '';
    }

    return $price; // Return original price
}, 10, 2 );

add_filter( 'woocommerce_cart_item_price', '__return_false' );
add_filter( 'woocommerce_cart_item_subtotal', '__return_false' );