
/* Container — must be position: relative */
.product-sale-wrap {
  position: relative;
  overflow: hidden;
}

/* Generic ribbon strip */
.pink-friday-strip {
  font-family: "Tenor Sans";
  position: absolute;
  width: 130%;
  padding: 3px 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(
    to right,
    #f8c9d7 0%,
    #f78ab0 40%,
    #cd3f69 100%
  );
  letter-spacing: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Top ribbon */
.pink-friday-strip.top {
  top: 8%;
  inset-inline-start: -15%;
  z-index: 3;
  transform: rotate(-30deg);
}

/* Bottom ribbon */
.pink-friday-strip.bottom {
  top: 8%;
  inset-inline-start: -8%;
  z-index: 2;
  transform: rotate(10deg);
}

.pink-friday-strip.logo {
  display: block !important;
  top: 45%;
  inset-inline-start: -15%;
  font-size: 5px;
  transform: rotate(10deg);
}
