/*Hide woocommerce site info on footer*/
.site-info {
	display: none;
}

.entry-title:not(.product_title) {
	display: none;
}

/*Product text wrapper*/
.woocommerce-loop-product__title {
	 white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

/*Button Masukkan keranjang detail produk*/
button.alt, input[type="button"].alt, input[type="reset"].alt, input[type="submit"].alt, .button.alt, .widget-area .widget a.button.alt {
	background-color: #f44336;
}

/*Discount label color on product detail*/
.onsale, li .page-numbers:not(.current) {
    color: #212121;
    background-color: #ffdd57;
}

/*Pagination*/
.woocommerce-pagination .page-numbers {
	background-color: #eeeeee;
}

/*Selected pagination*/
.woocommerce-pagination .page-numbers li .page-numbers.current {
	background-color: #e0e0e0;
}

/*Price text color*/
.price ins {
    font-weight: 400;
    color: #f44336;
}

/*Price in product detail without discount*/
p.price  {
	color: #f44336;
}

/*Price color in product list*/
.price span.amount{
	color: #f44336;
}

/*Discount price with strike*/
.price del span.amount {
	color: #6d6d6d;
}

/*Secondary button*/
button, input[type="button"], input[type="reset"], input[type="submit"], .button, .widget a.button {
    background-color: #212121;
    border-color: #eeeeee;
    color: #fff;
}

/*See cart*/
.added_to_cart.alt, .added_to_cart, .widget a.button.checkout {
    background-color: #f44336;
    border-color: #333333;
    color: #ffffff;
}

@media screen and (min-width: 800px) {

	.site-header-cart .cart-contents .count {
		display: none;
	}
	
	.site-header-cart .cart-contents .amount {
		display: none;
	}
	
	/*Header sub menu color*/
	.main-navigation ul.menu ul.sub-menu {
		background-color: #d50000;
	}
	
	/*Header menu text color*/
	ul.nav-menu li a {
		color: white;
	}
	
	/*Header menu onfocus color*/
	li.focus a {
		color: white;
	}
	
	/*Cart count color*/
	.count {
		color: white;
	}

	/*Cart header color*/
	a.cart-contents::after {
		color:white;
	}
	
	/*Remove RP on cart header*/
	ul.site-header-cart li a span.woocommerce-Price-amount {
		visibility: hidden;
	}
	
	/*Header color*/
	.storefront-primary-navigation {
		background-color: #D50000;
	}
	
	/*Selected menu header color*/
	.main-navigation ul li a:hover, .main-navigation ul li:hover > a, .site-title a:hover, .site-header ul.menu li.current-menu-item > a {
		color: #e0e0e0;
	}

}