/* ═══════════════════════════════════════════
   Promo Popup — $149 Inspection Offer
   ═══════════════════════════════════════════ */

.promo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: promoFadeIn 0.3s ease;
}
.promo-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes promoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes promoSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.promo-popup {
  position: relative;
  background: #fffdf8;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(176, 141, 87, 0.15);
  overflow: hidden;
  animation: promoSlideUp 0.4s ease 0.1s both;
}

/* ── Close button ── */
.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.promo-close:hover {
  background: #fff;
  transform: scale(1.1);
}
.promo-close svg {
  width: 16px;
  height: 16px;
  stroke: #555;
  stroke-width: 2.5;
}

/* ── Top banner strip ── */
.promo-banner {
  background: linear-gradient(135deg, #2c3e2d 0%, #3a5a3c 100%);
  padding: 16px 24px;
  text-align: center;
}
.promo-banner-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 4px;
  font-weight: 600;
}
.promo-banner-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 22px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

/* ── Body ── */
.promo-body {
  padding: 28px 28px 24px;
  text-align: center;
}

.promo-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.promo-price-label {
  font-size: 14px;
  color: #6b7c6b;
  font-weight: 500;
}
.promo-price {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 48px;
  font-weight: 800;
  color: #2c3e2d;
  line-height: 1;
}
.promo-price-dollar {
  font-size: 28px;
  vertical-align: super;
  margin-right: 2px;
}

.promo-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f0ebe0, #faf6ed);
  border: 1px solid #e0d8c8;
  border-radius: 8px;
  padding: 8px 16px;
  margin: 12px 0 20px;
  font-size: 13px;
  color: #5a4e38;
  font-weight: 600;
}
.promo-credit svg {
  width: 16px;
  height: 16px;
  stroke: #b08d57;
  flex-shrink: 0;
}

.promo-desc {
  font-size: 14px;
  color: #6b7c6b;
  line-height: 1.6;
  margin: 0 0 24px;
}

.promo-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2c3e2d 0%, #3a5a3c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(44, 62, 45, 0.3);
}
.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 62, 45, 0.4);
  color: #fff;
}

.promo-footer {
  padding: 0 28px 20px;
  text-align: center;
}
.promo-footer-text {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .promo-popup {
    max-width: 100%;
    border-radius: 16px;
  }
  .promo-body {
    padding: 24px 20px 20px;
  }
  .promo-price {
    font-size: 42px;
  }
  .promo-banner-title {
    font-size: 19px;
  }
}
