/* 
 Theme Name:     Bare bones for Divi
 Author:         Divi theme examples
 Author URI:     http://www.divithemeexamples.com 
 Template:       Divi
 Version:        1.0 
*/ 


/* ----------- PUT YOUR CUSTOM CSS BELOW THIS LINE -- DO NOT EDIT ABOVE THIS LINE --------------------------- 


// Hide $0 prices
add_filter('woocommerce_get_price_html', function($price, $product) {
    if ($product->get_price() == 0 || $product->get_price() == '') {
        return '';
    }
    return $price;
}, 10, 2);

.single_add_to_cart_button {
    display: none !important;
}
.single_add_to_cart_button,
form.cart .button[type="submit"]:not(.quote-button) {
    display: none !important;
}

*/

.woocommerce a.button.alt, .woocommerce-page a.button.alt {
    border-color: transparent !important ;
}