/* POST-IT DESCONTO 15€ */
#discountSticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

#discountSticky.show {
  opacity: 1;
  transform: scale(1);
}

.discountCard {
  background: #0f6b3f;
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: 240px;
  text-align: center;
  font-family: inherit;
}

.discountTitle {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.discountText {
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.3;
}

#discountBtn {
  background: #fff;
  color: #0f6b3f;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}

#discountBtn:hover {
  background: #e6f5ec;
}
