

.demo_store {
	color: #ffffff;
	background-color: #d3134c;
}

.woocommerce-loop-category__title mark.count {
    display: none;
}
.wc-block-grid__product-rating 
{ color: #ffd700;
}

.woocommerce-store-notice .woocommerce-store-notice__dismiss-link { color: #ffd700}
.woocommerce sp
.onsale 
img.wp-post-image {
  width: 1080px;
  height: 1080px;
  object-fit: cover;
}

/* Hide Category Titles and Product Counts in the Grid */
.home .product-category .woocommerce-loop-category__title,
.home .product-category h2.woocommerce-loop-category__title {
    display: none !important;
}

.home .product-category .count {
    display: none !important;
}


/* HOME ONLY: remove underline from product title links (block/grid widgets) */
.home .wc-block-grid__product-title a,
.home .wc-block-components-product-title a,
.home .wp-block-woocommerce-product-template a,
.home .wp-block-post-title a {
  text-decoration: none !important;
  border-bottom: none !important; /* some themes fake underline using border */
  box-shadow: none !important;    /* some themes fake underline using shadow */
}

/* Also prevent underline on hover/focus (some themes add it only on hover) */
.home .wc-block-grid__product-title a:hover,
.home .wc-block-components-product-title a:hover,
.home .wp-block-woocommerce-product-template a:hover,
.home .wp-block-post-title a:hover,
.home .wc-block-grid__product-title a:focus,
.home .wc-block-components-product-title a:focus,
.home .wp-block-woocommerce-product-template a:focus,
.home .wp-block-post-title a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* ========= UNIVERSAL: Align Add to Cart buttons (NO title cutting) ========= */

/* 1) Classic WooCommerce loops (category/shop pages) */
.woocommerce ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  line-height: 1.3 !important;
  min-height: 3.9em !important; /* space for up to 3 lines */
}

.woocommerce ul.products li.product .button {
  margin-top: auto !important;
}


/* 2) WooCommerce Blocks grids (your Hand-Picked Products block) */
.wc-block-grid__product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.wc-block-grid__product .wc-block-grid__product-title {
  line-height: 1.3 !important;
  min-height: 3.9em !important; /* space for up to 3 lines */
}

/* IMPORTANT: push the add-to-cart WRAPPER down (not only the link/button) */
.wc-block-grid__product .wc-block-grid__product-add-to-cart,
.wc-block-grid__product .wp-block-button {
  margin-top: auto !important;
}