/* ===== NEW DESIGN STYLES ===== */

/* Pink Header */
.pink-header {
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #db7093 100%);
  padding: 30px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.pink-header h1 {
  font-size: 36px;
  font-weight: 900;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

/* Offer Image Wrapper for Badge */
.offer-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.offer-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* Promotion Badge Circle */
.promo-badge-circle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  border: 4px solid #ff1493;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
  z-index: 10;
}

.promo-badge-inner {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promo-math {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  display: block;
}

.promo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
  letter-spacing: 1px;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 480px) {
  .pink-header h1 {
    font-size: 32px;
  }
  
  .promo-badge-circle {
    width: 100px;
    height: 100px;
    border-width: 3px;
    top: 15px;
    right: 15px;
  }
  
  .promo-math {
    font-size: 40px;
  }
  
  .promo-text {
    font-size: 14px;
  }
}



