
  #maho-funnel,
  #maho-funnel * {
    box-sizing: border-box;
  }

  #maho-funnel {
    /* Farben der Angebotsseite */
    --mf-green: #315c48;
    --mf-green-dark: #244638;
    --mf-green-soft: #edf4ef;
    --mf-gold: #c4a56a;
    --mf-gold-soft: #f9f3e8;
    --mf-cream: #faf8f4;
    --mf-ink: #24312b;
    --mf-muted: #6a746e;
    --mf-line: #e1e8e3;
    --mf-white: #ffffff;
    --mf-error: #a43f3f;
    --mf-error-bg: #fff4f4;

    /*
      Höhe der fixierten Kopfzeile Ihrer Website.
      Falls der Funnel unter einem Sticky-Header sitzt,
      hier z. B. auf 90px setzen.
    */
    --mf-offset: 0px;

    width: 100%;
    color: var(--mf-ink);
    font-family: inherit;
  }

  #maho-funnel button,
  #maho-funnel input {
    font-family: inherit;
  }

  #maho-funnel.is-personal .mf-step[data-step="payment"] .mf-back[data-mf-go="details"] {
    display: none;
  }

	.mf-preview-banner {
		position: relative;
		z-index: 4;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px 18px;
		padding: 11px 20px;
		border-bottom: 1px solid #ead9b6;
		background: #fff8e9;
		color: #72561f;
		font-size: 13px;
		line-height: 1.45;
		text-align: center;
	}

	.mf-preview-banner strong { font-weight: 700; }
	.mf-preview-banner span { color: #846d41; }
	.ram-payment-preview-error { margin: 40px auto; max-width: 720px; padding: 24px; border: 1px solid #e4c7c7; border-radius: 12px; background: #fff4f4; color: #7f3030; }

  /* =========================
     BÜHNE
  ========================= */

  .mf-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(100svh - var(--mf-offset));
    overflow: hidden;

    background:
      radial-gradient(
        circle at 88% 4%,
        rgba(196, 165, 106, 0.16),
        transparent 42%
      ),
      radial-gradient(
        circle at 4% 92%,
        rgba(49, 92, 72, 0.09),
        transparent 46%
      ),
      var(--mf-cream);
  }

  /* =========================
     KOPFZEILE MIT FORTSCHRITT
  ========================= */

  .mf-topbar {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    padding: 14px 22px 0;
    background: transparent;
    border-bottom: 0;
  }

  /* Fortschritt */

  .mf-progress {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .mf-progress-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #97a09a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .mf-progress-dot {
    display: flex;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1.5px solid #dde4df;
    border-radius: 50%;
    color: #98a29b;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
  }

  .mf-progress-dot svg {
    width: 13px;
    height: 13px;
    display: none;
  }

  .mf-progress-item.is-active {
    color: var(--mf-green-dark);
  }

  .mf-progress-item.is-active .mf-progress-dot {
    background: var(--mf-green);
    border-color: var(--mf-green);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(49, 92, 72, 0.12);
  }

  .mf-progress-item.is-done {
    color: var(--mf-green);
  }

  .mf-progress-item.is-done .mf-progress-dot {
    background: var(--mf-green-soft);
    border-color: rgba(49, 92, 72, 0.35);
    color: var(--mf-green);
  }

  .mf-progress-item.is-done .mf-progress-dot span {
    display: none;
  }

  .mf-progress-item.is-done .mf-progress-dot svg {
    display: block;
  }

  .mf-progress-rail {
    width: 46px;
    height: 2px;
    margin: 0 12px;
    overflow: hidden;
    background: #dfe6e1;
    border-radius: 2px;
  }

  .mf-progress-rail span {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--mf-green);
    transition: width 0.45s ease;
  }

  .mf-progress-inline {
    justify-content: center;
    margin-top: 34px;
  }

  .mf-progress-inline .mf-progress-item {
    font-size: 12px;
  }

  /* Sprache */

  .mf-language {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 3px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(49, 92, 72, 0.10);
    border-radius: 999px;
  }

  #maho-funnel .mf-language-button {
    display: flex;
    width: 33px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    cursor: pointer;
    appearance: none;
    background: transparent !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    font-size: 17px;
    line-height: 1;
    opacity: 0.5;
    transition: 0.2s ease;
  }

  #maho-funnel .mf-language-button:hover {
    opacity: 1;
  }

  #maho-funnel .mf-language-button.is-active {
    background: var(--mf-green-soft) !important;
    opacity: 1;
  }

  /* =========================
     SCHRITTE
  ========================= */

  .mf-stage {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: flex-start;
    justify-content: center;
    padding: 38px 32px 40px;
  }

  .mf-step {
    display: none;
    width: 100%;
    max-width: 940px;
  }

  .mf-step.is-active {
    display: block;
    animation: mfStepIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .mf-step[data-step="intro"],
  .mf-step[data-step="details"],
  .mf-step[data-step="done"] {
    max-width: 720px;
  }

  @keyframes mfStepIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mf-step.is-active {
      animation: none;
    }
    #maho-funnel * {
      transition-duration: 0.01ms !important;
    }
  }

  /* Textblöcke */

  .mf-head {
    margin-bottom: 30px;
    text-align: center;
  }

  .mf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    background: var(--mf-green-soft);
    border: 1px solid rgba(49, 92, 72, 0.14);
    border-radius: 999px;
    color: var(--mf-green-dark);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .mf-eyebrow svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: var(--mf-green);
  }

  #maho-funnel .mf-title {
    margin: 0 0 14px;
    padding: 0;
    color: var(--mf-green-dark);
    font-family: inherit;
    font-size: clamp(30px, 4.2vw, 47px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.028em;
  }

  .mf-lead {
    max-width: 690px;
    margin: 0 auto;
    color: var(--mf-muted);
    font-size: 17px;
    line-height: 1.7;
  }

  /* =========================
     KARTEN
  ========================= */

  .mf-card {
    padding: 34px;
    background: var(--mf-white);
    border: 1px solid var(--mf-line);
    border-radius: 22px;
    box-shadow: 0 16px 44px rgba(36, 70, 56, 0.06);
  }

  /* Vorteile auf dem Startbildschirm */

  /* =========================
     FORMULARFELDER
  ========================= */

  .mf-field + .mf-field {
    margin-top: 22px;
  }

  .mf-field label {
    display: block;
    margin: 0 0 8px;
    color: var(--mf-green-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
  }

  .mf-field-help {
    display: block;
    margin-top: 8px;
    color: #839089;
    font-size: 12px;
    line-height: 1.5;
  }

  #maho-funnel .mf-input {
    display: block;
    width: 100%;
    min-height: 58px;
    margin: 0 !important;
    padding: 0 18px !important;
    appearance: none;
    background: #ffffff !important;
    border: 1.5px solid #d9e1db !important;
    border-radius: 13px !important;
    outline: none;
    box-shadow: none !important;
    color: var(--mf-ink) !important;
    -webkit-text-fill-color: var(--mf-ink) !important;
    font-size: 16px !important;
    font-weight: 500;
    line-height: normal !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  #maho-funnel .mf-input::placeholder {
    color: #a5aea8 !important;
    opacity: 1;
  }

  #maho-funnel .mf-input:focus {
    border-color: var(--mf-green) !important;
    box-shadow: 0 0 0 4px rgba(49, 92, 72, 0.10) !important;
  }

  #maho-funnel .mf-input.is-invalid {
    border-color: #c96d6d !important;
    box-shadow: 0 0 0 4px rgba(169, 63, 63, 0.07) !important;
  }

  #maho-funnel #mfBookingNumber {
    font-size: 19px !important;
    font-weight: 650;
    letter-spacing: 0.03em;
  }

  #maho-funnel input:-webkit-autofill,
  #maho-funnel input:-webkit-autofill:hover,
  #maho-funnel input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--mf-ink) !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
  }

  /* Personen-Stepper */

  .mf-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 240px;
  }

  #maho-funnel .mf-stepper-button {
    display: flex;
    width: 54px;
    height: 58px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--mf-green-soft) !important;
    border: 1.5px solid rgba(49, 92, 72, 0.14) !important;
    border-radius: 13px !important;
    color: var(--mf-green-dark) !important;
    -webkit-text-fill-color: var(--mf-green-dark) !important;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: 0.2s ease;
  }

  #maho-funnel .mf-stepper-button:hover {
    background: var(--mf-green) !important;
    border-color: var(--mf-green) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  #maho-funnel .mf-stepper .mf-input {
    text-align: center;
    font-size: 19px !important;
    font-weight: 700;
  }

  #maho-funnel .mf-stepper .mf-input::-webkit-outer-spin-button,
  #maho-funnel .mf-stepper .mf-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }

  /* Checkbox */

  .mf-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 16px 18px;
    background: var(--mf-green-soft);
    border: 1px solid rgba(49, 92, 72, 0.13);
    border-radius: 14px;
    cursor: pointer;
    color: var(--mf-green-dark);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
  }

  #maho-funnel .mf-check input {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    margin: 1px 0 0;
    accent-color: #315c48;
    cursor: pointer;
  }

  .mf-honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  /* =========================
     BUTTONS
  ========================= */

  .mf-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
  }

  #maho-funnel .mf-button {
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 0;
    padding: 16px 34px;
    cursor: pointer;
    appearance: none;
    background: var(--mf-green) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(49, 92, 72, 0.22);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  #maho-funnel .mf-button:hover {
    background: var(--mf-green-dark) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 15px 32px rgba(49, 92, 72, 0.26);
  }

  #maho-funnel .mf-button:focus-visible {
    outline: 3px solid rgba(49, 92, 72, 0.25);
    outline-offset: 3px;
  }

  #maho-funnel .mf-button[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
  }

  #maho-funnel .mf-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    stroke: #ffffff !important;
  }

  #maho-funnel .mf-button-gold {
    background: #b8934f !important;
    box-shadow: 0 12px 28px rgba(184, 147, 79, 0.26);
  }

  #maho-funnel .mf-button-gold:hover {
    background: #a37f3f !important;
    box-shadow: 0 15px 32px rgba(184, 147, 79, 0.30);
  }

  #maho-funnel .mf-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    cursor: pointer;
    background: transparent !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: var(--mf-muted) !important;
    -webkit-text-fill-color: var(--mf-muted) !important;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 650;
  }

  #maho-funnel .mf-back:hover {
    color: var(--mf-green-dark) !important;
    -webkit-text-fill-color: var(--mf-green-dark) !important;
  }

  #maho-funnel .mf-back svg {
    width: 14px;
    height: 14px;
  }

  .mf-spinner {
    display: none;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: mfSpin 0.7s linear infinite;
  }

  #maho-funnel .is-loading .mf-spinner {
    display: block;
  }

  #maho-funnel .is-loading .mf-button-icon {
    display: none;
  }

  @keyframes mfSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .mf-note-small {
    color: #8b958f;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  /* =========================
     FEHLER
  ========================= */

  .mf-error {
    display: none;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 15px 17px;
    background: var(--mf-error-bg);
    border: 1px solid rgba(164, 63, 63, 0.18);
    border-radius: 13px;
    color: #7c3535;
    font-size: 14px;
    line-height: 1.55;
  }

  .mf-error.is-visible {
    display: flex;
  }

  .mf-error-icon {
    display: flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: rgba(164, 63, 63, 0.10);
    border-radius: 50%;
    font-weight: 800;
  }

  /* =========================
     ZAHLUNGSÜBERSICHT
  ========================= */

  /* =========================
     BANKDATEN + QR
  ========================= */

  .mf-payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    align-items: stretch;
  }

  .mf-bank-card {
    overflow: hidden;
    background: var(--mf-white);
    border: 1px solid var(--mf-line);
    border-radius: 20px;
  }

  .mf-bank-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 19px 24px;
    background: #f5f8f6;
    border-bottom: 1px solid var(--mf-line);
  }

  .mf-bank-icon {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    background: var(--mf-green-soft);
    border-radius: 11px;
    color: var(--mf-green);
  }

  .mf-bank-icon svg {
    width: 19px;
    height: 19px;
  }

  .mf-bank-heading {
    color: var(--mf-green-dark);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 750;
  }

  .mf-bank-subheading {
    margin-top: 2px;
    color: var(--mf-muted);
    font-size: 12px;
    line-height: 1.4;
  }

  .mf-bank-body {
    padding: 4px 24px;
  }

  .mf-bank-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 3px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #eef2ef;
  }

  .mf-bank-row:last-child {
    border-bottom: 0;
  }

  .mf-bank-label {
    grid-column: 1;
    grid-row: 1;
    color: #79837d;
    font-size: 10.5px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mf-bank-value {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    color: var(--mf-ink);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 650;
  }

  .mf-bank-value.mf-strong {
    color: var(--mf-green-dark);
    font-size: 16px;
    font-weight: 800;
  }

  #maho-funnel .mf-bank-address {
    white-space: pre-line;
  }

  #mfIban {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
  }

  #maho-funnel .mf-copy {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 92px;
    height: 36px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 11px;
    cursor: pointer;
    background: #f5f8f6 !important;
    border: 1px solid #dde5e0 !important;
    border-radius: 9px !important;
    color: var(--mf-green-dark) !important;
    -webkit-text-fill-color: var(--mf-green-dark) !important;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 750;
    transition: 0.2s ease;
  }

  #maho-funnel .mf-copy:hover,
  #maho-funnel .mf-copy:focus-visible {
    background: var(--mf-green) !important;
    border-color: var(--mf-green) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  #maho-funnel .mf-copy svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    stroke: currentColor;
  }

  /* QR */

  .mf-qr-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    padding: 22px;
    background:
      radial-gradient(
        circle at bottom left,
        rgba(49, 92, 72, 0.07),
        transparent 46%
      ),
      var(--mf-white);
    border: 1px solid var(--mf-line);
    border-radius: 20px;
  }

  .mf-qr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--mf-green);
    font-size: 10.5px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .mf-qr-eyebrow svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  .mf-qr-title {
    margin: 0 0 8px;
    color: var(--mf-green-dark);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 780;
  }

  .mf-qr-text {
    margin: 0;
    color: var(--mf-muted);
    font-size: 13.5px;
    line-height: 1.6;
  }

  .mf-qr-panel {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--mf-line);
    border-radius: 16px;
    box-shadow: 0 9px 24px rgba(36, 70, 56, 0.07);
    text-align: center;
  }

  .mf-qr-code {
    display: flex;
    width: 100%;
    min-height: 210px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
  }

  .mf-qr-code svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 210px;
  }

  .mf-qr-error {
    padding: 20px 12px;
    color: var(--mf-error);
    font-size: 12px;
    line-height: 1.5;
  }

  .mf-qr-label {
    display: block;
    margin-top: 6px;
    color: #7b857f;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  /* Hinweisbox */

  .mf-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 16px;
    padding: 17px 20px;
    background: #fffaf1;
    border: 1px solid rgba(196, 165, 106, 0.30);
    border-radius: 15px;
    color: #6a5f4a;
    font-size: 13px;
    line-height: 1.6;
  }

  .mf-note-icon {
    display: flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    background: rgba(196, 165, 106, 0.16);
    border-radius: 50%;
    color: #806a35;
  }

  .mf-note-icon svg {
    width: 16px;
    height: 16px;
  }

  .mf-note strong {
    color: #4d4535;
  }

  /* =========================
     BESTÄTIGUNG
  ========================= */

  .mf-recap {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    border: 1px solid var(--mf-line);
    border-radius: 18px;
    overflow: hidden;
  }

  .mf-recap li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 22px;
    background: var(--mf-white);
    border-bottom: 1px solid #eef2ef;
    font-size: 14px;
  }

  .mf-recap li:last-child {
    border-bottom: 0;
  }

  .mf-recap-label {
    color: var(--mf-muted);
    font-weight: 600;
  }

  .mf-recap-value {
    color: var(--mf-green-dark);
    font-weight: 750;
    text-align: right;
    word-break: break-word;
  }

  .mf-recap li.mf-recap-total {
    background: var(--mf-gold-soft);
  }

  .mf-recap li.mf-recap-total .mf-recap-value {
    font-size: 19px;
    font-weight: 800;
  }

  .mf-optional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .mf-optional-grid .mf-field + .mf-field {
    margin-top: 0;
  }

  /* =========================
     ABSCHLUSS
  ========================= */

  .mf-done {
    text-align: center;
  }

  .mf-done-mark {
    display: flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    background: var(--mf-green);
    border-radius: 50%;
    box-shadow: 0 16px 38px rgba(49, 92, 72, 0.28);
    color: #ffffff;
    animation: mfPop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.4);
  }

  .mf-done-mark svg {
    width: 38px;
    height: 38px;
    stroke: #ffffff;
  }

  @keyframes mfPop {
    from {
      opacity: 0;
      transform: scale(0.6);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .mf-done-list {
    display: grid;
    gap: 10px;
    max-width: 520px;
    margin: 28px auto 0;
    padding: 0;
    list-style: none;
    text-align: left;
  }

  .mf-done-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px 18px;
    background: var(--mf-white);
    border: 1px solid var(--mf-line);
    border-radius: 14px;
    color: var(--mf-ink);
    font-size: 14px;
    line-height: 1.55;
  }

  .mf-done-list svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    color: var(--mf-green);
  }

  /* =========================
     FUSSZEILE
  ========================= */

  .mf-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 18px 32px 24px;
    color: #8a938d;
    font-size: 12.5px;
    line-height: 1.5;
    text-align: center;
  }

  .mf-footer a {
    color: var(--mf-green-dark) !important;
    font-weight: 650;
    text-decoration: none !important;
  }

  .mf-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .mf-footer-item svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: var(--mf-green);
  }

  /* =========================
     TOAST
  ========================= */

  .mf-toast {
    position: fixed;
    z-index: 999999;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    background: var(--mf-green-dark);
    border-radius: 999px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.20);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mf-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .mf-toast svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff !important;
  }

  /* =========================
     RESPONSIVE
  ========================= */

  @media (max-width: 1040px) {
    .mf-payment-grid {
      grid-template-columns: minmax(0, 1fr) 260px;
    }
  }

  @media (max-width: 900px) {
    .mf-topbar {
      padding: 12px 16px 0;
    }

    .mf-stage {
      padding: 54px 20px 34px;
    }

    .mf-payment-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .mf-qr-card {
      flex-direction: row;
      align-items: center;
      gap: 22px;
    }

    .mf-qr-panel {
      max-width: 220px;
    }
  }

  @media (max-width: 680px) {
    .mf-card {
      padding: 22px 18px;
      border-radius: 18px;
    }

    #maho-funnel .mf-title {
      font-size: 29px;
    }

    .mf-lead {
      font-size: 15.5px;
      line-height: 1.62;
    }

    .mf-optional-grid {
      grid-template-columns: 1fr;
    }

    .mf-qr-card {
      flex-direction: column;
      align-items: stretch;
    }

    .mf-qr-panel {
      max-width: none;
    }

    #maho-funnel .mf-button {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 15px;
    }

    .mf-bank-header,
    .mf-bank-body {
      padding-left: 17px;
      padding-right: 17px;
    }

    .mf-bank-value {
      font-size: 14px;
    }

    #mfIban {
      font-size: clamp(12px, 3.7vw, 15px);
      letter-spacing: -0.03em;
    }

    #maho-funnel .mf-copy {
      min-width: 78px;
      padding: 0 8px;
    }

    .mf-recap li {
      padding: 13px 16px;
      font-size: 13.5px;
    }

    .mf-progress-inline {
      width: 100%;
      justify-content: center;
      margin-top: 26px;
    }

    .mf-progress-inline .mf-progress-item {
      gap: 7px;
      font-size: 11px;
    }

    .mf-progress-inline .mf-progress-text {
      display: inline;
      white-space: normal;
      text-align: left;
    }

    .mf-progress-rail {
      width: 34px;
      margin: 0 8px;
    }

  }

  @media (max-width: 360px) {
    #maho-funnel .mf-copy {
      min-width: 62px;
      font-size: 10px;
    }

    #maho-funnel .mf-copy svg {
      display: none;
    }
  }

  /* =========================
     DARK MODE SCHUTZ
  ========================= */

  @media (prefers-color-scheme: dark) {
    #maho-funnel {
      color-scheme: light;
    }

    #maho-funnel .mf-input {
      background: #ffffff !important;
      color: #24312b !important;
      -webkit-text-fill-color: #24312b !important;
    }

    #maho-funnel .mf-button,
    #maho-funnel .mf-button * {
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
    }
  }

  /* =====================================================
     DESIGN UPDATE · FULLSCREEN RESERVIERUNGSFENSTER
     2 mm ≈ 8 px · 11 mm ≈ 42 px
  ===================================================== */

  body.maho-funnel-active {
    overflow: hidden !important;
  }

  #maho-funnel {
    --mf-green: #315c48;
    --mf-green-dark: #153a2f;
    --mf-green-soft: #eef5f1;
    --mf-gold: #c4a56a;
    --mf-gold-soft: #fbf6ec;
    --mf-cream: #f4f7f5;
    --mf-ink: #26332d;
    --mf-muted: #6e7973;
    --mf-line: #dde6e1;

    font-family: "Poppins", Arial, sans-serif;
    position: fixed;
    z-index: 2147483000;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    padding: 18px;
    overflow: hidden;
    background:
      radial-gradient(circle at 84% 10%, rgba(196, 165, 106, 0.12), transparent 27%),
      linear-gradient(145deg, #eef3f0 0%, #f7f8f6 46%, #f1eee7 100%);
  }

  #maho-funnel .mf-shell {
    width: 100%;
    height: calc(100dvh - 36px);
    min-height: 0;
    padding: 52px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    background:
      radial-gradient(
        circle at top right,
        rgba(196, 165, 106, 0.11),
        transparent 34%
      ),
      linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfcfb 100%
      );
    border: 1px solid rgba(36, 70, 56, 0.07);
    border-radius: 28px;
    box-shadow:
      0 24px 70px rgba(35, 63, 50, 0.09),
      0 4px 14px rgba(35, 63, 50, 0.04);
  }

  #maho-funnel .mf-topbar {
    z-index: 35;
    top: 24px;
    right: 28px;
    left: auto;
    width: auto;
    padding: 0;
  }

  #maho-funnel .mf-language {
    padding: 4px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(21, 58, 47, 0.10);
    box-shadow: 0 8px 24px rgba(35, 63, 50, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #maho-funnel .mf-language-button.is-active {
    background: #eaf2ed !important;
  }

  #maho-funnel .mf-stage {
    flex: 1 0 auto;
    width: 100%;
    padding: 58px 0 34px;
  }

  #maho-funnel .mf-step {
    max-width: 1040px;
    margin: 0 auto;
  }

  #maho-funnel .mf-step[data-step="details"],
  #maho-funnel .mf-step[data-step="done"] {
    max-width: 760px;
  }

  #maho-funnel .mf-head {
    margin-bottom: 32px;
  }

  #maho-funnel .mf-eyebrow {
    margin-bottom: 18px;
    padding: 8px 15px;
    background: rgba(238, 245, 241, 0.92);
    border: 1px solid rgba(21, 58, 47, 0.10);
    color: var(--mf-green-dark);
    box-shadow: 0 6px 18px rgba(35, 63, 50, 0.04);
  }

  #maho-funnel .mf-eyebrow svg {
    color: var(--mf-green);
  }

  #maho-funnel .mf-title {
    color: var(--mf-green-dark);
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 700;
    letter-spacing: -0.035em;
  }

  #maho-funnel .mf-lead {
    max-width: 680px;
    color: #68756e;
    font-size: 16.5px;
    line-height: 1.72;
  }

  #maho-funnel .mf-progress-inline {
    margin-top: 30px;
  }

  #maho-funnel .mf-progress-dot {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    background: #f6f9f7;
    border-color: #d9e4de;
  }

  #maho-funnel .mf-progress-item.is-active .mf-progress-dot {
    background: var(--mf-green);
    border-color: var(--mf-green);
    box-shadow: 0 0 0 5px rgba(49, 92, 72, 0.09);
  }

  #maho-funnel .mf-progress-rail {
    width: 74px;
    height: 1px;
    background: #d8e1dc;
  }

  /* Angebots-Design: 2 mm / 11 mm = ca. 8 px / 42 px */
  #maho-funnel .mf-card,
  #maho-funnel .mf-summary-card,
  #maho-funnel .mf-bank-card,
  #maho-funnel .mf-qr-card,
  #maho-funnel .mf-payment-ready,
  #maho-funnel .mf-note,
  #maho-funnel .mf-recap,
  #maho-funnel .mf-done-list li,
  #maho-funnel .mf-error {
    border-radius: 8px 42px 8px 42px;
  }

  #maho-funnel .mf-card {
    padding: 34px;
    background:
      radial-gradient(circle at top right, rgba(49, 92, 72, 0.045), transparent 36%),
      #ffffff;
    border-color: rgba(21, 58, 47, 0.10);
    box-shadow:
      0 22px 52px rgba(35, 63, 50, 0.065),
      0 2px 8px rgba(35, 63, 50, 0.035);
  }

  #maho-funnel .mf-input {
    border-color: #d7e1db !important;
    border-radius: 10px 24px 10px 24px !important;
    background: #fcfdfc !important;
  }

  #maho-funnel .mf-stepper-button {
    border-radius: 10px 22px 10px 22px !important;
    background: #f2f7f4 !important;
  }

  #maho-funnel .mf-button {
    background:
      radial-gradient(circle at 85% 15%, rgba(74, 126, 103, .35) 0%, transparent 38%),
      linear-gradient(135deg, #102e26 0%, #153a2f 45%, #214e40 100%) !important;
    box-shadow:
      0 13px 28px rgba(21, 58, 47, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  #maho-funnel .mf-button:hover {
    background:
      radial-gradient(circle at 75% 10%, rgba(82, 142, 113, .34) 0%, transparent 42%),
      linear-gradient(135deg, #0d2922 0%, #153a2f 42%, #295744 100%) !important;
  }

  #maho-funnel .mf-payment-grid {
    gap: 18px;
  }

  #maho-funnel .mf-bank-card,
  #maho-funnel .mf-qr-card {
    border-color: rgba(21, 58, 47, 0.10);
    box-shadow: 0 16px 38px rgba(35, 63, 50, 0.05);
  }

  #maho-funnel .mf-bank-header {
    padding: 20px 25px;
    background:
      radial-gradient(circle at 85% 15%, rgba(74, 126, 103, .35) 0%, transparent 38%),
      linear-gradient(135deg, #102e26 0%, #153a2f 45%, #214e40 100%);
    border-bottom: 0;
  }

  #maho-funnel .mf-bank-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  #maho-funnel .mf-bank-heading,
  #maho-funnel .mf-bank-subheading {
    color: #ffffff;
  }

  #maho-funnel .mf-bank-subheading {
    opacity: 0.78;
  }

  #maho-funnel .mf-bank-body,
  #maho-funnel .mf-bank-body * {
    font-family: "Poppins", Arial, sans-serif !important;
  }

  #maho-funnel .mf-bank-label,
  #maho-funnel .mf-bank-value,
  #maho-funnel .mf-bank-value.mf-strong {
    font-weight: 500 !important;
  }

  #maho-funnel .mf-bank-label {
    color: #6f7b74;
    letter-spacing: 0.055em;
  }

  #maho-funnel .mf-bank-value,
  #maho-funnel .mf-bank-value.mf-strong {
    color: #213a30;
  }

  #maho-funnel .mf-bank-row {
    padding: 14px 0;
  }

  #maho-funnel .mf-copy {
    background: #f6f9f7 !important;
    border-color: #e0e8e3 !important;
    color: #244638 !important;
    -webkit-text-fill-color: #244638 !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-weight: 500 !important;
  }

  #maho-funnel .mf-copy:hover,
  #maho-funnel .mf-copy:focus-visible {
    background: #315c48 !important;
    border-color: #315c48 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  #maho-funnel .mf-qr-card {
    background:
      radial-gradient(circle at 12% 88%, rgba(49, 92, 72, 0.09), transparent 40%),
      linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  }

  #maho-funnel .mf-qr-panel {
    border-radius: 8px 28px 8px 28px;
  }

  #maho-funnel .mf-note {
    background:
      radial-gradient(circle at 90% 20%, rgba(196, 165, 106, 0.10), transparent 38%),
      #fffaf1;
  }

  #maho-funnel .mf-step[data-step="payment"].is-active .mf-payment-ready {
    animation: mfSuccessCardIn 0.72s cubic-bezier(.16,.9,.24,1) 0.05s both;
  }

  #maho-funnel .mf-step[data-step="payment"].is-active .mf-payment-ready-icon {
    animation: mfSuccessIconIn 0.55s cubic-bezier(.2,.95,.25,1.35) 0.35s both;
  }

  @keyframes mfSuccessCardIn {
    0% {
      opacity: 0;
      transform: translateY(-12px) scale(.985);
      filter: blur(3px);
    }
    65% {
      opacity: 1;
      transform: translateY(2px) scale(1.003);
      filter: blur(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  @keyframes mfSuccessIconIn {
    from {
      opacity: 0;
      transform: scale(.55) rotate(-9deg);
    }
    to {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }

  /* Kurze Übergangsanimation zwischen Schritt 1 und 2 */
  #maho-funnel .mf-transition {
    position: absolute;
    z-index: 30;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(250, 252, 251, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity .22s ease, visibility .22s ease;
  }

  #maho-funnel .mf-transition.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #maho-funnel .mf-transition-panel {
    display: flex;
    min-width: min(360px, 90vw);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 28px 30px;
    background:
      radial-gradient(circle at top right, rgba(196, 165, 106, 0.11), transparent 40%),
      #ffffff;
    border: 1px solid rgba(21, 58, 47, 0.09);
    border-radius: 8px 42px 8px 42px;
    box-shadow: 0 22px 60px rgba(35, 63, 50, 0.12);
    color: var(--mf-green-dark);
    text-align: center;
  }

  #maho-funnel .mf-loader {
    position: relative;
    width: 48px;
    height: 48px;
  }

  #maho-funnel .mf-loader::before,
  #maho-funnel .mf-loader::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
  }

  #maho-funnel .mf-loader::before {
    border: 2px solid rgba(49, 92, 72, 0.14);
  }

  #maho-funnel .mf-loader::after {
    border: 2px solid transparent;
    border-top-color: var(--mf-green);
    border-right-color: var(--mf-green);
    animation: mfLoaderSpin .72s linear infinite;
  }

  #maho-funnel .mf-loader-core {
    position: absolute;
    inset: 12px;
    background:
      radial-gradient(circle at 70% 25%, rgba(255,255,255,.28), transparent 35%),
      var(--mf-green);
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(49, 92, 72, 0.18);
  }

  #maho-funnel .mf-transition-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 650;
  }

  @keyframes mfLoaderSpin {
    to { transform: rotate(360deg); }
  }

  #maho-funnel .mf-footer {
    flex: 0 0 auto;
    padding: 18px 0 0;
  }

  @media (max-width: 1100px) {
    #maho-funnel {
      padding: 12px;
    }

    #maho-funnel .mf-shell {
      height: calc(100dvh - 24px);
      padding: 38px;
      border-radius: 24px;
    }

    #maho-funnel .mf-topbar {
      top: 20px;
      right: 22px;
    }

    #maho-funnel .mf-stage {
      padding-top: 58px;
    }

    #maho-funnel .mf-payment-grid {
      grid-template-columns: minmax(0, 1fr) 280px;
    }
  }

  @media (max-width: 900px) {
    #maho-funnel .mf-shell {
      padding: 30px;
    }

    #maho-funnel .mf-topbar {
      top: 18px;
      right: 18px;
    }

    #maho-funnel .mf-stage {
      padding: 64px 0 30px;
    }

    #maho-funnel .mf-payment-grid {
      grid-template-columns: 1fr;
    }

    #maho-funnel .mf-qr-card {
      flex-direction: row;
      align-items: center;
    }

    #maho-funnel .mf-qr-panel {
      flex: 0 0 220px;
    }
  }

  @media (max-width: 680px) {
    #maho-funnel {
      padding: 0;
      background: #fbfcfb;
    }

    #maho-funnel .mf-shell {
      height: 100dvh;
      padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    #maho-funnel .mf-topbar {
      top: 14px;
      right: 14px;
    }

    #maho-funnel .mf-stage {
      padding: 66px 0 26px;
    }

    #maho-funnel .mf-title {
      font-size: clamp(30px, 9vw, 37px);
    }

    #maho-funnel .mf-head {
      margin-bottom: 26px;
    }

    #maho-funnel .mf-lead {
      font-size: 15px;
      line-height: 1.66;
    }

    #maho-funnel .mf-card {
      padding: 23px 18px 24px;
    }

    #maho-funnel .mf-card,
    #maho-funnel .mf-summary-card,
    #maho-funnel .mf-bank-card,
    #maho-funnel .mf-qr-card,
    #maho-funnel .mf-payment-ready,
    #maho-funnel .mf-note,
    #maho-funnel .mf-recap,
    #maho-funnel .mf-done-list li,
    #maho-funnel .mf-error {
      border-radius: 7px 30px 7px 30px;
    }

    #maho-funnel .mf-progress-inline {
      margin-top: 25px;
    }

    #maho-funnel .mf-progress-rail {
      width: 38px;
      margin-inline: 8px;
    }

    #maho-funnel .mf-progress-item {
      font-size: 11px;
    }

    #maho-funnel .mf-qr-card {
      flex-direction: column;
      align-items: stretch;
    }

    #maho-funnel .mf-qr-panel {
      flex-basis: auto;
      max-width: none;
    }

    #maho-funnel .mf-bank-body {
      padding-left: 16px;
      padding-right: 16px;
    }

    #maho-funnel .mf-bank-row {
      column-gap: 10px;
    }

    #maho-funnel .mf-footer {
      padding-top: 14px;
    }
  }

  @media (max-width: 420px) {
    #maho-funnel .mf-shell {
      padding-left: 14px;
      padding-right: 14px;
    }

    #maho-funnel .mf-progress-inline {
      transform: scale(.96);
      transform-origin: center top;
    }

    #maho-funnel .mf-progress-rail {
      width: 25px;
      margin-inline: 6px;
    }

    #maho-funnel .mf-progress-item {
      gap: 6px;
      font-size: 10.5px;
    }

    #maho-funnel .mf-progress-dot {
      width: 27px;
      height: 27px;
      flex-basis: 27px;
    }

    #maho-funnel .mf-copy {
      min-width: 74px;
      padding-inline: 7px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #maho-funnel .mf-loader::after,
    #maho-funnel .mf-step[data-step="payment"].is-active .mf-payment-ready,
    #maho-funnel .mf-step[data-step="payment"].is-active .mf-payment-ready-icon {
      animation: none !important;
    }
  }

  /* =====================================================
     V4 · TRUST HEADER + MOBILE PAYMENT UX
  ===================================================== */

  #maho-funnel .mf-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  /* Der Kopfbereich bleibt immer vollständig unter Logo + Sprachwahl. */
  #maho-funnel .mf-stage {
    padding-top: 96px;
  }

  #maho-funnel .mf-step[data-step="payment"] > .mf-actions {
    position: relative;
    z-index: 12;
  }

  /* Pflichtfelder visuell eindeutig, aber ohne zusätzliche Sternchen-Unruhe. */
  #maho-funnel #mfName,
  #maho-funnel #mfEmail {
    background: #ffffff !important;
  }

  @media (max-width: 1100px) {
    #maho-funnel .mf-stage {
      padding-top: 92px;
    }
  }

  @media (max-width: 900px) {

    #maho-funnel .mf-stage {
      padding-top: 90px;
    }
  }

  @media (max-width: 680px) {

    #maho-funnel .mf-topbar {
      top: 12px;
      right: 12px;
      gap: 7px;
    }

    #maho-funnel .mf-language {
      padding: 3px;
    }

    #maho-funnel .mf-language-button {
      width: 31px;
      height: 27px;
      font-size: 16px;
    }

    #maho-funnel .mf-stage {
      padding-top: 82px;
    }

    /* Etwas kompakter, damit die Bankdaten schneller zum CTA führen. */
    #maho-funnel .mf-step[data-step="payment"] .mf-note {
      margin-top: 12px;
      padding: 15px 16px;
    }
  }

  @media (max-width: 420px) {
    #maho-funnel .mf-topbar {
      right: 10px;
    }

    #maho-funnel .mf-stage {
      padding-top: 76px;
    }

    #maho-funnel .mf-step[data-step="payment"] > .mf-actions {
      margin-left: -14px;
      margin-right: -14px;
      padding-left: 14px;
      padding-right: 14px;
    }
  }

  /* =====================================================
     V5 · LOGO IM INHALT + 2-PHASEN-ÜBERGANG
  ===================================================== */

  /* Rechts oben bleibt ausschließlich die Sprachwahl. */
  #maho-funnel .mf-topbar {
    gap: 0;
  }

  /*
    Das Logo ist jetzt ein echtes Vertrauenselement im Inhaltsfluss:
    zentriert über der Sicherheits-Kennzeichnung.
  */
  #maho-funnel .mf-head-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 22px;
  }

  #maho-funnel .mf-head-logo img {
    display: block;
    width: clamp(132px, 15vw, 178px);
    height: auto;
    max-height: 92px;
    object-fit: contain;
  }

  /*
    Der frühere große Sicherheitsabstand war für Logo + Sprache in der Ecke
    nötig. Mit dem zentrierten Logo kann der Inhalt wieder weiter nach oben.
  */
  #maho-funnel .mf-stage {
    padding-top: 54px;
  }

  /*
    Schritt 2 beginnt bewusst ohne vorgeschaltete Info-/Summary-Karten.
    Die Bankverbindung ist der Hauptinhalt.
  */
  #maho-funnel .mf-step[data-step="payment"] {
    max-width: 1040px;
  }

  #maho-funnel .mf-step[data-step="payment"] .mf-payment-grid {
    margin-top: 0;
  }

  /* ---------- Übergang: Laden -> Erfolg ---------- */

  #maho-funnel .mf-transition-panel {
    position: relative;
    width: min(430px, 90vw);
    min-width: 0;
    min-height: 158px;
    padding: 30px 34px;
    overflow: hidden;
    transition:
      background .38s ease,
      border-color .38s ease,
      box-shadow .38s ease,
      transform .38s ease;
  }

  #maho-funnel .mf-transition-loading,
  #maho-funnel .mf-transition-success {
    display: flex;
    width: 100%;
    min-height: 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition:
      opacity .32s ease,
      transform .38s cubic-bezier(.2,.8,.2,1),
      visibility .32s ease;
  }

  #maho-funnel .mf-transition-loading {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  #maho-funnel .mf-transition-success {
    position: absolute;
    inset: 0;
    padding: 25px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.97);
    color: #ffffff;
  }

  #maho-funnel .mf-transition.is-success .mf-transition-panel {
    background:
      radial-gradient(circle at 85% 15%, rgba(74, 126, 103, .35) 0%, transparent 38%),
      linear-gradient(135deg, #102e26 0%, #153a2f 45%, #214e40 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 26px 70px rgba(21, 58, 47, 0.24),
      0 5px 18px rgba(21, 58, 47, 0.10);
    transform: scale(1.015);
  }

  #maho-funnel .mf-transition.is-success .mf-transition-loading {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.96);
  }

  #maho-funnel .mf-transition.is-success .mf-transition-success {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  #maho-funnel .mf-transition-success-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  #maho-funnel .mf-transition-success-icon svg {
    width: 25px;
    height: 25px;
    stroke: #ffffff;
  }

  #maho-funnel .mf-transition.is-success .mf-transition-success-icon {
    animation: mfTransitionCheckIn .48s cubic-bezier(.2,.95,.25,1.35) .08s both;
  }

  #maho-funnel .mf-transition-success-title {
    max-width: 320px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
  }

  @keyframes mfTransitionCheckIn {
    from {
      opacity: 0;
      transform: scale(.55) rotate(-8deg);
    }
    to {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
  }

  /*
    Die alten Zahlungs-Erfolgs- und Summary-Karten existieren in V5
    nicht mehr im Markup. Diese Regel verhindert auch bei gecachtem CSS
    versehentliche Abstände.
  */
  #maho-funnel .mf-step[data-step="payment"] .mf-payment-ready,
  #maho-funnel .mf-step[data-step="payment"] .mf-summary {
    display: none !important;
  }

  @media (max-width: 900px) {
    #maho-funnel .mf-stage {
      padding-top: 50px;
    }

    #maho-funnel .mf-head-logo {
      margin-bottom: 19px;
    }

    #maho-funnel .mf-head-logo img {
      width: clamp(128px, 19vw, 164px);
    }
  }

  @media (max-width: 680px) {
    #maho-funnel .mf-stage {
      padding-top: 54px;
    }

    #maho-funnel .mf-head-logo {
      margin-bottom: 17px;
    }

    #maho-funnel .mf-head-logo img {
      width: 138px;
      max-height: 78px;
    }

    #maho-funnel .mf-transition-panel {
      width: min(360px, calc(100vw - 36px));
      min-height: 148px;
      padding: 25px 24px;
      border-radius: 7px 32px 7px 32px;
    }

    #maho-funnel .mf-transition-success {
      padding: 22px 20px;
    }

    #maho-funnel .mf-transition-success-icon {
      width: 50px;
      height: 50px;
    }

    #maho-funnel .mf-transition-success-title {
      font-size: 16px;
    }

    /*
      Bankdaten und QR bleiben auf allen Bildschirmgrößen im Inhaltsfluss.
    */
    #maho-funnel .mf-step[data-step="payment"] .mf-bank-card {
      margin-top: 0;
    }
  }

  @media (max-width: 420px) {
    #maho-funnel .mf-head-logo img {
      width: 126px;
    }

    #maho-funnel .mf-stage {
      padding-top: 50px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #maho-funnel .mf-transition.is-success .mf-transition-success-icon {
      animation: none !important;
    }
  }

  /* =====================================================
     V6 · ZENTRIERTER ÜBERGANG + SAUBERER HAKEN
  ===================================================== */

  /*
    Wichtig: fixed statt absolute.
    So bleibt Lade-/Erfolgsmeldung immer exakt im sichtbaren
    Fullscreen-Fenster zentriert, egal wie weit die Shell gescrollt ist.
  */
  #maho-funnel .mf-transition {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:
      max(24px, env(safe-area-inset-top))
      24px
      max(24px, env(safe-area-inset-bottom));
    background: rgba(248, 251, 249, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #maho-funnel .mf-transition-panel {
    margin: 0 !important;
    transform-origin: center center;
  }

  /*
    Reiner CSS-Haken statt SVG.
    Dadurch kann kein Theme-/Elementor-SVG-Styling das Symbol verzerren.
  */
  #maho-funnel .mf-transition-success-icon {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  #maho-funnel .mf-transition-checkmark {
    position: relative;
    display: block;
    width: 24px;
    height: 15px;
    flex: 0 0 auto;
    transform: translateY(-2px) rotate(-45deg);
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 1px;
  }

  #maho-funnel .mf-transition-success-title {
    margin: 0;
    max-width: 330px;
    text-wrap: balance;
  }

  /* Etwas ruhigerer Loader für den bewusst längeren Ladezustand. */
  #maho-funnel .mf-loader {
    width: 52px;
    height: 52px;
  }

  #maho-funnel .mf-loader-core {
    inset: 13px;
  }

  #maho-funnel .mf-transition-text {
    max-width: 300px;
    text-align: center;
  }

  /*
    Leeres Personenfeld: Placeholder soll sichtbar sein,
    aber nicht wie ein bereits gewählter Wert wirken.
  */
  #maho-funnel #mfPersons::placeholder {
    color: #a6b0aa !important;
    opacity: 1;
  }

  @media (max-width: 680px) {
    #maho-funnel .mf-transition {
      padding:
        max(18px, env(safe-area-inset-top))
        18px
        max(18px, env(safe-area-inset-bottom));
    }

    #maho-funnel .mf-transition-panel {
      width: min(360px, calc(100vw - 36px));
    }

    #maho-funnel .mf-transition-success-icon {
      width: 54px;
      height: 54px;
      flex-basis: 54px;
    }

    #maho-funnel .mf-transition-checkmark {
      width: 22px;
      height: 14px;
      border-left-width: 3.5px;
      border-bottom-width: 3.5px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #maho-funnel .mf-transition-success-icon,
    #maho-funnel .mf-transition-checkmark {
      animation: none !important;
    }
  }

  /* =====================================================
     V7 · PERSÖNLICHE ÜBERWEISUNG IN ZWEI KLAREN SCHRITTEN
  ===================================================== */

  #maho-funnel .mf-payment-head {
    max-width: 940px;
    margin: 0 auto 28px;
  }

  #maho-funnel .mf-payment-head .mf-title {
    max-width: 920px;
    margin-inline: auto;
    font-size: clamp(29px, 3.5vw, 43px);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  #maho-funnel .mf-transfer-steps {
    display: flex;
    width: min(100%, 650px);
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
  }

  #maho-funnel .mf-transfer-step {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: #7b8780;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 600;
    text-align: left;
  }

  #maho-funnel .mf-transfer-step-number {
    display: flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    background: #f5f8f6;
    border: 1px solid #d8e2dc;
    border-radius: 50%;
    color: #718078;
    font-size: 12px;
    font-weight: 750;
  }

  #maho-funnel .mf-transfer-step-number svg {
    width: 15px;
    height: 15px;
  }

  #maho-funnel .mf-transfer-step.is-active {
    color: var(--mf-green-dark);
    font-weight: 700;
  }

  #maho-funnel .mf-transfer-step.is-active .mf-transfer-step-number {
    background: var(--mf-green);
    border-color: var(--mf-green);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(49, 92, 72, 0.09);
  }

  #maho-funnel .mf-transfer-step.is-done {
    color: var(--mf-green);
  }

  #maho-funnel .mf-transfer-step.is-done .mf-transfer-step-number {
    background: var(--mf-green-soft);
    border-color: rgba(49, 92, 72, 0.28);
    color: var(--mf-green);
  }

  #maho-funnel .mf-transfer-step-rail {
    width: clamp(34px, 7vw, 78px);
    height: 1px;
    flex: 0 0 auto;
    margin: 0 13px;
    background: #d8e2dc;
  }

  #maho-funnel .mf-transfer-step-rail.is-done {
    background: rgba(49, 92, 72, 0.48);
  }

  #maho-funnel .mf-transfer-steps-confirm {
    margin: 0 auto 25px;
  }

  #maho-funnel .mf-display-only {
    display: flex;
    max-width: 900px;
    align-items: flex-start;
    gap: 14px;
    margin: 26px auto 0;
    padding: 18px 20px;
    background:
      radial-gradient(circle at 92% 8%, rgba(196, 165, 106, 0.13), transparent 35%),
      #fffaf1;
    border: 1px solid rgba(196, 165, 106, 0.30);
    border-radius: 8px 30px 8px 30px;
    color: #4f493b;
    text-align: left;
  }

  #maho-funnel .mf-display-only-icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    background: rgba(196, 165, 106, 0.15);
    border-radius: 50%;
    color: #8a6a31;
  }

  #maho-funnel .mf-display-only-icon svg {
    width: 20px;
    height: 20px;
  }

  #maho-funnel .mf-display-only strong {
    display: block;
    color: #5b431d;
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 750;
  }

  #maho-funnel .mf-display-only p {
    margin: 4px 0 0;
    color: #665e4e;
    font-size: 13.5px;
    line-height: 1.62;
  }

  #maho-funnel .mf-payment-head + .mf-payment-grid {
    margin-top: 0;
  }

  @media (max-width: 680px) {
    #maho-funnel .mf-payment-head {
      margin-bottom: 20px;
    }

    #maho-funnel .mf-payment-head .mf-title {
      font-size: clamp(25px, 7.4vw, 32px);
      line-height: 1.16;
    }

    #maho-funnel .mf-transfer-steps {
      width: 100%;
      margin-top: 20px;
    }

    #maho-funnel .mf-transfer-step {
      flex: 1 1 0;
      gap: 7px;
      font-size: 11.5px;
    }

    #maho-funnel .mf-transfer-step:last-child {
      justify-content: flex-end;
    }

    #maho-funnel .mf-transfer-step-number {
      width: 28px;
      height: 28px;
      flex-basis: 28px;
    }

    #maho-funnel .mf-transfer-step-rail {
      width: 24px;
      margin: 0 7px;
    }

    #maho-funnel .mf-transfer-steps-confirm {
      margin: 0 auto 22px;
    }

    #maho-funnel .mf-display-only {
      gap: 11px;
      margin-top: 21px;
      padding: 15px 16px;
      border-radius: 7px 24px 7px 24px;
    }

    #maho-funnel .mf-display-only-icon {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }

    #maho-funnel .mf-display-only strong {
      font-size: 13.5px;
    }

    #maho-funnel .mf-display-only p {
      font-size: 12.5px;
      line-height: 1.58;
    }
  }

  @media (max-width: 420px) {
    #maho-funnel .mf-transfer-step {
      align-items: flex-start;
      font-size: 10.5px;
    }

    #maho-funnel .mf-transfer-step-rail {
      width: 15px;
      margin: 14px 5px 0;
    }

    #maho-funnel .mf-display-only {
      padding: 14px;
    }
  }

