/*
Theme Name: TeeSpace - Child
Theme URI: https://harutheme.com/teespace
Author: HaruTheme
Author URI: https://harutheme.com/
Description: This is child theme of TeeSpace
Template: teespace
Version: 1.0.0
*/

/*---------------------------------
  	Write your css code from here
------------------------------------*/
/**
 * Remove product data tabs
 */
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {

    unset( $tabs['more_seller_product'] ); 			// Remove the reviews tab
	unset( $tabs['reviews'] ); 			// Remove the reviews tab

    return $tabs;
}
.haru-button.haru-button--bg-primary {
	background-color: #6D1A2!important;
}
	.background-dark .haru-button.haru-button--bg-primary {
		background-color: #6D1A2;
}