@charset "utf-8";
/* ============================================================================
   Termin-Buchungs-Wizard (Eigenbau, ersetzt HubSpot-Meeting-Embed)
   Scoped Praefix: .wpit-book-*
   Brand-Tokens aus refresh.css werden wiederverwendet, ergaenzt um lokale --bk-*
   ============================================================================ */

.wpit-book-wrap,
.wpit-book-modal {
  --bk-primary: var(--brand-primary, #13447a);
  --bk-primary-dark: var(--brand-primary-dark, #0e2f56);
  --bk-amber: var(--brand-amber, #d4a017);
  --bk-amber-soft: color-mix(in oklab, #d4a017 14%, white);
  --bk-track: #e6eaef;
  --bk-surface: #ffffff;
  --bk-surface-soft: #f6f8fb;
  --bk-text: #1f2937;
  --bk-text-soft: #4b5563;
  --bk-text-muted: #6b7280;
  --bk-border: #e2e6ec;
  --bk-border-strong: #c7cdd6;
  --bk-error: #b00020;
  --bk-radius-sm: 8px;
  --bk-radius-md: 12px;
  --bk-radius-lg: 16px;
  --bk-shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 24px rgba(15, 23, 42, 0.06);
  --bk-shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 12px 36px rgba(15, 23, 42, 0.08);
  --bk-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bk-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  margin-top: 0;
  font-family: 'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--bk-text);
  -webkit-text-size-adjust: 100%;
}

.wpit-book {
  background: var(--bk-surface);
  border-radius: var(--bk-radius-lg);
  padding: 32px clamp(20px, 4vw, 44px) 28px;
  position: relative;
}

.wpit-book-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------------------------------------------
   Cover (Deckblatt vor dem Modal-Wizard)
---------------------------------------------------------------------------- */
.wpit-book-cover {
  position: relative;
}

.wpit-book-cover-card {
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in oklab, var(--bk-primary) 4%, white) 50%, color-mix(in oklab, var(--bk-amber) 6%, white) 100%);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  box-shadow: var(--bk-shadow-card);
  padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 64px);
  text-align: center;
  /* 820 px gibt dem 41-Zeichen-Title "Persönliches Erstgespräch mit Peter Hillig"
     bei 30 px Bold genug Platz fuer eine Zeile auf grossen Viewports.
     Bei 720 px brach die Zeile um (Peter | Hillig). */
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.wpit-book-cover-card::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, color-mix(in oklab, var(--bk-amber) 22%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wpit-book-cover-card > * { position: relative; z-index: 1; }

.wpit-book-cover-icon {
  width: 96px; height: 96px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in oklab, var(--bk-primary) 14%, white), color-mix(in oklab, var(--bk-amber) 18%, white));
  color: var(--bk-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(19, 68, 122, 0.18);
}
.wpit-book-cover-icon svg { width: 56px; height: 56px; }

/* Foto-Avatar fuer das Cover (Peter Hillig). Identische Schatten + Rand-Optik
   wie das Icon, plus zarter weisser 4px-Ring fuer Softness gegen den
   Hintergrund-Soft-Gradient. */
.wpit-book-cover-avatar {
  width: 120px; height: 120px;
  margin: 0 auto 26px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, color-mix(in oklab, var(--bk-primary) 14%, white), color-mix(in oklab, var(--bk-amber) 18%, white));
  box-shadow: 0 10px 30px rgba(19, 68, 122, 0.22), 0 0 0 4px rgba(255, 255, 255, 0.7);
}
.wpit-book-cover-avatar picture,
.wpit-book-cover-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.wpit-book-cover-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  color: var(--bk-primary);
  letter-spacing: -0.4px;
  line-height: 1.25;
  text-transform: none;
  font-family: inherit;
}

.wpit-book-cover-text {
  margin: 0 auto 28px;
  max-width: 540px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--bk-text-soft);
}

.wpit-book-cover-bullets {
  list-style: none;
  margin: 0 auto 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 460px;
}
.wpit-book-cover-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--bk-text);
  font-weight: 500;
}
.wpit-book-cover-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bk-amber) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat;
  box-shadow: 0 2px 6px rgba(212, 160, 23, 0.32);
}

