/* =====================================================================
   zahlung.css — Zahlung-Erfolg + Zahlung-Abgebrochen (Embed-Versionen)

   Quelle: Inline-<style> aus zahlung-erfolg.html + zahlung-abgebrochen.html
   der Original-Site. Beim Body-Embed gehen <style>-Blöcke verloren
   (gleicher Mechanismus wie suite-detail.css), daher als Plugin-Datei.

   ALLE Selektoren sind unter .rdt-zahlung gescoped, weil .container/.btn/
   .icon auch in residencia-page.css existieren und sonst kollidieren.
   Farb-Varianten: .rdt-zahlung-erfolg (grünes Häkchen) vs.
   .rdt-zahlung-abbruch (oranges X).
   ===================================================================== */

.rdt-zahlung {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
.rdt-zahlung *, .rdt-zahlung *::before, .rdt-zahlung *::after { box-sizing: border-box; }

.rdt-zahlung .container {
  text-align: center;
  max-width: 540px;
  width: auto;
  margin: 0;
  padding: 40px 24px;
}
.rdt-zahlung .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  color: #c9a84c;
  margin-bottom: 50px;
}

/* --- Icon-Kreis (Basis) --- */
.rdt-zahlung .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}
.rdt-zahlung .icon::before, .rdt-zahlung .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

/* Erfolg: grüner Kreis mit CSS-Häkchen */
.rdt-zahlung-erfolg .icon { border: 2px solid #2ecc71; color: #2ecc71; }
.rdt-zahlung-erfolg .icon::before { width: 12px; height: 3px; left: 22px; top: 41px; transform: rotate(45deg); transform-origin: left center; }
.rdt-zahlung-erfolg .icon::after  { width: 26px; height: 3px; left: 30px; top: 47px; transform: rotate(-50deg); transform-origin: left center; }

/* Abbruch: oranger Kreis mit CSS-X */
.rdt-zahlung-abbruch .icon { border: 2px solid #f39c12; color: #f39c12; }
.rdt-zahlung-abbruch .icon::before, .rdt-zahlung-abbruch .icon::after { left: 24px; top: 39px; width: 32px; height: 3px; }
.rdt-zahlung-abbruch .icon::before { transform: rotate(45deg); }
.rdt-zahlung-abbruch .icon::after  { transform: rotate(-45deg); }

.rdt-zahlung h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 15px;
  color: #fff;
}
.rdt-zahlung p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 12px;
}
.rdt-zahlung .booking-id {
  color: #c9a84c;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin: 18px 0 8px;
}

/* --- Erfolg: Next-Steps-Box --- */
.rdt-zahlung .next-steps {
  text-align: left;
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid #c9a84c;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}
.rdt-zahlung .next-steps h2 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #c9a84c;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 600;
}
.rdt-zahlung .next-steps ul { list-style: none; padding: 0; margin: 0; }
.rdt-zahlung .next-steps li {
  color: #ccc;
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.rdt-zahlung .next-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1.5px;
  background: #c9a84c;
  border-radius: 1px;
}

/* --- Abbruch: Help-Box --- */
.rdt-zahlung .help-box {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #c9a84c;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
  text-align: left;
}
.rdt-zahlung .help-box h2 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #c9a84c;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 600;
}
.rdt-zahlung .help-box p { color: #ccc; margin: 6px 0; font-size: 0.88rem; }
.rdt-zahlung .help-box a { color: #c9a84c; text-decoration: none; }

/* --- Buttons --- */
.rdt-zahlung .buttons {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.rdt-zahlung .btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 4px;
  background: none;
  border: none;
}
.rdt-zahlung .btn-gold,
.rdt-zahlung a.btn:not(.btn-outline) {
  margin-top: 0;
  padding: 14px 40px;
  background: #c9a84c;
  color: #0a0a0a;
}
.rdt-zahlung .btn-gold:hover,
.rdt-zahlung a.btn:not(.btn-outline):hover { background: #d4b96a; }
.rdt-zahlung-erfolg a.btn { margin-top: 30px; }
.rdt-zahlung .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #aaa;
  background: transparent;
}
.rdt-zahlung .btn-outline:hover { border-color: #c9a84c; color: #c9a84c; }

/* --- Sprach-Switch + Kontakt --- */
.rdt-zahlung .lang-switch {
  position: absolute;
  top: 18px;
  right: 24px;
  display: flex;
  gap: 4px;
}
.rdt-zahlung .lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 3px;
  min-width: 32px;
  min-height: 32px;
}
.rdt-zahlung .lang-btn.active { background: #c9a84c; color: #0a0a0a; border-color: #c9a84c; }
.rdt-zahlung .contact { margin-top: 32px; font-size: 0.78rem; color: #888; }
.rdt-zahlung .contact a { color: #c9a84c; text-decoration: none; }
