.medium-image {
  max-width: 300px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&display=swap');

/* ===== card surface — higher specificity to beat the block's own styles ===== */
.wp-block-woocommerce-product-template ul.wc-block-product-template li.wc-block-product,
.wc-block-product-template li.product.wc-block-product{
  background:#fff !important;
  border:1px solid #e8e2d6 !important;
  border-radius:18px !important;
  box-shadow:0 6px 20px rgba(20,52,42,.08) !important;
  position:relative !important;
  overflow:hidden !important;
  padding-bottom:18px !important;
  transition:transform .15s ease, box-shadow .15s ease !important;
}
.wc-block-product-template li.wc-block-product:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 14px 40px rgba(20,52,42,.14) !important;
}

/* image flush to the rounded top */
li.wc-block-product .wc-block-components-product-image{
  margin:0 0 12px 0 !important; border-radius:0 !important;
}

/* title + price typography */
li.wc-block-product .wc-block-components-product-title a{
  font-family:'Nunito',sans-serif !important; font-weight:800 !important; color:#1c2b26 !important;
}
li.wc-block-product .wc-block-components-product-price{
  font-family:'Nunito',sans-serif !important; font-weight:900 !important; color:#14342a !important;
}

/* keep the green pill button (already working) */
li.wc-block-product a.wp-block-button__link,
li.wc-block-product .wp-element-button{
  background:#2e8b57 !important; color:#fff !important;
  border-radius:999px !important; border:0 !important;
  font-family:'Nunito',sans-serif !important; font-weight:800 !important;
  transition:background .15s ease, transform .12s ease !important;
}
li.wc-block-product a.wp-block-button__link:hover,
li.wc-block-product .wp-element-button:hover{
  background:#3fa86c !important; transform:translateY(-2px) !important;
}

/* SALE badge -> orange pill (already working, keep) */
li.wc-block-product .wc-block-components-product-sale-badge{
  background:#ff9e3d !important; color:#3a2306 !important;
  border-radius:999px !important; font-weight:800 !important;
  padding:4px 12px !important; border:0 !important;
}

/* give-back chip -> move to BOTTOM-left so it stops colliding with SALE */
.wc-block-product-template li.wc-block-product::after{
  content:"\1FAB6  Gives back";
  position:absolute; bottom:12px; left:12px; right:auto; top:auto; z-index:3;
  background:#e7f5ec; color:#2e8b57;
  font-family:'Nunito',sans-serif; font-weight:800; font-size:11px;
  padding:4px 9px; border-radius:999px; pointer-events:none;
}
body { border-top: 12px solid red !important; }