.wpit-book-cover-btn {
  background: var(--bk-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(19, 68, 122, 0.28);
  transition: background-color 200ms var(--bk-ease), transform 200ms var(--bk-ease), box-shadow 200ms var(--bk-ease);
}
.wpit-book-cover-btn svg { width: 20px; height: 20px; transition: transform 220ms var(--bk-ease-spring); }
.wpit-book-cover-btn:hover {
  background: var(--bk-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(19, 68, 122, 0.36);
}
.wpit-book-cover-btn:hover svg { transform: translateX(4px); }
.wpit-book-cover-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--bk-amber) 50%, transparent), 0 8px 24px rgba(19, 68, 122, 0.28);
}

.wpit-book-cover-meta {
  margin: 24px 0 0;
  font-size: 12.5px;
  color: var(--bk-text-muted);
  letter-spacing: 0.2px;
}

/* ----------------------------------------------------------------------------
   Modal (enthaelt den Wizard)
---------------------------------------------------------------------------- */
.wpit-book-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(20px, 4vh, 60px) clamp(12px, 3vw, 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wpit-book-modal[hidden] { display: none; }

.wpit-book-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: wpit-book-backdrop-in 280ms var(--bk-ease) both;
  cursor: pointer;
}
@keyframes wpit-book-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wpit-book-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: var(--bk-surface);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 0 12px 32px rgba(0, 0, 0, 0.18);
  margin: auto;
  animation: wpit-book-modal-pop 320ms var(--bk-ease-spring) both;
  overflow: hidden;
}
@keyframes wpit-book-modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wpit-book-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--bk-border);
  color: var(--bk-text-soft);
  cursor: pointer;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 160ms var(--bk-ease), color 160ms var(--bk-ease), transform 160ms var(--bk-ease), box-shadow 160ms var(--bk-ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.wpit-book-modal-close svg { width: 18px; height: 18px; }
.wpit-book-modal-close:hover {
  background: #fff;
  color: var(--bk-error);
  transform: rotate(90deg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.wpit-book-modal-body { position: relative; }

.wpit-book-modal .wpit-book {
  background: transparent;
  box-shadow: none;
  border: none;
}

body.wpit-book-modal-open { overflow: hidden; }

@media (max-width: 760px) {
  .wpit-book-modal { padding: 0; }
  .wpit-book-modal-dialog { border-radius: 0; min-height: 100vh; max-width: 100%; }
  .wpit-book-modal-close { top: 10px; right: 10px; width: 36px; height: 36px; }
  .wpit-book-cover-card { padding: 36px 22px; }
  .wpit-book-cover-icon { width: 80px; height: 80px; }
  .wpit-book-cover-icon svg { width: 46px; height: 46px; }
  .wpit-book-cover-avatar { width: 100px; height: 100px; }
  .wpit-book-cover-bullets li { font-size: 13.5px; }
}

/* ----------------------------------------------------------------------------
   Reschedule-Banner (im Modal oben, wenn ?reschedule=token in URL ist)
---------------------------------------------------------------------------- */
.wpit-book-reschedule-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: -8px 0 24px;
  padding: 14px 18px;
  background: color-mix(in oklab, var(--bk-amber) 10%, white);
  border: 1px solid color-mix(in oklab, var(--bk-amber) 35%, var(--bk-border));
  border-left: 4px solid var(--bk-amber);
  border-radius: var(--bk-radius-md);
}
.wpit-book-reschedule-banner-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bk-amber);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wpit-book-reschedule-banner-icon svg {
  width: 18px;
  height: 18px;
}
.wpit-book-reschedule-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bk-text-soft);
}
.wpit-book-reschedule-banner-text strong {
  color: var(--bk-text);
  font-weight: 700;
  font-size: 14px;
}

/* ----------------------------------------------------------------------------
   Step Indicator
---------------------------------------------------------------------------- */
.wpit-book-stepper {
  position: relative;
  margin-bottom: 32px;
  padding: 8px 4px 0;
}

.wpit-book-stepper-track {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: var(--bk-track);
  border-radius: 2px;
  z-index: 0;
  overflow: hidden;
}

