.special-offer-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;

  /* Gold luxury gradient */
  background: linear-gradient(145deg, #d4af37, #f7e27a);

  /* Depth + gloss */
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    inset 0 -3px 6px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* transform: rotate(-8deg); */
}

/* Gloss highlight */
.special-offer-badge::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  width: 70%;
  height: 40%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(2px);
}

/* Text */
.special-offer-badge span {
  font-size: 8.5px;
  font-weight: 600;
  color: #3a2f0b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.1;
}
