/* الختم فوق صورة المنتج المنتهي */
.s-product-card-out-of-stock .s-product-card-image {
  position: relative;
  overflow: hidden;
}

.s-product-card-out-of-stock .s-product-card-image::after {
  content: "نفدت الكمية";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8%;
  padding: 6px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #9b5a5a;
  border: 3px solid #9b5a5a;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-6deg);
  z-index: 5;
  pointer-events: none;
}