.wpit-book-stepper-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--bk-amber), color-mix(in oklab, var(--bk-amber) 70%, white));
  border-radius: 2px;
  transition: width 480ms var(--bk-ease);
}

.wpit-book-stepper-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.wpit-book-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  cursor: default;
  user-select: none;
  text-align: center;
  position: relative;
}

.wpit-book-dot-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--bk-track);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bk-text-muted);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: background-color 280ms var(--bk-ease), border-color 280ms var(--bk-ease), color 280ms var(--bk-ease), transform 320ms var(--bk-ease-spring), box-shadow 280ms var(--bk-ease);
}

.wpit-book-dot-num {
  display: inline-block;
  transition: opacity 200ms var(--bk-ease);
}

.wpit-book-dot-check {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 220ms var(--bk-ease), transform 320ms var(--bk-ease-spring);
}

.wpit-book-dot.is-active .wpit-book-dot-circle {
  background: var(--bk-primary);
  border-color: var(--bk-primary);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(19, 68, 122, 0.28);
}

.wpit-book-dot.is-done .wpit-book-dot-circle {
  background: var(--bk-amber);
  border-color: var(--bk-amber);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.32);
}
.wpit-book-dot.is-done .wpit-book-dot-num { opacity: 0; }
.wpit-book-dot.is-done .wpit-book-dot-check { opacity: 1; transform: scale(1); }

.wpit-book-dot-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--bk-text-muted);
  white-space: nowrap;
  transition: color 240ms var(--bk-ease);
}

.wpit-book-dot.is-active .wpit-book-dot-label { color: var(--bk-primary); }
.wpit-book-dot.is-done .wpit-book-dot-label { color: var(--bk-text-soft); }

@media (max-width: 600px) {
  .wpit-book-stepper { margin-bottom: 26px; }
  .wpit-book-stepper-track { left: 12%; right: 12%; top: 22px; }
  .wpit-book-dot-circle { width: 36px; height: 36px; font-size: 13.5px; }
  .wpit-book-dot-check { width: 18px; height: 18px; }
  .wpit-book-dot-label { display: none; }
  .wpit-book-dot.is-active .wpit-book-dot-label {
    display: inline-block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 6px;
    font-size: 12px;
  }
}

/* ----------------------------------------------------------------------------
   Step Panels
---------------------------------------------------------------------------- */
.wpit-book-panels { position: relative; min-height: 320px; }

.wpit-book-panel { display: block; }
.wpit-book-panel[hidden] { display: none; }

.wpit-book-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bk-border);
}

.wpit-book-panel-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: var(--bk-radius-md);
  background: linear-gradient(135deg, color-mix(in oklab, var(--bk-primary) 8%, white), color-mix(in oklab, var(--bk-amber) 10%, white));
  color: var(--bk-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wpit-book-panel-icon svg { width: 26px; height: 26px; }

.wpit-book-panel-title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--bk-primary);
  line-height: 1.2;
  text-transform: none;
  font-family: inherit;
}

.wpit-book h3.wpit-book-panel-title,
.wpit-book h2,
.wpit-book h4 {
  text-transform: none;
  letter-spacing: normal;
}

.wpit-book-panel-sub {
  margin: 6px 0 0;
  font-size: 14.5px;
  color: var(--bk-text-soft);
  line-height: 1.55;
}

/* ----------------------------------------------------------------------------
   Step 1 - Plattform-Wahl + Dauer
---------------------------------------------------------------------------- */
.wpit-book-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  .wpit-book-platforms { grid-template-columns: 1fr; }
}

.wpit-book-platform {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.wpit-book-platform input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  -webkit-appearance: none;
  appearance: none;
}

.wpit-book-platform-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-md);
  background: #fff;
  transition: border-color 200ms var(--bk-ease), background-color 200ms var(--bk-ease), box-shadow 200ms var(--bk-ease);
  position: relative;
  text-align: center;
}

.wpit-book-platform-logo {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wpit-book-platform-logo svg { width: 100%; height: 100%; }

.wpit-book-platform-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-text);
  letter-spacing: 0.1px;
}
.wpit-book-platform-desc {
  font-size: 12.5px;
  color: var(--bk-text-muted);
  line-height: 1.45;
}