/* Live payment ledger: all entries, no editable transfer amount. */
#maho-funnel [hidden] { display:none; }
#maho-funnel .mf-payment-summary { margin:24px auto; padding:24px; max-width:820px; border:1px solid #d6e3d8; border-radius:20px; background:#fff; text-align:left; }
#maho-funnel .mf-payment-summary h2 { margin:0 0 4px; color:#153a2f; font-size:clamp(18px,2.4vw,24px); line-height:1.3; }
#maho-funnel .mf-summary-booking { margin:0 0 18px; color:#64756a; font-size:13px; }
#maho-funnel .mf-summary-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:0 0 14px; }
#maho-funnel .mf-summary-facts>div { padding:14px; border-radius:12px; background:#f6f7f3; }
#maho-funnel .mf-summary-facts .is-remaining { background:#153a2f; color:#fff; }
#maho-funnel .mf-summary-facts dt { font-size:12px; line-height:1.4; }
#maho-funnel .mf-summary-facts dd { margin:7px 0 0; font-size:clamp(18px,2.2vw,25px); font-weight:700; white-space:nowrap; }
#maho-funnel .mf-payment-summary table { width:100%; margin:16px 0 12px; border-collapse:collapse; font-size:13px; }
#maho-funnel .mf-payment-summary th,#maho-funnel .mf-payment-summary td { padding:10px 4px; border-bottom:1px solid #e6eae3; text-align:left; }
#maho-funnel .mf-payment-summary th:last-child,#maho-funnel .mf-payment-summary td:last-child { text-align:right; white-space:nowrap; }
#maho-funnel .mf-payment-summary small { color:#68766d; font-size:11px; }
#maho-funnel .mf-summary-due,#maho-funnel .mf-summary-credit { font-size:13px; font-weight:600; }
#maho-funnel .mf-payment-reported,#maho-funnel .mf-payment-state { max-width:820px; margin:18px auto; padding:16px 20px; border:1px solid #e4d5b8; border-radius:14px; background:#fcf5e7; color:#625237; font-size:14px; line-height:1.6; text-align:left; }
#maho-funnel .mf-overview-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin:12px 0; }
#maho-funnel .mf-overview-actions .mf-back { margin:0; }
#maho-funnel .mf-personal-error { max-width:700px; margin:40px auto; padding:28px; border:1px solid #e1d1bd; border-radius:18px; background:#fff8ec; color:#503e2d; }
#maho-funnel .mf-personal-error strong { display:block; margin-bottom:18px; line-height:1.6; }
@media(max-width:600px) {
  #maho-funnel .mf-payment-summary { padding:16px; }
  #maho-funnel .mf-summary-facts { grid-template-columns:1fr; gap:8px; }
  #maho-funnel .mf-summary-facts>div { display:flex; align-items:center; justify-content:space-between; gap:10px; }
  #maho-funnel .mf-summary-facts dd { margin:0; }
  #maho-funnel .mf-payment-summary table { font-size:11px; }
}

