/* The below fix is to hide the 'In Stock' quantity, but leave the 'In Stock' label */
[data-zs-stock]{
    display: none !important;
}
[data-zs-variant-stock]{
    display: none !important;
}
.theme-product-stock-label span:last-child {
  display: none;
}
/* The below fix changes the 'Add to cart' button center color */
/* Primary color: #bo461c */
[data-theme-cart-button-text] svg path {
stroke: #b0461c;
}

/* Listing page sale badge customization
  Changes:
   - increase badge size by 50%
   - change badge from gray to our custom gradient
*/

/* Listing page sale badge gradient */
.theme-product-ribbon-area .theme-product-sale-ribbon {
  background: linear-gradient(
    to right,
    #ffd442,
    #faa633,
    #f26431,
    #c63527
  ) !important;
  color: #ffffff !important;

  /* Make listing page sale badge 50% larger */
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 16px 4px 4px 0;
  display: inline-block;
}

/* Expand product description to display all content */
details[open] .theme-prod-content-details {
max-height: max-content!important;
}