.wpit-book-platform:hover .wpit-book-platform-box {
  border-color: var(--bk-border-strong);
}

.wpit-book-platform input:checked + .wpit-book-platform-box {
  border-color: var(--bk-primary);
  background: color-mix(in oklab, var(--bk-primary) 8%, white);
  box-shadow: 0 0 0 2px var(--bk-primary), 0 8px 22px rgba(19, 68, 122, 0.18);
}
.wpit-book-platform input:checked + .wpit-book-platform-box .wpit-book-platform-name {
  color: var(--bk-primary);
}
.wpit-book-platform input:checked + .wpit-book-platform-box::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--bk-amber) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 16px no-repeat;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(212, 160, 23, 0.4);
}

.wpit-book-platform.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.wpit-book-platform.is-disabled input { pointer-events: none; }

.wpit-book-platform-note {
  margin: -8px 0 22px;
  padding: 8px 14px;
  background: color-mix(in oklab, var(--bk-amber) 8%, white);
  border-left: 3px solid var(--bk-amber);
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--bk-text-soft);
  display: none;
}
.wpit-book-platform-note.is-visible { display: block; }

/* Dauer-Pills */
.wpit-book-grouplabel {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bk-text-soft);
  letter-spacing: 0.1px;
  margin-bottom: 10px;
}

.wpit-book-durations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wpit-book-duration {
  position: relative;
  cursor: pointer;
}
.wpit-book-duration input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.wpit-book-duration-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-md);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--bk-text-soft);
  transition: border-color 180ms var(--bk-ease), background-color 180ms var(--bk-ease), color 180ms var(--bk-ease), box-shadow 180ms var(--bk-ease);
  text-align: center;
}
.wpit-book-duration:hover .wpit-book-duration-box { border-color: var(--bk-border-strong); }
.wpit-book-duration input:checked + .wpit-book-duration-box {
  border-color: var(--bk-primary);
  background: var(--bk-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(19, 68, 122, 0.22);
}

/* Disabled-State (z. B. wenn Zoom + 60 Min - Free-Account-Limit) */
.wpit-book-duration.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.wpit-book-duration.is-disabled .wpit-book-duration-box {
  background: var(--bk-surface-soft);
  color: var(--bk-text-muted);
  text-decoration: line-through;
}

/* ----------------------------------------------------------------------------
   Step 2 - Kalender + Slot-Liste
---------------------------------------------------------------------------- */
.wpit-book-cal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.wpit-book-cal {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.wpit-book-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

.wpit-book-cal-month {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-primary);
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
}

.wpit-book-cal-nav {
  background: none;
  border: 1px solid var(--bk-border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--bk-text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms var(--bk-ease), color 160ms var(--bk-ease), background-color 160ms var(--bk-ease);
}
.wpit-book-cal-nav svg { width: 14px; height: 14px; }
.wpit-book-cal-nav:hover {
  border-color: var(--bk-primary);
  color: var(--bk-primary);
  background: color-mix(in oklab, var(--bk-primary) 5%, white);
}
.wpit-book-cal-nav:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

.wpit-book-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.wpit-book-cal-weekday {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bk-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 0;
}

.wpit-book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.wpit-book-cal-day {
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bk-text);
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  transition: background-color 140ms var(--bk-ease), color 140ms var(--bk-ease), border-color 140ms var(--bk-ease);
  padding: 0;
}

.wpit-book-cal-day:hover:not(.is-disabled):not(.is-selected) {
  background: color-mix(in oklab, var(--bk-primary) 8%, white);
  color: var(--bk-primary);
}

.wpit-book-cal-day.is-other { color: var(--bk-text-muted); opacity: 0.45; }
.wpit-book-cal-day.is-disabled {
  color: #c7cdd6;
  cursor: not-allowed;
  pointer-events: none;
}
.wpit-book-cal-day.is-today {
  border-color: color-mix(in oklab, var(--bk-amber) 50%, white);
}
.wpit-book-cal-day.is-selected {
  background: var(--bk-primary);
  color: #fff;
  border-color: var(--bk-primary);
  box-shadow: 0 4px 12px rgba(19, 68, 122, 0.28);
  font-weight: 600;
}

/* Slot-Liste */
.wpit-book-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 400px;
}

