.famjb-mfg-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.famjb-mfg-promo-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

body.famjb-mfg-promo-open {
  overflow: hidden;
}

.famjb-mfg-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.famjb-mfg-promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
  animation: famjbMfgPromoIn 0.28s ease both;
}

@keyframes famjbMfgPromoIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.famjb-mfg-promo-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
}

.famjb-mfg-promo-modal__icon {
  color: #116b45;
  margin-bottom: 14px;
}

.famjb-mfg-promo-modal__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  margin: 0 0 10px;
}

.famjb-mfg-promo-modal__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  color: #0f3d2e;
  margin: 0 0 12px;
}

.famjb-mfg-promo-modal__lead {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.famjb-mfg-promo-modal__body {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 22px;
}

.famjb-mfg-promo-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.famjb-mfg-promo-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.famjb-mfg-promo-modal__btn--primary {
  background: #116b45;
  color: #fff;
}

.famjb-mfg-promo-modal__btn--primary:hover {
  background: #0d5638;
}

.famjb-mfg-promo-modal__btn--ghost {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.famjb-mfg-promo-modal__btn--ghost:hover {
  background: #f9fafb;
}
