/**
 * MassMailer Plus Styles
 *
 * @package MassMailerPlus
 */
.required {
  color: #dc3232;
}

.mmp-header-cta .mmp-vertical-divider {
  display: none;
}
@media (min-width: 1200px) {
  .mmp-header-cta .btn-solid-secondary,
  .mmp-header-cta .btn-outline-secondary {
    padding: 10px 12px;
  }
  .mmp-header-cta .mmp-vertical-divider {
    display: block;
    width: 1px;
    height: 24px;
    overflow: hidden;
    background-color: #999;
    align-self: center;
  }
}

.mmp-stepper {
  max-width: 900px;
  margin: 0 auto 0;
  padding: 20px;
}
.mmp-stepper__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mmp-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
.mmp-stepper__indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.mmp-stepper__number {
  font-size: 16px;
  font-weight: 600;
  color: #999;
}
.mmp-stepper__label {
  font-weight: 500;
  color: #666;
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
  min-height: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mmp-stepper__connector {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 8px;
  position: relative;
  top: -20px;
  transition: background 0.3s ease;
}
.mmp-stepper__connector--completed {
  background: var(--primary);
}
.mmp-stepper__step--active .mmp-stepper__indicator {
  background: var(--primary);
  border-color: var(--primary);
}
.mmp-stepper__step--active .mmp-stepper__number {
  color: #fff;
}
.mmp-stepper__step--active .mmp-stepper__label {
  color: var(--primary);
  font-weight: 600;
}
.mmp-stepper__step--completed .mmp-stepper__indicator {
  background: var(--primary) url("../images/icons/check.svg") no-repeat center center;
  background-size: 20px 20px;
  border-color: var(--primary);
}
.mmp-stepper__step--completed .mmp-stepper__number {
  display: none;
}
.mmp-stepper__step--completed .mmp-stepper__label {
  color: var(--primary);
}
@media (max-width: 768px) {
  .mmp-stepper {
    padding: 15px 5px;
  }
  .mmp-stepper__step {
    flex: 1;
  }
  .mmp-stepper__indicator {
    width: 32px;
    height: 32px;
  }
  .mmp-stepper__step--completed .mmp-stepper__indicator {
    background-size: 16px 16px;
  }
  .mmp-stepper__label {
    font-size: 11px;
    max-width: 70px;
    min-height: 28px;
  }
  .mmp-stepper__connector {
    margin: 0 4px;
    top: -16px;
  }
}
@media (max-width: 480px) {
  .mmp-stepper__label {
    font-size: 10px;
    max-width: 60px;
    min-height: 24px;
  }
  .mmp-stepper__indicator {
    width: 28px;
    height: 28px;
  }
  .mmp-stepper__number {
    font-size: 12px;
  }
  .mmp-stepper__step--completed .mmp-stepper__indicator {
    background-size: 14px 14px;
  }
  .mmp-stepper__connector {
    margin: 0 2px;
    top: -14px;
  }
}

.mmp-form {
  margin: 0 auto;
  background: #fff;
  border-radius: 0px;
}
.mmp-form__signup {
  padding: 20px;
  max-width: 600px;
}
.mmp-form__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
}
.mmp-form__subtitle {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #666;
}
.mmp-form__section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--primary);
}
.mmp-form__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.mmp-form__section-title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
}
.mmp-form__row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .mmp-form__row {
    flex-direction: column;
    gap: 0;
  }
}
.mmp-form__field {
  flex: 1;
  margin-bottom: 15px;
}
.mmp-form__field--half {
  flex: 0 0 calc(50% - 7.5px);
}
.mmp-form__label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}
.mmp-form__input {
  width: 100%;
  padding: 6px 15px !important;
  border: 1px solid var(--primary) !important;
  border-radius: 0px !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none !important;
  height: 40px;
}
.mmp-form__input:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: none !important;
}
.mmp-form__input:read-only {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.mmp-form__input--error {
  border-color: #dc3232 !important;
}
.mmp-form__input--error:focus {
  box-shadow: none !important;
}
.mmp-form__error {
  display: none;
  margin-top: 5px;
  font-size: 12px;
  color: #dc3232;
}
.mmp-form__error.is-visible {
  display: block;
}
.mmp-form__submit {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  margin-top: 10px;
  background-color: var(--primary);
  color: #fff;
}
.mmp-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.mmp-form__submit:hover:not(:disabled), .mmp-form__submit:focus:not(:disabled), .mmp-form__submit:active:not(:disabled) {
  background-color: #005a87;
  color: #fff;
}
.mmp-form__message {
  display: none;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid;
  border-radius: 0px;
}
.mmp-form__message p {
  margin: 0;
}
.mmp-form__message.is-visible {
  display: block;
}
.mmp-form__message--success {
  background-color: rgba(70, 180, 80, 0.1);
  border-color: #46b450;
  color: #388f40;
}
.mmp-form__message--error {
  background-color: rgba(220, 50, 50, 0.1);
  border-color: #dc3232;
  color: #dc3232;
}
.mmp-form__message--warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
}
.mmp-form__message--info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}
.mmp-form__loading {
  display: none;
  text-align: center;
  padding: 10px;
}
.mmp-form__loading.is-visible {
  display: block;
}
.mmp-form__resend-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  margin-top: 10px;
  background-color: var(--primary);
  color: #fff;
  font-size: 12px;
}
.mmp-form__resend-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.mmp-form__resend-btn:hover:not(:disabled) {
  background-color: #005a87;
}
.mmp-form__links {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 12px;
}
.mmp-form__link {
  color: var(--primary);
  text-decoration: none;
}
.mmp-form__link:hover {
  text-decoration: underline;
}

