/* =========================================================
   SARAH CARINA — "Deine Berufung"
   Zusatz-Layer (bf-*) zum sp-*-Layer aus sales.css.
   Enthält nur das Angebots-Modul: die Umschaltung zwischen
   den beiden Paketen und den gerahmten Leistungskasten.
   Optisch bewusst am Angebotskasten der Signature-Personal-
   Brand-Seite orientiert, damit beide Angebote gleich lesen.
   ========================================================= */

:root { --bf-gold: #a98a52; }

/* ---------------------------------------------------------
   UMSCHALTUNG — mit oder ohne Begleitung
   Zwei echte Buttons in einer radiogroup: per Tastatur
   bedienbar, Zustand über aria-checked statt nur über Farbe.
   --------------------------------------------------------- */
.bf-switch {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  margin: 34px auto 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--pill);
}
.bf-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  letter-spacing: .4px;
  color: var(--text-muted);
  /* 44px Zielgröße für Touch */
  padding: 12px 26px;
  min-height: 44px;
  border-radius: var(--pill);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.bf-switch button:hover { color: var(--ink); }
.bf-switch button[aria-checked="true"] {
  background: var(--ink-fixed);
  color: var(--bg-fixed);
}
.bf-switch button:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 3px; }

/* ---------------------------------------------------------
   ANGEBOTSKASTEN
   --------------------------------------------------------- */
.bf-offer {
  max-width: 560px;
  margin: 30px auto 0;
  background: linear-gradient(180deg, #f8f6f2, #e4e0d9);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
html[data-theme="dark"] .bf-offer {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-deep));
}
.bf-offer-name {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-dark);
}
.bf-offer-price {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--ink);
  margin: 14px 0 4px;
  line-height: 1.05;
}
.bf-offer-meta {
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bf-gold);
  margin: 0 0 10px;
}
.bf-offer-note {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 26px;
}
.bf-offer ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.bf-offer li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}
.bf-offer li svg {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  stroke: var(--bf-gold);
  fill: none;
  stroke-width: 2;
}
.bf-offer li strong { display: block; font-weight: 500; }
.bf-offer li .bf-li-sub {
  display: block;
  margin-top: 3px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
/* Punkte, die nur zu einem der beiden Pakete gehören */
.bf-offer li.bf-only-plus,
.bf-offer li.bf-only-solo { display: none; }
.bf-offer[data-plan="plus"] li.bf-only-plus { display: flex; }
.bf-offer[data-plan="solo"] li.bf-only-solo { display: flex; }

.bf-offer .btn { width: 100%; justify-content: center; }
.bf-offer-cancel {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------------------------------------------------------
   RÜCKMELDUNG auf der Bestellseite
   Erscheint nur, wenn wirklich etwas zu sagen ist.
   --------------------------------------------------------- */
.bf-status {
  display: none;
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--accent-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(20, 19, 18, .05);
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink);
  text-align: left;
}
html[data-theme="dark"] .bf-status { background: rgba(240, 236, 228, .07); }
.bf-status.is-visible { display: block; }
.bf-status a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.bf-status strong { font-weight: 500; }

/* ---------------------------------------------------------
   RECHTLICHER HINWEIS auf der Bestellseite
   --------------------------------------------------------- */
.bf-legal {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: left;
}
.bf-legal p {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.bf-legal p:last-child { margin-bottom: 0; }
.bf-legal strong { color: var(--ink); font-weight: 500; }
.bf-legal a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------
   VERGLEICHSZEILE unter dem Kasten
   --------------------------------------------------------- */
.bf-compare {
  max-width: 560px;
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
}
.bf-compare strong { color: var(--ink); font-weight: 500; }

@media (max-width: 560px) {
  .bf-switch { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .bf-switch button { transition: none !important; }
}
