/* ---- Overlay ---- */
.discount-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.discount-popup-overlay.active { display: flex; }

/* ---- Card ---- */
.discount-popup {
  position: relative; /* so close button aligns to it */
  background: linear-gradient(180deg, #DEEEFF 0%, #F0F0F0 100%);
  border: 2px solid transparent;
  border-radius: 14px;
  width: 92%;
  max-width: 520px;
  padding: 26px 24px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Gradient border */
  border-image-slice: 1;
  /* border-image-source: linear-gradient(
    140.2deg,
    #014E98 20.95%,
    rgba(1, 78, 152, 0) 95.16%
  ); */
}

/* Logo */
.discount-popup > img {
  max-width: 190px;
  height: auto;
  margin: 2px auto 8px;
  display: block;
}

/* Headline */
.discount-popup h2 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  background: linear-gradient(91.81deg, #1580ED 18.16%, #003E7A 83.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub-head (yellow gradient) */
.discount-popup p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #F9CA56 0%, #CE970C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Inputs ---- */
.discount-popup input,
.discount-popup textarea {
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  padding: 12px 16px;
  margin: 10px 0;
  border: 1px solid #d6e2f5;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.discount-popup textarea {
  min-height: 96px;
  height: auto;
  resize: vertical;
}
.discount-popup input::placeholder,
.discount-popup textarea::placeholder {
  color: #97a7bf;
}
.discount-popup input:focus,
.discount-popup textarea:focus {
  border-color: #1580ED;
  box-shadow: 0 0 0 4px rgba(21,128,237,.12);
}

/* ---- Submit button ---- */
.discount-popup button[type="submit"] {
  width: 100%;
  height: 54px;
  margin-top: 6px;
  border: 0;
  border-radius: 22px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #1580ED 0%, #003E7A 100%);
  box-shadow: 0 8px 16px rgba(1,78,152,.25);
  transition: transform 0.05s ease, filter 0.2s ease;
}
.discount-popup button[type="submit"]:hover {
  filter: brightness(1.05);
}
.discount-popup button[type="submit"]:active {
  transform: translateY(1px);
}

/* ---- Close button ---- */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(91.81deg, #1580ED 18.16%, #003E7A 83.17%);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(1,78,152,.25);
}

/* Small devices */
@media (max-width: 420px) {
  .discount-popup {
    padding: 22px 18px 24px;
    max-width: 92vw;
  }
  .discount-popup h2 { font-size: 22px; }
  .discount-popup p { font-size: 16px; }
}