.mmp-form--login {
  max-width: 400px;
  padding: 20px;
  border: 1px solid var(--primary);
}
.mmp-form--login .login-username,
.mmp-form--login .login-password {
  margin-bottom: 15px;
}
.mmp-form--login .login-username label,
.mmp-form--login .login-password label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.mmp-form--login .login-username input,
.mmp-form--login .login-password input {
  width: 100%;
  padding: 6px 15px;
  border: 1px solid var(--primary);
  border-radius: 0px;
  box-sizing: border-box;
}
.mmp-form--login .login-remember {
  margin-bottom: 15px;
}
.mmp-form--login .login-remember label {
  cursor: pointer;
}
.mmp-form--login .login-submit input[type=submit] {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  width: 100%;
  background-color: var(--primary);
  color: #fff;
}
.mmp-form--login .login-submit input[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.mmp-form--login .login-submit input[type=submit]:hover {
  background-color: #005a87;
}

.mmp-verification-message {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 0px;
}
.mmp-verification-message__icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.mmp-verification-message__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}
.mmp-verification-message__text {
  margin: 0 0 20px;
  color: #666;
}
.mmp-verification-message__resend {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  background-color: var(--primary);
  color: #fff;
}
.mmp-verification-message__resend:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.mmp-verification-message__resend:hover:not(:disabled) {
  background-color: #005a87;
}
.mmp-verification-message__success {
  display: none;
  margin-top: 15px;
  color: #46b450;
}
.mmp-verification-message__success.is-visible {
  display: block;
}

.mmp-subscribe {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.mmp-subscribe__title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #1e1e1e;
}
.mmp-subscribe__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 12px;
  background: #f0f0f0;
  border-radius: 8px;
}
.mmp-subscribe__toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}
.mmp-subscribe__toggle-label--active {
  color: #0073aa;
  font-weight: 600;
}
.mmp-subscribe__switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.mmp-subscribe__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.mmp-subscribe__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0073aa;
  transition: 0.3s;
  border-radius: 26px;
}
.mmp-subscribe__slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.mmp-subscribe__switch input:checked + .mmp-subscribe__slider::before {
  transform: translateX(22px);
}

.mmp-subscribe__plans {
  margin-bottom: 30px;
}

.mmp-subscribe__tier {
  margin-bottom: 20px;
}

.mmp-subscribe__tier-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0073aa;
  color: #1e1e1e;
}

.mmp-subscribe__tier-plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mmp-subscribe__plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.mmp-subscribe__plan-item:hover {
  border-color: #0073aa;
  background: #f7fbfe;
}
.mmp-subscribe__plan-item:has(input:checked) {
  border-color: #0073aa;
  background: #e8f4fd;
  box-shadow: 0 0 0 1px #0073aa;
}
.mmp-subscribe__plan-item[style*="display: none"] {
  display: none !important;
}
.mmp-subscribe__plan-item input[type=radio] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #0073aa;
}

.mmp-subscribe__plan-name {
  flex: 1;
  font-weight: 500;
  color: #333;
}

.mmp-subscribe__plan-price {
  font-weight: 600;
  color: #0073aa;
  white-space: nowrap;
}