.wpit-book-slots-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wpit-book-slots-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bk-primary);
  letter-spacing: 0.1px;
}

.wpit-book-slots-tz {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bk-text-muted);
  flex-wrap: wrap;
}

.wpit-book-slots-tz select {
  padding: 4px 24px 4px 8px;
  border: 1px solid var(--bk-border);
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-family: inherit;
  color: var(--bk-text);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 14px;
}

.wpit-book-slots-list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--bk-border-strong) transparent;
}
.wpit-book-slots-list::-webkit-scrollbar { width: 6px; }
.wpit-book-slots-list::-webkit-scrollbar-thumb {
  background: var(--bk-border-strong);
  border-radius: 3px;
}

.wpit-book-slot {
  padding: 14px 16px;
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-sm);
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bk-text);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: border-color 150ms var(--bk-ease), background-color 150ms var(--bk-ease), color 150ms var(--bk-ease), transform 150ms var(--bk-ease);
  font-variant-numeric: tabular-nums;
}
.wpit-book-slot:hover {
  border-color: var(--bk-primary);
  color: var(--bk-primary);
  background: color-mix(in oklab, var(--bk-primary) 4%, white);
}
.wpit-book-slot.is-selected {
  background: var(--bk-primary);
  border-color: var(--bk-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(19, 68, 122, 0.22);
}

.wpit-book-slots-empty {
  padding: 30px 16px;
  text-align: center;
  color: var(--bk-text-muted);
  font-size: 13.5px;
  border: 1px dashed var(--bk-border);
  border-radius: var(--bk-radius-sm);
  background: var(--bk-surface-soft);
  line-height: 1.55;
}

.wpit-book-slots-loading {
  padding: 30px 16px;
  text-align: center;
  color: var(--bk-text-muted);
  font-size: 13.5px;
}
.wpit-book-slots-loading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--bk-border);
  border-top-color: var(--bk-primary);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  animation: wpit-book-spin 0.8s linear infinite;
}
@keyframes wpit-book-spin { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
  .wpit-book-cal-layout { grid-template-columns: 1fr; }
  .wpit-book-slots-list { max-height: 320px; }
}

/* ----------------------------------------------------------------------------
   Step 3 - Eingabe-Felder
---------------------------------------------------------------------------- */
.wpit-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.wpit-book-field { display: flex; flex-direction: column; gap: 6px; }
.wpit-book-col-2 { grid-column: 1 / -1; }

.wpit-book-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bk-text-soft);
  letter-spacing: 0.1px;
}

.wpit-book-req {
  color: var(--bk-amber);
  margin-left: 2px;
  font-weight: 700;
}

.wpit-book-field input[type="text"],
.wpit-book-field input[type="email"],
.wpit-book-field input[type="tel"],
.wpit-book-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-sm);
  background: #fff;
  color: var(--bk-text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 180ms var(--bk-ease), background-color 180ms var(--bk-ease), box-shadow 180ms var(--bk-ease);
  -webkit-appearance: none;
  appearance: none;
}

.wpit-book-field textarea {
  resize: vertical;
  min-height: 88px;
  font-family: inherit;
}

.wpit-book-field input:hover,
.wpit-book-field textarea:hover { border-color: var(--bk-border-strong); }

.wpit-book-field input:focus,
.wpit-book-field textarea:focus {
  border-color: var(--bk-primary);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--bk-primary) 18%, transparent);
}

.wpit-book-field.is-invalid input,
.wpit-book-field.is-invalid textarea {
  border-color: var(--bk-amber);
  background: color-mix(in oklab, var(--bk-amber) 6%, white);
}
.wpit-book-field.is-invalid input:focus,
.wpit-book-field.is-invalid textarea:focus {
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--bk-amber) 22%, transparent);
}

.wpit-book-err {
  font-size: 12.5px;
  color: var(--bk-error);
  line-height: 1.4;
  display: none;
}
.wpit-book-field.is-invalid .wpit-book-err { display: block; }

