/* Image wrapper so the chip can be absolutely positioned */
.product-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Keep your existing sizing; tweak if you prefer contain/cover */
.product-thumb .product-image {
  width: 100%;
  height: 200px;         /* matches your current grid cards */
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Top-left circular chip */
.sold-out-chip {
  position: absolute;
  top: 8px;
  left: 8px;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 9999px;       /* pill that looks circular at smaller widths */
  background: #000;            /* use your brand color if desired */
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  pointer-events: none;        /* avoid intercepting clicks on the card */
}