.mmp-subscribe__info-icon {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/icons/info.svg") no-repeat center/contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.mmp-subscribe__info-icon:hover, .mmp-subscribe__info-icon:focus {
  opacity: 1;
}

.mmp-subscribe__plan-item,
.mmp-subscribe__addon-item,
.mmp-subscribe__nonprofit-label {
  position: relative;
}

.mmp-subscribe__tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: #333;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 6px;
  max-width: 300px;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: normal;
  word-wrap: break-word;
}
.mmp-subscribe__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 6px solid transparent;
  border-top-color: #333;
}
.mmp-subscribe__tooltip--visible {
  display: block;
}

.mmp-subscribe__addons {
  margin-bottom: 30px;
  scroll-margin-top: 200px;
}

.mmp-subscribe__addon-group {
  margin-bottom: 20px;
}

.mmp-subscribe__cost-type {
  font-weight: 400;
  color: #888;
  margin-left: 6px;
}

.mmp-subscribe__group-name {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #333;
  padding-left: 4px;
}

.mmp-subscribe__group-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mmp-subscribe__addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  flex-wrap: wrap;
}
.mmp-subscribe__addon-item:hover {
  border-color: #0073aa;
  background: #f7fbfe;
}
.mmp-subscribe__addon-item:has(input:checked) {
  border-color: #0073aa;
  background: #e8f4fd;
}
.mmp-subscribe__addon-item--hidden {
  display: none;
}
.mmp-subscribe__addon-item input[type=checkbox],
.mmp-subscribe__addon-item input[type=radio] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #0073aa;
}

.mmp-subscribe__addon-name {
  font-weight: 500;
  color: #333;
}

.mmp-subscribe__addon-price {
  color: #666;
  margin-left: auto;
}

.mmp-subscribe__addon-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}
.mmp-subscribe__addon-qty label {
  color: #666;
}

.mmp-subscribe__qty-input {
  width: 60px;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}
.mmp-subscribe__qty-input:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 1px #0073aa;
}

.mmp-subscribe__clear-selection {
  display: none;
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  color: #0073aa;
  cursor: pointer;
  text-decoration: none;
}
.mmp-subscribe__clear-selection.is-visible {
  display: inline-block;
}
.mmp-subscribe__clear-selection:hover {
  text-decoration: underline;
  color: #005a87;
}

.mmp-subscribe__discounts {
  margin-bottom: 30px;
}

.mmp-subscribe__discount-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mmp-subscribe__coupon-field {
  flex: 1;
  min-width: 200px;
}

.mmp-subscribe__nonprofit-field {
  flex: 1;
  min-width: 250px;
}

.mmp-subscribe__nonprofit-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.mmp-subscribe__nonprofit-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #0073aa;
}

.mmp-subscribe__total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px;
  background: var(--secondary);
  color: #fff;
  margin: 0 auto 20px;
  position: sticky;
  bottom: 0;
  z-index: 100;
  max-width: fit-content;
  gap: 12px;
}

.mmp-subscribe__total-label {
  font-size: 16px;
  font-weight: 500;
}

.mmp-subscribe__total-amount {
  font-size: 24px;
  font-weight: 700;
  text-align: right;
}

.mmp-subscribe__actions {
  text-align: center;
}
.mmp-subscribe__actions .mmp-form__submit {
  min-width: 160px;
}