/* ----------------------------------------------------------------------------
   BNI-Mitglied-Zeile (Step 3): eigene Reihe, links Logo + Frage,
   rechts Ja/Nein-Pills. Auf Mobile gestackt.
---------------------------------------------------------------------------- */
.wpit-book-bni {
  /* Override fuer .wpit-book-field { flex-direction: column }: hier wollen wir
     Logo+Frage links und Ja/Nein-Pills rechts nebeneinander. */
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--bk-surface-soft);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-md);
}

.wpit-book-bni-question {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.wpit-book-bni-logo {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.wpit-book-bni-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--bk-text);
  line-height: 1.35;
}

.wpit-book-bni-options {
  flex: 0 0 auto;
  min-width: 200px;
}

@media (max-width: 540px) {
  .wpit-book-bni {
    flex-direction: column !important;
    align-items: stretch;
  }
  .wpit-book-bni-options { width: 100%; min-width: 0; }
}

/* ----------------------------------------------------------------------------
   Kompaktes Ja/Nein-Pill-Paar (BNI-Frage)
   Optisch konsistent mit den Dauer-Pills in Step 1.
---------------------------------------------------------------------------- */
.wpit-book-yesno {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wpit-book-yesno-opt {
  position: relative;
  cursor: pointer;
}

.wpit-book-yesno-opt input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.wpit-book-yesno-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-sm);
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bk-text-soft);
  transition: border-color 180ms var(--bk-ease), background-color 180ms var(--bk-ease), color 180ms var(--bk-ease), box-shadow 180ms var(--bk-ease);
}

.wpit-book-yesno-opt:hover span { border-color: var(--bk-border-strong); }

.wpit-book-yesno-opt input:checked + span {
  border-color: var(--bk-primary);
  background: var(--bk-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(19, 68, 122, 0.22);
}

/* ----------------------------------------------------------------------------
   Step 4 - Zusammenfassung
---------------------------------------------------------------------------- */
.wpit-book-summary {
  background: var(--bk-surface-soft);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-md);
  padding: 20px 22px;
  margin: 12px 0 24px;
}

.wpit-book-summary-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) 1fr;
  row-gap: 8px;
  column-gap: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.wpit-book-summary-key { color: var(--bk-text-muted); font-weight: 500; }
.wpit-book-summary-val { color: var(--bk-text); word-break: break-word; }
.wpit-book-summary-val strong { color: var(--bk-primary); }

.wpit-book-summary-edit {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  font-size: 12.5px;
  color: var(--bk-text-soft);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}
.wpit-book-summary-edit:hover { color: var(--bk-primary); }

/* Consent + Server-Error */
.wpit-book-consent {
  background: color-mix(in oklab, var(--bk-amber) 5%, white);
  border: 1px solid color-mix(in oklab, var(--bk-amber) 25%, var(--bk-border));
  border-radius: var(--bk-radius-md);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.wpit-book-consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bk-text-soft);
}
.wpit-book-consent-label input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--bk-primary);
  cursor: pointer;
}
.wpit-book-consent-label a {
  color: var(--bk-primary);
  font-weight: 600;
}

.wpit-book-server-error {
  background: color-mix(in oklab, var(--bk-error) 8%, white);
  border: 1px solid color-mix(in oklab, var(--bk-error) 35%, white);
  color: var(--bk-error);
  padding: 12px 16px;
  border-radius: var(--bk-radius-sm);
  font-size: 13.5px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ----------------------------------------------------------------------------
   Navigation
---------------------------------------------------------------------------- */
.wpit-book-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bk-border);
}

.wpit-book-nav-meta {
  font-size: 13px;
  color: var(--bk-text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.wpit-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid var(--bk-border);
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bk-text-soft);
  cursor: pointer;
  transition: background-color 180ms var(--bk-ease), border-color 180ms var(--bk-ease), color 180ms var(--bk-ease), transform 180ms var(--bk-ease), box-shadow 180ms var(--bk-ease);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.wpit-book-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.wpit-book-btn:hover:not([disabled]) { border-color: var(--bk-border-strong); color: var(--bk-text); }
.wpit-book-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--bk-primary) 28%, transparent); }
.wpit-book-btn[disabled] { opacity: 0.4; cursor: not-allowed; }

