/* Home-page-only additions not present in the ported theme CSS. */

.product_Tabs ul li {
  cursor: pointer;
}

/* CSS grid stretches row items to equal height by default, which combined with
   .product-card-info{flex:1} in product-grid.css pushes price/button far down
   on shorter cards. Constrain it back to natural height. */
.collection__products {
  align-items: start;
}
.collection__products .product-card-info {
  flex: none;
}

/* base-style.css ported rule sets this heading to #6C4E1C — override to white. */
.products_tabsSec.GreenBg .mainHeading h2 {
  color: #fff;
}

