/* ================= PROMO POPUP ================= */

.promo-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
  z-index: 9998;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
  font-family: "Inter", system-ui, sans-serif;
}

.promo-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #aaa;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.promo-close:hover {
  color: #000;
  background: #f2f2f2;
}

.promo-badge {
  display: inline-block;
  background: rgb(0, 200, 150);
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.promo-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: #000;
}

.promo-text {
  font-size: 0.83rem;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.55;
}

.promo-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.promo-form input[type="email"] {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 0.87rem;
  font-family: "Inter", system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.promo-form input[type="email"]:focus {
  border-color: rgb(0, 200, 150);
}

.promo-form button {
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: "Inter", system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.promo-form button:hover {
  background: #222;
}

.promo-terms {
  font-size: 0.7rem;
  color: #bbb;
  text-align: center;
  margin: 0;
}

.promo-success {
  text-align: center;
  padding: 12px 0 8px;
}

.promo-success-icon {
  width: 44px;
  height: 44px;
  background: rgb(0, 200, 150);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  color: #000;
}

.promo-success h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
}

.promo-success p {
  font-size: 0.82rem;
  color: #666;
}

/* ---- MOBILE ---- */
@media (max-width: 600px) {
  .promo-popup {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 24px 20px 32px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s ease;
  }

  .promo-popup.visible {
    transform: translateY(0);
    opacity: 1;
  }
}