.wpit-book-btn-primary {
  background: var(--bk-primary);
  border-color: var(--bk-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(19, 68, 122, 0.22);
}
.wpit-book-btn-primary:hover:not([disabled]) {
  background: var(--bk-primary-dark);
  border-color: var(--bk-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(19, 68, 122, 0.3);
}

.wpit-book-btn-spinner {
  display: none;
  animation: wpit-book-spin 900ms linear infinite;
}
.wpit-book-btn.is-busy { pointer-events: none; opacity: 0.85; }
.wpit-book-btn.is-busy .wpit-book-btn-spinner { display: inline-block; }
.wpit-book-btn.is-busy .wpit-book-btn-label::after { content: "..."; }

/* ----------------------------------------------------------------------------
   Honeypot
---------------------------------------------------------------------------- */
.wpit-book-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  left: -9999px;
}

/* ----------------------------------------------------------------------------
   Erfolgs-State
---------------------------------------------------------------------------- */
.wpit-book-success {
  padding: 24px 0;
  animation: wpit-book-fadein 380ms var(--bk-ease) both;
}
.wpit-book-success-card {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  box-shadow: var(--bk-shadow-card);
  padding: 48px clamp(24px, 4vw, 56px);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.wpit-book-success-check {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bk-amber) 16%, white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bk-amber);
}
.wpit-book-success-check svg { width: 80px; height: 80px; }
.wpit-book-success-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: wpit-book-success-ring 700ms var(--bk-ease) 80ms forwards;
}
.wpit-book-success-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: wpit-book-success-tick 480ms var(--bk-ease) 580ms forwards;
}
@keyframes wpit-book-success-ring { to { stroke-dashoffset: 0; } }
@keyframes wpit-book-success-tick { to { stroke-dashoffset: 0; } }

.wpit-book-success-title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  color: var(--bk-primary);
  letter-spacing: -0.3px;
  text-transform: none;
}
.wpit-book-success-text {
  margin: 0 0 20px;
  font-size: 15.5px;
  color: var(--bk-text-soft);
  line-height: 1.65;
}
.wpit-book-success-meta {
  margin: 8px 0 18px;
  font-size: 13.5px;
  color: var(--bk-text-muted);
  font-variant-numeric: tabular-nums;
}
.wpit-book-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.wpit-book-success-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--bk-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: background-color 180ms var(--bk-ease), transform 180ms var(--bk-ease);
}
.wpit-book-success-actions a:hover {
  background: var(--bk-primary-dark);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------------------
   Step Transitions
---------------------------------------------------------------------------- */
.wpit-book-panel.is-active {
  animation: wpit-book-fadein 320ms var(--bk-ease) both;
}
@keyframes wpit-book-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------------------
   Mobile Layout
---------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .wpit-book { padding: 24px 18px 22px; border-radius: var(--bk-radius-md); }
  .wpit-book-grid { grid-template-columns: 1fr; gap: 14px; }
  .wpit-book-col-2 { grid-column: 1; }
  .wpit-book-platforms { grid-template-columns: 1fr; }
  .wpit-book-summary-row { grid-template-columns: 1fr; row-gap: 4px; column-gap: 0; }
  .wpit-book-summary-key { margin-top: 6px; font-size: 12.5px; }
  .wpit-book-panel-title { font-size: 18px; }
  .wpit-book-panel-icon { width: 40px; height: 40px; }
  .wpit-book-panel-icon svg { width: 22px; height: 22px; }
  .wpit-book-nav { flex-wrap: wrap; }
  .wpit-book-nav-meta { order: 3; flex: 1 1 100%; text-align: center; }
  .wpit-book-btn { padding: 10px 18px; font-size: 14px; }
  .wpit-book-success-card { padding: 36px 22px; }
  .wpit-book-success-title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .wpit-book-panel.is-active,
  .wpit-book-success { animation: none; }
  .wpit-book-stepper-fill { transition: none; }
  .wpit-book-success-circle,
  .wpit-book-success-tick { animation: none; stroke-dashoffset: 0; }
}

/* ============================================================================
   Termin-Absage-Page (page_TerminAbsagen.php)
   Wiederverwendet Cover-Card-Stil vom Wizard, ergaenzt um Termin-Summary,
   roten Confirm-Button und Reschedule/Back-Aktionen.
   ============================================================================ */
