
/* Ruban rupture de stock - toutes pages */
.oe_product_image {
  position: relative !important;
  overflow: hidden !important;
}

/* Appliqué via JS car :empty ignore les espaces */
.oe_product_cart.o_out_of_stock .oe_product_image::before {
  content: "Rupture de stock";
  position: absolute;
  top: 20px;
  left: -40px;
  width: 160px;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 7px 0;
  transform: rotate(-45deg);
  z-index: 99;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  pointer-events: none;
  white-space: nowrap;
}