#maho-funnel .mf-test-controls { display:flex; align-items:flex-end; flex-wrap:wrap; gap:12px; margin:0 auto 20px; padding:16px; border:1px dashed #91a995; border-radius:12px; background:#f0f6ee; color:#25402e; max-width:1020px; font-size:12px; }
#maho-funnel .mf-test-controls label { display:flex; flex-direction:column; gap:5px; }
#maho-funnel .mf-test-controls select,#maho-funnel .mf-test-controls input { max-width:240px; min-height:40px; padding:8px; border:1px solid #b0c4b5; border-radius:8px; background:white; color:#25402e; font:inherit; }
#maho-funnel .mf-test-controls .mf-back { margin:0; font-size:12px; }
#maho-funnel .mf-test-controls p { width:100%; margin:0; }

/* Guest checkout: deposit first, open transfer sections, no floating actions. */
#maho-funnel { --mf-muted:#52665b; display:flex; width:auto; height:auto; }
#maho-funnel .mf-shell { background:#fcfaf5; height:auto; flex:1; min-width:0; }
#maho-funnel.is-payment .mf-shell { padding-top:24px; }
#maho-funnel.is-payment .mf-stage { padding-top:34px; }
#maho-funnel .mf-step[data-step="payment"] { max-width:1000px; }
#maho-funnel .mf-payment-head { max-width:none; margin:0 auto 36px; }
#maho-funnel .mf-payment-head .mf-head-logo { margin-bottom:18px; }
#maho-funnel .mf-payment-head .mf-head-logo img { width:84px; height:84px; max-height:none; object-fit:contain; }
#maho-funnel .mf-payment-head .mf-eyebrow { display:block; padding:0; margin:0 0 14px; background:none; border:0; box-shadow:none; color:#395748; font-size:14px; line-height:1.5; letter-spacing:.07em; }
#maho-funnel .mf-payment-head .mf-eyebrow svg { display:none; }
#maho-funnel .mf-payment-head .mf-title { max-width:690px; margin:0 auto 12px; font-family:Georgia,"Times New Roman",serif; font-size:clamp(32px,4vw,46px); font-weight:400; line-height:1.16; letter-spacing:-.02em; }
#maho-funnel .mf-payment-identity { display:flex; flex-direction:column; align-items:center; gap:7px; margin:0 auto 24px; color:#52665b; font-size:16px; line-height:1.5; overflow-wrap:anywhere; }
#maho-funnel .mf-guest-name { max-width:100%; color:#153a2f; font-size:clamp(21px,2.6vw,26px); font-weight:600; line-height:1.35; }
#maho-funnel .mf-booking-reference { padding:4px 12px; border:1px solid #d5dfd4; border-radius:999px; background:linear-gradient(135deg,#f9fbf8,#edf2e9); color:#405647; font-size:14px; line-height:1.5; }
#maho-funnel .mf-invitation { max-width:700px; margin:0 auto; padding:28px 34px; background:#f2eddf; border:1px solid #ded9c9; border-radius:22px; }
#maho-funnel .mf-invitation h2 { margin:0; color:#244638; font-family:inherit; font-size:18px; font-weight:600; line-height:1.5; }
#maho-funnel .mf-invitation-amount { margin:4px 0 14px; color:#153a2f; font-size:clamp(42px,6vw,58px); font-weight:700; line-height:1.15; letter-spacing:-.035em; font-variant-numeric:tabular-nums; overflow-wrap:anywhere; }
#maho-funnel .mf-invitation-lead { max-width:580px; margin:0 auto 20px; font-size:17px; line-height:1.65; color:#344e41; }
#maho-funnel .mf-payment-budget { margin:0 0 22px; padding:16px 0 0; border-top:1px solid #d5d1c1; color:#405647; font-size:16px; line-height:1.5; }
#maho-funnel .mf-payment-budget>div { display:flex; justify-content:space-between; gap:12px; text-align:left; margin-bottom:10px; }
#maho-funnel .mf-payment-budget dt { font-weight:400; flex:1; }
#maho-funnel .mf-payment-budget dd { flex:1; margin:0; text-align:right; font-weight:600; font-variant-numeric:tabular-nums; }
#maho-funnel .mf-payment-budget dd span { display:block; font-weight:400; font-size:14px; line-height:1.5; }
#maho-funnel .mf-budget-due { margin:8px 0 0; }
#maho-funnel .mf-transfer-heading { margin:0 0 22px; }
#maho-funnel .mf-transfer-heading h2,#maho-funnel .mf-report-actions h2 { margin:0 0 10px; color:#153a2f; font-size:25px; line-height:1.35; font-weight:600; }
#maho-funnel .mf-transfer-heading p { max-width:760px; margin:0 0 8px; color:#405647; font-size:16px; line-height:1.65; }
#maho-funnel .mf-section-link { display:inline-flex; align-items:center; min-height:48px; padding:8px 0; color:#244638; font-size:16px; font-weight:600; text-decoration:underline; text-underline-offset:4px; }
#maho-funnel .mf-payment-grid { grid-template-columns:minmax(0,1.3fr) minmax(0,1fr); gap:20px; }
#maho-funnel .mf-bank-card,#maho-funnel .mf-qr-card { border-radius:18px; border-color:#ccd5cc; box-shadow:none; background:#fff; min-width:0; }
#maho-funnel .mf-bank-header { padding:20px; background:radial-gradient(ellipse at 90% 0%,rgba(129,164,127,.2),transparent 65%),linear-gradient(125deg,#12382e,#285a46); }
#maho-funnel .mf-bank-heading { margin:0; font-family:inherit; font-size:18px; line-height:1.4; }
#maho-funnel .mf-bank-subheading { margin-top:6px; font-size:16px; font-weight:500; line-height:1.5; color:#f0f5ed; opacity:1; }
#maho-funnel .mf-bank-body { padding:4px 20px; }
#maho-funnel .mf-bank-row { min-height:82px; padding:16px 0; gap:4px 12px; }
#maho-funnel .mf-bank-label { font-size:14px; letter-spacing:0; text-transform:none; color:#52665b; line-height:1.5; }
#maho-funnel .mf-bank-value,#maho-funnel .mf-bank-value.mf-strong { font-size:18px; line-height:1.5; overflow-wrap:anywhere; }
#maho-funnel #mfIban { white-space:normal; }
#maho-funnel .mf-copy { min-width:96px; min-height:48px; height:auto; padding:12px 10px; font-size:14px; }
#maho-funnel .mf-qr-card { display:flex; flex-direction:column; align-items:stretch; justify-content:flex-start; padding:24px; }
#maho-funnel .mf-qr-eyebrow { color:#395748; font-size:14px; line-height:1.5; }
#maho-funnel .mf-qr-title { font-family:inherit; font-size:22px; line-height:1.4; }
#maho-funnel .mf-qr-text,#maho-funnel .mf-qr-help { margin:0; color:#405647; font-size:16px; line-height:1.6; }
#maho-funnel .mf-qr-panel { flex:0 0 auto; max-width:300px; margin:auto auto 0; padding:12px; border:0; box-shadow:none; border-radius:0; }
#maho-funnel .mf-qr-code { width:100%; min-height:0; border-radius:0; }
#maho-funnel .mf-qr-code svg { width:100%; max-width:250px; height:auto; }
#maho-funnel .mf-qr-code svg path { fill:#000; stroke:none; }
#maho-funnel .mf-qr-label { color:#52665b; font-size:14px; line-height:1.5; letter-spacing:0; text-transform:none; }
#maho-funnel .mf-qr-error { font-size:16px; }
#maho-funnel .mf-step[data-step="payment"] .mf-note { border-radius:14px; padding:18px; font-size:16px; line-height:1.6; background:#edf3ed; color:#344e41; }
#maho-funnel .mf-step[data-step="payment"] .mf-note strong { font-size:16px; color:#244638; }
#maho-funnel .mf-step[data-step="payment"]>.mf-report-actions { position:static; max-width:700px; margin:32px auto; padding:26px; border:1px solid #d5ded4; border-radius:18px; background:#edf3ed; text-align:center; }
#maho-funnel .mf-report-actions p { margin:0 0 6px; font-size:16px; line-height:1.65; color:#405647; }
#maho-funnel .mf-button { min-height:56px; max-width:100%; font-size:17px; line-height:1.45; white-space:normal; }
#maho-funnel .mf-back { min-height:48px; padding:12px; font-size:16px; line-height:1.5; text-decoration:underline; text-underline-offset:4px; }
#maho-funnel .mf-language-button { width:48px; height:44px; font-size:16px; opacity:1; color:#244638; }
#maho-funnel .mf-input { min-height:52px; font-size:18px; }
#maho-funnel .mf-check { min-height:52px; font-size:16px; line-height:1.6; }
#maho-funnel .mf-check input { min-width:24px; min-height:24px; flex:0 0 24px; }
#maho-funnel .mf-field-help,#maho-funnel .mf-done-list li,#maho-funnel .mf-note-small,#maho-funnel .mf-footer-item { font-size:16px; line-height:1.6; }
#maho-funnel .mf-field-help,#maho-funnel .mf-note-small,#maho-funnel .mf-footer-item,#maho-funnel .mf-lead,#maho-funnel .mf-transfer-step { color:#52665b; }
#maho-funnel .mf-transfer-step { font-size:14px; }
#maho-funnel .mf-footer-item a { display:inline-flex; align-items:center; min-height:48px; overflow-wrap:anywhere; }
#maho-funnel .mf-payment-summary { max-width:none; padding:24px; border-radius:18px; }
#maho-funnel .mf-payment-summary table { font-size:16px; table-layout:fixed; }
#maho-funnel .mf-payment-summary td,#maho-funnel .mf-payment-summary th { overflow-wrap:anywhere; }
#maho-funnel .mf-payment-summary td:last-child,#maho-funnel .mf-payment-summary th:last-child { white-space:normal; }
#maho-funnel .mf-payment-summary small,#maho-funnel .mf-summary-booking,#maho-funnel .mf-summary-facts dt { font-size:14px; }
#maho-funnel .mf-summary-due,#maho-funnel .mf-summary-credit,#maho-funnel .mf-payment-reported,#maho-funnel .mf-payment-state { font-size:16px; }
#maho-funnel .mf-toast { max-width:calc(100% - 32px); width:max-content; white-space:normal; font-size:16px; line-height:1.5; pointer-events:none; }
#maho-funnel .mf-toast.is-error { background:#7a2828; }
#maho-funnel .mf-toast.is-error svg { display:none; }
#maho-funnel :focus-visible,#maho-funnel .mf-button:focus-visible,#maho-funnel .mf-input:focus-visible,#maho-funnel .mf-copy:focus-visible { outline:3px solid #397157; outline-offset:4px; }
#maho-funnel .mf-pointer-focus:focus { outline:none; }
@media(max-width:900px) {
  #maho-funnel .mf-payment-grid { grid-template-columns:1fr; }
  #maho-funnel .mf-qr-panel { margin:0 auto; }
}
@media(max-width:680px) {
  #maho-funnel .mf-shell { padding-bottom:calc(32px + env(safe-area-inset-bottom)); }
  #maho-funnel .mf-stage { padding-top:50px; }
  #maho-funnel .mf-payment-head .mf-head-logo img { width:72px; height:72px; }
  #maho-funnel .mf-payment-head .mf-eyebrow { font-size:12px; letter-spacing:.04em; }
  #maho-funnel .mf-payment-head .mf-title { font-size:34px; line-height:1.2; }
  #maho-funnel .mf-payment-identity { margin-bottom:20px; }
  #maho-funnel .mf-invitation { padding:22px 18px; border-radius:18px; }
  #maho-funnel .mf-invitation-lead { font-size:16px; }
  #maho-funnel #mfBankJump { padding-inline:16px; font-size:16px; }
  #maho-funnel .mf-payment-budget>div { flex-wrap:wrap; }
  #maho-funnel .mf-transfer-heading h2,#maho-funnel .mf-report-actions h2 { font-size:23px; }
  #maho-funnel .mf-bank-header,#maho-funnel .mf-qr-card { padding:18px; }
  #maho-funnel .mf-bank-body { padding-inline:16px; }
  #maho-funnel .mf-step[data-step="payment"]>.mf-report-actions { padding:22px 16px; margin:26px auto; }
  #maho-funnel .mf-summary-facts>div { flex-wrap:wrap; }
}
@media(max-width:380px) {
  #maho-funnel .mf-bank-row { grid-template-columns:1fr; }
  #maho-funnel .mf-copy { grid-column:1; grid-row:3; justify-self:start; margin-top:6px; }
  #maho-funnel .mf-payment-budget>div { display:block; }
  #maho-funnel .mf-payment-budget dd { text-align:left; }
}
@media(prefers-reduced-motion:reduce) {
  #maho-funnel *,#maho-funnel *::before,#maho-funnel *::after { animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
