/* ─── Reset & base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Overlay ───────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.25s ease;
}

.popup-overlay.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ─── Popup box ─────────────────────────────────── */
.popup {
  position: relative;
  background: #fff;
  border: 5px solid #AE3920;
  border-radius: 8px;
  width: 660px;
  max-width: calc(100vw - 32px);
  padding: 40px 32px 36px;
  text-align: center;
}



/* ─── Close button ──────────────────────────────── */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.popup-close:hover {
  opacity: 1;
}

/* ─── Header: stars + title ─────────────────────── */
.popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.popup-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555555;
  text-transform: uppercase;
  background: none;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  margin: 0;
  padding: 0;
}

/* ─── Subtitle ──────────────────────────────────── */
.popup-subtitle {
  font-size: 36px;
  font-weight: 900;
  color: #AE3920;
  margin-bottom: 16px;
  line-height: 1;
}

/* ─── Body text ─────────────────────────────────── */
.popup-body {
  font-size: 17px;
  color: #3A3A4D;
  line-height: 1.4;
  margin-bottom: 28px;
}

.popup-body strong {
  display: block;
}

/* ─── CTA button ────────────────────────────────── */
.popup-cta {
  background: #AE3A20;
  border-radius: 5px;
  color: #FFF;
  display: inline-block;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
  margin-bottom: 0.65em;
  margin-top: 0em;
  max-width: none;
  overflow: hidden;
  padding: 1em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}

.popup-cta:hover {
  background-color: rgba(174, 58, 32, 0.7);
  color: #FFF;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .popup {
    width: 85%;
  }
}
