/* Mur140 (from Mur139) — MHS upsell cards / modals · stamp ?v=20260904Mur140 · LOCAL ONLY */
:root {
  --mhs-navy: #1d314c;
  --mhs-navy-2: #2e455e;
  --mhs-gold: #fbbf00;
  --mhs-gold-soft: #fcd24c;
  --mhs-cream: #fffaf0;
  --mhs-ok: #2f6b3a;
  --mhs-muted: #5a6b7d;
  --mhs-radius: 12px;
  --mhs-shadow: 0 8px 24px rgba(29, 49, 76, 0.12);
}

.mhs-upsell-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 16px 0 24px;
}
@media (min-width: 768px) {
  .mhs-upsell-strip { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .mhs-upsell-strip.mhs-upsell-strip--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.mhs-upsell-card {
  background: #fff;
  border: 1px solid rgba(29, 49, 76, 0.12);
  border-radius: var(--mhs-radius);
  box-shadow: var(--mhs-shadow);
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}
.mhs-upsell-card--primary {
  border-color: var(--mhs-gold);
  background: linear-gradient(180deg, var(--mhs-cream), #fff 42%);
}
.mhs-upsell-card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mhs-navy);
}
.mhs-upsell-card__chip {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mhs-navy);
  color: var(--mhs-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.mhs-upsell-card__title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--mhs-navy);
  font-weight: 700;
}
.mhs-upsell-card__promise {
  margin: 0;
  color: var(--mhs-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  flex: 1;
}
.mhs-upsell-card__price {
  font-weight: 800;
  color: var(--mhs-navy);
  font-size: 1.05rem;
}
.mhs-upsell-card__price span {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--mhs-muted);
}

.mhs-upsell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mhs-gold);
  color: var(--mhs-navy) !important;
  font-weight: 800;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.mhs-upsell-cta:hover { filter: brightness(0.97); }
.mhs-upsell-cta--ghost {
  background: #fff;
  border-color: var(--mhs-navy);
  color: var(--mhs-navy) !important;
}
.mhs-upsell-cta--navy {
  background: var(--mhs-navy);
  color: #fff !important;
}

.mhs-upsell-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mhs-upsell-modal.is-open { display: flex; }
.mhs-upsell-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 49, 76, 0.55);
}
.mhs-upsell-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  padding: 22px 20px 20px;
}
.mhs-upsell-modal__close {
  position: absolute;
  top: 10px; right: 12px;
  min-width: 44px; min-height: 44px;
  border: 0; background: transparent;
  font-size: 1.4rem; color: var(--mhs-navy);
  cursor: pointer;
}
.mhs-upsell-modal__headline {
  margin: 0 36px 8px 0;
  color: var(--mhs-navy);
  font-size: 1.35rem;
  font-weight: 800;
}
.mhs-upsell-modal__sub {
  margin: 0 0 16px;
  color: var(--mhs-muted);
  line-height: 1.45;
}
.mhs-upsell-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.mhs-upsell-modal__skip {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--mhs-muted);
  font-size: 0.9rem;
}

.mhs-upsell-pay-note {
  font-size: 0.875em;
  color: var(--mhs-navy-2);
  line-height: 1.5;
  margin-bottom: 12px;
}
.mhs-upsell-pay-note strong { color: var(--mhs-navy); }

.mhs-upsell-next {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--mhs-radius);
  background: var(--mhs-cream);
  border: 1px solid rgba(251, 191, 0, 0.45);
}
.mhs-upsell-next__title {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--mhs-navy);
}
.mhs-upsell-next__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mhs-upsell-badge {
  display: inline-block;
  background: var(--mhs-navy);
  color: var(--mhs-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}
