/*Remove excerpt from products*/
div.woocommerce-excerpt {
    display: none;
}.woocommerce-products-header {
    grid-template-columns: 1fr !important;
}
.woocommerce-price-suffix {
  padding-left: 5px;
}
.mbf-single-product-summary .entry-summary .price {
  align-items: center;
}
/* .home .mbf-shop-offcanvas__toggle{
	display:none !important;
} */
.archive.woocommerce .woocommerce-products-subheader .mbf-shop-offcanvas__toggle, .woocommerce-page .woocommerce-products-subheader .mbf-shop-offcanvas__toggle{
	background-color: #5d6e71 !important;
	color: #fff !important;
}
.wc-block-components-price-slider__control{
	display:unset !important;
}
.wc-block-components-price-slider--is-input-inline .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount{
	max-width: 80px !important;
}
.archive .wp-block-heading{
	font-size: 20px;
}
.archive .wc-block-components-checkbox__label{
	font-size: 16px;
}
@media (max-width: 767px) {
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
		width: 100%;
	}
	:root {
		--mbf-header-height: 90px;
	}
	.woocommerce .woocommerce-products-header .woocommerce-products-header__title, .woocommerce-page .woocommerce-products-header .woocommerce-products-header__title {
		font-size: 1.75rem;
	}
}
.woocommerce-checkout {
	--mbf-color-primary-contrast: #000;
}

.mbf-site-content {
	margin-bottom: 3rem;
}
.woocommerce-store-notice{
  background-color: #000000 !important;
}

.mbf-single-product .mbf-woocommerce-tabs .woocommerce-Tabs-panel .wp-caption {
width: auto !important;
}
#shipping-method .wc-block-components-button.wp-element-button.wc-block-checkout__shipping-method-option {
  color: #fff !important;
}
add_filter( 'woocommerce_default_address_fields', 'make_postcode_required' );
function make_postcode_required( $fields ) {
    $fields['postcode']['required'] = true;
    return $fields;
}
/**
 * Custom tag %image_id% for Image Attributes Pro
 * 
 * @param $image_id (integer) The ID of the image that is being updated. 
 * @param $parent_post_id (integer) The post to which the image is attached (uploaded) to. 
 * @param $args (array) An array containing additional arguments.
 * 
 * @return (string) ID of the image.
 * 
 * @refer https://imageattributespro.com/codex/iaffpro_get_custom_attribute_tag_tagname/
 */
function iaffpro_get_custom_attribute_tag_image_id( $image_id, $parent_post_id, $args = array() ) {
	return $image_id;
}
/* Hide tax display on cart and checkout | 10605311-ZD NJ */
 
.includes_tax, .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-footer-item-tax{
display: none;
}