.mmp-summary {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.mmp-summary__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.mmp-summary__discount-banner {
  background: #eef6ed;
  border-left: 4px solid #4caf50;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  color: #2e7d32;
}
.mmp-summary__section {
  margin-bottom: 28px;
}
.mmp-summary__section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 6px;
}
.mmp-summary__table {
  width: 100%;
  border-collapse: collapse;
}
.mmp-summary__table th {
  text-align: left;
  padding: 10px 12px;
  background: #f5f5f5;
  font-family: inherit;
  border-bottom: 2px solid #ddd;
}
.mmp-summary__table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}
.mmp-summary__table tbody tr:nth-child(even) {
  background: #fafafa;
}
.mmp-summary__table th:not(:first-child),
.mmp-summary__table td:not(:first-child) {
  text-align: right;
}
.mmp-summary__table th:nth-child(2),
.mmp-summary__table td:nth-child(2) {
  width: 60px;
}
.mmp-summary__table-total td {
  font-weight: 600;
  border-top: 2px solid #ddd;
  background: #f5f5f5;
}
.mmp-summary__item-desc {
  display: block;
  color: #777;
  font-size: 0.85em;
  margin-top: 2px;
}
.mmp-summary__mobile-discount {
  display: none;
}
.mmp-summary__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  background: var(--secondary);
  color: #fff;
  border-radius: 6px;
  margin: 24px 0;
}
.mmp-summary__total-row--subtotal {
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
  color: #1b1b1b;
}
.mmp-summary__total-row--subtotal .mmp-summary__total-amount {
  font-size: 16px;
}
.mmp-summary__total-row--discount {
  background: rgba(0, 0, 0, 0.1);
  margin-top: 1px;
  margin-bottom: 1px;
  border-radius: 0;
  color: #1b1b1b;
}
.mmp-summary__total-row--discount .mmp-summary__total-amount {
  font-size: 16px;
  color: #1b1b1b;
}
.mmp-summary__total-label {
  font-size: 16px;
  font-weight: 600;
}
.mmp-summary__total-amount {
  font-size: 22px;
  font-weight: 700;
}
.mmp-summary__coupon-note {
  text-align: right;
  font-size: 0.85em;
  color: #2e7d32;
  padding: 4px 12px 0;
}
.mmp-summary__actions {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.mmp-summary__btn--secondary {
  background: #fff !important;
  color: #333 !important;
  border: 2px solid #ccc !important;
  text-decoration: none;
  text-align: center;
}
.mmp-summary__btn--secondary:hover {
  background: #f5f5f5 !important;
  border-color: #999 !important;
}

.mmp-summary__total-row--subtotal + .mmp-summary__total-row--discount + .mmp-summary__total-row {
  margin-top: 0;
  border-radius: 0 0 6px 6px;
}

.mmp-sign-agreement {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.mmp-sign-agreement__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.mmp-sign-agreement__container {
  width: 100%;
  min-height: 600px;
}
.mmp-sign-agreement__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .mmp-sign-agreement {
    padding: 12px;
  }
  .mmp-sign-agreement__actions {
    flex-direction: column;
  }
  .mmp-sign-agreement__actions a {
    width: 100%;
  }
}
.mmp-payment {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.mmp-payment__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.mmp-payment__placeholder {
  padding: 40px 20px;
  text-align: center;
  color: #888;
  font-size: 16px;
}
.mmp-payment__info {
  margin-top: 20px;
  text-align: center;
}
.mmp-payment__total {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.mmp-payment__total-label {
  font-size: 16px;
  color: #555;
}
.mmp-payment__total-value {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}
.mmp-payment__notice {
  font-size: 14px;
  color: #777;
  margin: 12px 0 0;
}
.mmp-payment__actions {
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 600px) {
  .mmp-payment {
    padding: 12px;
  }
}
.mmp-thankyou {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.mmp-thankyou__box {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
}
.mmp-thankyou__title {
  font-size: 24px;
  font-weight: 700;
  color: #166534;
  margin: 0 0 20px;
}
.mmp-thankyou__content p {
  margin: 0 0 14px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.mmp-thankyou__content p:last-child {
  margin-bottom: 0;
}
.mmp-thankyou__actions {
  margin-top: 28px;
}
.mmp-thankyou__actions .mmp-form__submit {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 600px) {
  .mmp-thankyou {
    padding: 12px;
  }
  .mmp-thankyou__box {
    padding: 24px 16px;
  }
}
@media (max-width: 600px) {
  .mmp-subscribe {
    padding: 12px;
  }
  .mmp-subscribe__discount-row {
    flex-direction: column;
    align-items: stretch;
  }
  .mmp-subscribe__total-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .mmp-summary {
    padding: 12px;
  }
  .mmp-summary__total-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .mmp-summary__actions {
    flex-direction: column;
  }
  .mmp-summary__actions a,
  .mmp-summary__actions button {
    width: 100%;
  }
  .mmp-summary__discount-col {
    display: none;
  }
  .mmp-summary__mobile-discount {
    display: block;
    color: #2e7d32;
    font-size: 0.85em;
    margin-top: 2px;
  }
}
.mmp-account {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}
.mmp-account__layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.mmp-account__nav {
  flex: 0 0 230px;
  background-color: var(--background-light);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 4px;
  padding: 20px 16px;
}
.mmp-account__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}
.mmp-account__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mmp-account__nav-item {
  border-radius: 4px;
}
.mmp-account__nav-item--active .mmp-account__nav-link {
  background-color: rgba(var(--primary-rgb), 0.1);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}
.mmp-account__nav-item--logout .mmp-account__nav-link {
  margin-top: 8px;
  color: var(--secondary);
}
.mmp-account__nav-item--logout .mmp-account__nav-link:hover {
  background-color: rgba(var(--secondary-light), 0.12);
}
.mmp-account__nav-link {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--dark);
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mmp-account__nav-link:hover {
  background-color: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
}
.mmp-account__content {
  flex: 1;
  min-width: 0;
}
.mmp-account__placeholder {
  padding: 32px 24px;
  background-color: var(--white);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 4px;
}
.mmp-account__placeholder h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.mmp-account__placeholder p {
  margin: 0;
  color: var(--dark);
  opacity: 0.8;
}
.mmp-account__empty {
  padding: 40px 24px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 4px;
}
.mmp-account__empty h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.mmp-account__empty p {
  margin: 0 0 20px;
  color: var(--dark);
  opacity: 0.8;
}
.mmp-account__empty .mmp-form__submit {
  display: inline-block;
  text-decoration: none;
}
.mmp-account__subscriptions {
  background-color: var(--white);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 4px;
  padding: 20px;
}
.mmp-account__section-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.mmp-account__table {
  width: 100%;
  border-collapse: collapse;
}
.mmp-account__table thead th {
  text-align: left;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  padding: 10px 12px;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
}
.mmp-account__table tbody td {
  padding: 14px 12px;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.06);
  vertical-align: middle;
}
.mmp-account__table .mmp-td--nowrap {
  white-space: nowrap;
}
.mmp-account__table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .mmp-account {
    padding: 16px 10px;
  }
  .mmp-account__layout {
    flex-direction: column;
  }
  .mmp-account__nav {
    width: 100%;
    flex: 0 0 auto;
  }
  .mmp-account__content {
    width: 100%;
  }
  .mmp-account__table thead {
    display: none;
  }
  .mmp-account__table tbody tr {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  }
  .mmp-account__table tbody tr:last-child {
    border-bottom: none;
  }
  .mmp-account__table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: none;
    text-align: right;
  }
  .mmp-account__table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    flex-shrink: 0;
    margin-right: 12px;
  }
}

