/* Overlay */
.promo-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Modal Content */
.promo-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 36px 32px 28px 32px;
  max-width: 400px;
  width: 95vw;
  text-align: center;
  position: relative;
  animation: popIn 0.5s cubic-bezier(.18,.89,.32,1.28);
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.promo-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.promo-modal-close:hover {
  color: #d32f2f;
}

.promo-modal-body {
  margin-bottom: 22px;
}
.promo-modal-offer {
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  border-radius: 12px;
  margin: 0 auto 18px auto;
  padding: 18px 10px 12px 10px;
  color: #222;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(255, 204, 51, 0.11);
  max-width: 320px;
}
.promo-modal-dates {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 10px;
}

.promo-modal-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.13);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.promo-modal-btn:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ffd54f 100%);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.22);
}

@media (max-width: 600px) {
  .promo-modal-content {
    padding: 18px 6vw 18px 6vw;
    max-width: 97vw;
  }
  .promo-modal-offer {
    font-size: 1.05rem;
    padding: 12px 4px 8px 4px;
  }
}
