/** Shopify CDN: Minification failed

Line 89:1 Unexpected "/"

**/
/* === Always show Add to Cart button on product cards (E Plexi) ===
   Targets many common button classes and forces visibility.
   Add at end of your theme CSS. === */

/* Ensure container doesn't clip button */
.item-product,
.item-product .inner-top,
.item-product .product__info {
  overflow: visible !important;
  position: relative !important;
}

/* Common add-to-cart / quick-add selectors — make visible */
.item-product .add-to-cart,
.item-product .add_to_cart,
.item-product .product__add-to-cart,
.item-product .product-form__submit,
.item-product .quick-add,
.item-product .btn-add,
.item-product .btn-cart,
.item-product .add-to-cart-button,
.item-product .button.add-to-cart,
.item-product .button--add-to-cart,
.item-product .product-action .button,
.item-product .product-action .add-to-cart,
.item-product .product__actions .button,
.item-product .product__actions .add-to-cart {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
  transition: none !important;
  display: inline-block !important;
  width: 100% !important;            /* full width button — change if you prefer */
  box-sizing: border-box !important;
  margin-top: 10px !important;
  z-index: 50 !important;
}

/* If the theme hides the button by moving it off-screen, bring it back */
.item-product .product__actions,
.item-product .product-action,
.item-product .product-form,
.item-product .product__actions-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

/* Keep visible on hover and non-hover states */
.item-product:hover .add-to-cart,
.item-product:hover .quick-add,
.item-product:hover .product-form__submit,
.item-product:hover .product__actions {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Optional styling to make the button look neat — edit colors to match brand */
.item-product .add-to-cart,
.item-product .quick-add,
.item-product .product-form__submit,
.item-product .button.add-to-cart {
  padding: 10px 12px !important;
  border-radius: 6px !important;
  text-align: center !important;
  font-weight: 600 !important;
  background: #000 !important;   /* change to your color or remove */
  color: #fff !important;
  border: none !important;
}

/* Respect mobile layouts (smaller padding) */
@media (max-width: 767px) {
  .item-product .add-to-cart,
  .item-product .quick-add,
  .item-product .product-form__submit {
    padding: 9px 10px !important;
    font-size: 14px !important;
  }
}
*/