.mmp-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  background-color: #e2e8f0;
  color: #475569;
}
.mmp-badge--success {
  background-color: #dcfce7;
  color: #166534;
}
.mmp-badge--warning {
  background-color: #fef3c7;
  color: #92400e;
}

.mmp-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1.4;
  white-space: nowrap;
}
.mmp-btn--primary {
  background-color: var(--primary);
  color: var(--white);
}
.mmp-btn--primary:hover {
  background-color: #005a87;
  color: var(--white);
}
.mmp-btn--outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.mmp-btn--outline:hover {
  background-color: rgba(var(--primary-rgb), 0.06);
}
.mmp-btn--sm {
  padding: 5px 12px;
  font-size: 12px;
}
.mmp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* MMP Wizard Styles (Nested SCSS) */
@keyframes mmpFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mmp-subscribe .mmp-wizard-substepper {
  margin-bottom: 24px;
  padding: 0;
  background: transparent;
  border: none;
}
.mmp-subscribe .mmp-wizard-substepper__bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.mmp-subscribe .mmp-wizard-substepper__progress {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease-in-out;
}
.mmp-subscribe .mmp-wizard-step {
  animation: mmpFadeIn 0.3s ease-in-out;
}
.mmp-subscribe .mmp-wizard-step h2.mmp-subscribe__title--substep,
.mmp-subscribe .mmp-wizard-step h2.mmp-subscribe__title--small {
  font-size: 20px !important;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #333;
}
.mmp-subscribe .mmp-wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.mmp-subscribe .mmp-wizard-actions #mmp-subscribe-next {
  margin-left: auto;
}
.mmp-subscribe .mmp-form__submit--secondary {
  background: #fff !important;
  color: #333 !important;
  border: 2px solid #ccc !important;
  text-decoration: none;
  text-align: center;
}
.mmp-subscribe .mmp-form__submit--secondary:hover, .mmp-subscribe .mmp-form__submit--secondary:hover:not(:disabled) {
  background: #f5f5f5 !important;
  border-color: #999 !important;
}

.mmp-subscribe .mmp-wizard-step-type {
  font-weight: 400;
  color: #888;
}
