.promo-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}

.promo-box img {
    width: 100%;
}

.top-bar {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.hot-deal {
  color: #06BB74;
  font-weight: bold;
  animation: blink 1.5s infinite;
}

.action {
  background: #EEFFF9;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.offer-title {
  font-size: 25px;
  font-weight: bold;
  background: #02C1A6;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 1.5s infinite;
}

.offer-subtitle {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}

.small-text {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0 20px;
}

.benefits li {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  text-align: left;
}

.live-data {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px auto 0;
  max-width: 500px;
}

.order-counter,
.stock-counter {
  padding: 16px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.order-counter {
  background: #e6f5e6;
  border: 2px dashed #28a745;
  color: #155724;
}

.stock-counter {
  background: #fff7e6;
  border: 2px dashed #ff9900;
  color: #8a4b00;
}

.stock-counter.low-stock {
  background: #fff3f3;
  border: 2px solid #dc3545;
  color: #a30000;
  animation: blink 1.2s infinite;
}

.bonus-box {
  background: #fff8e1;
  border: 2px dashed #ffa000;
  padding: 15px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
  color: #8a6d00;
}

.contact-highlight {
  background: #e8f5e9;
  border: 2px solid #4caf50;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #1b5e20;
  max-width: 480px;
  margin: 30px auto 0;
  box-shadow: 0 2px 6px rgba(76,175,80,0.2);
}

.contact-highlight a {
  color: #2e7d32;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}

.online-support-box {
  background: #eefcf3;
  border: 2px dashed #28a745;
  padding: 20px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  color: #1a3d2f;
  margin-top: 25px;
  box-shadow: 0 2px 6px rgba(40,167,69,0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-button,
.whatsapp-button {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cta-button {
  background: #28a745;
  color: #fff;
}

.cta-button:hover {
  background: #218838;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.testimonial {
  font-style: italic;
  color: #444;
  margin: 20px auto 10px;
  font-size: 16px;
  max-width: 480px;
  line-height: 1.6;
}

.testimonial .author {
  display: block;
  font-weight: bold;
  margin-top: 8px;
  color: #2e7d32;
  font-style: normal;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (max-width: 600px) {
  .promo-box {
    padding: 20px 15px;
  }

  .offer-title {
    font-size: 28px;
  }

  .offer-subtitle {
    font-size: 18px;
  }

  .benefits li,
  .bonus-box,
  .contact-highlight,
  .online-support-box,
  .testimonial {
    font-size: 16px;
  }

  .cta-button,
  .whatsapp-button {
    width: 100%;
    font-size: 15px;
  }

  .order-counter,
  .stock-counter {
    font-size: 18px;
  }
}
