@charset "utf-8";
/* CSS Document */
.promo-badge {
  width: 100%;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  animation: heartbeat 1.5s infinite;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(0.98);
  }
  75% {
    transform: scale(1.02);
  }
}