.wpit-cancel-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(176, 0, 32, 0.18);
}
.wpit-cancel-icon--alert {
  background: linear-gradient(135deg, color-mix(in oklab, var(--bk-error) 16%, white), color-mix(in oklab, var(--bk-amber) 12%, white));
  color: var(--bk-error);
}
.wpit-cancel-icon--warn {
  background: linear-gradient(135deg, color-mix(in oklab, var(--bk-amber) 22%, white), color-mix(in oklab, var(--bk-amber) 6%, white));
  color: var(--bk-amber);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.22);
}
.wpit-cancel-icon svg { width: 56px; height: 56px; }

/* Termin-Daten-Block (analog Step-4-Summary, aber zentriert + kompakter) */
.wpit-cancel-summary {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-md);
  padding: 18px 22px;
  margin: 8px auto 22px;
  max-width: 520px;
  text-align: left;
}
.wpit-cancel-summary-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  row-gap: 10px;
  column-gap: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.wpit-cancel-summary-key {
  color: var(--bk-text-muted);
  font-weight: 500;
}
.wpit-cancel-summary-val {
  color: var(--bk-text);
  word-break: break-word;
}
.wpit-cancel-summary-val strong {
  color: var(--bk-primary);
  font-weight: 700;
}

/* Action-Button-Reihe unter der Card */
.wpit-cancel-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* Rote Confirm-Pill */
.wpit-cancel-btn-confirm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--bk-error);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(176, 0, 32, 0.28);
  transition: background-color 180ms var(--bk-ease), transform 180ms var(--bk-ease), box-shadow 180ms var(--bk-ease);
}
.wpit-cancel-btn-confirm:hover {
  background: color-mix(in oklab, var(--bk-error) 88%, black);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(176, 0, 32, 0.36);
}
.wpit-cancel-btn-confirm:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--bk-error) 35%, transparent), 0 8px 22px rgba(176, 0, 32, 0.28);
}
.wpit-cancel-btn-confirm[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.wpit-cancel-btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  animation: wpit-book-spin 900ms linear infinite;
}
.wpit-cancel-btn-confirm.is-busy .wpit-cancel-btn-spinner { display: inline-block; }
.wpit-cancel-btn-confirm.is-busy .wpit-cancel-btn-label::after { content: " …"; }

/* Reschedule-Link (ghost-style mit brand-blue Border) */
.wpit-cancel-btn-reschedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--bk-primary);
  background: #fff;
  color: var(--bk-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: background-color 180ms var(--bk-ease), color 180ms var(--bk-ease), transform 180ms var(--bk-ease);
}
.wpit-cancel-btn-reschedule:hover {
  background: color-mix(in oklab, var(--bk-primary) 6%, white);
  color: var(--bk-primary-dark);
  transform: translateY(-1px);
}

/* Back-Link (subtiler Outline-Grau, mit deutlich spuerbarem Hover-Lift
   damit der User merkt, dass der Button aktiv ist - analog zum Reschedule-Btn) */
.wpit-cancel-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--bk-border);
  background: #fff;
  color: var(--bk-text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: background-color 180ms var(--bk-ease), border-color 180ms var(--bk-ease), color 180ms var(--bk-ease), transform 180ms var(--bk-ease), box-shadow 180ms var(--bk-ease);
}
.wpit-cancel-btn-back:hover {
  background: var(--bk-surface-soft);
  border-color: var(--bk-border-strong);
  color: var(--bk-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.wpit-cancel-btn-back:focus-visible {
  outline: none;
  border-color: var(--bk-text-soft);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--bk-text-soft) 22%, transparent);
}

/* Erfolgs-Haekchen auf der Cancel-Seite (etwas groesser als im Modal) */
.wpit-cancel-success-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
}

@media (max-width: 540px) {
  .wpit-cancel-summary { padding: 14px 18px; }
  .wpit-cancel-summary-row { grid-template-columns: 1fr; row-gap: 6px; column-gap: 0; }
  .wpit-cancel-summary-key { margin-top: 6px; font-size: 12.5px; }
  .wpit-cancel-actions { flex-direction: column; width: 100%; }
  .wpit-cancel-actions > * { width: 100%; justify-content: center; }
}
