/* FAIMA Termin-Buchung — Corporate Gold */


/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --teal:      #2ec4b6;
  --teal-glow: rgba(46,196,182,.28);
  --teal-dim:  rgba(46,196,182,.10);
  --teal-mid:  rgba(46,196,182,.18);
  --teal-brd:  rgba(46,196,182,.22);

  --bg:    #07060a;
  --bg-2:  #0e0c11;
  --bg-3:  #161318;
  --bg-4:  #1e1b22;

  --brd:   rgba(255,255,255,.08);
  --brd-2: rgba(255,255,255,.05);

  --ink:   #ffffff;
  --ink-2: #e2e6f0;
  --ink-3: #b0b8cc;
  --ink-4: #707888;

  --ok:   #2ec4b6;
  --err:  #ff6868;
  --warn: #f0b840;

  --r:    13px;
  --r-l:  18px;
  --r-xl: 22px;
  --r-card: 20px;

  --ease:   cubic-bezier(.22,1,.36,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { -webkit-font-smoothing:antialiased; }

.faima-booking-root {
  --M: 'Montserrat', system-ui, sans-serif;
  --display: 'Outfit', var(--M), system-ui, sans-serif;
  font-family: var(--M), system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

/* Diagonal brand stripe background */
.faima-booking-root::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 36px,
    rgba(46,196,182,.014) 36px, rgba(46,196,182,.014) 38px
  );
}

/* Glow orbs */
.faima-booking-root::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 10% 5%,  rgba(46,196,182,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 95%, rgba(46,196,182,.06) 0%, transparent 55%);
}

/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
.page {
  position: relative; z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ══════════════════════════════════════
   TOPNAV — slim, full width
══════════════════════════════════════ */
.topnav {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(31,34,41,.95);
  border-bottom: 1px solid var(--brd-2);
  backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 100;
  flex-shrink: 0;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { width: 32px; height: 32px; }
.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .13em;
  color: var(--ink); line-height: 1;
}
.logo-sub {
  font-size: 7px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal); line-height: 1;
  margin-top: 1px;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
}
.nav-links a {
  color: var(--teal); text-decoration: none;
  padding: 6px 12px; border: 1px solid var(--teal-brd);
  border-radius: 100px; background: var(--teal-dim);
  transition: all .18s;
}
.nav-links a:hover { background: var(--teal-mid); }
.nav-sep { color: var(--bg-4); }
.nav-tel { color: var(--ink-3) !important; background: transparent !important; border-color: var(--brd) !important; }

/* ══════════════════════════════════════
   MAIN CONTAINER — centered box
══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Page title row */
.page-title-row {
  margin-bottom: 28px;
  background: var(--bg-2);
  border: 1px solid var(--brd);
  border-radius: var(--r-l);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 90px;
}
.ptr-text {
  padding: 20px 24px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ptr-img {
  flex-shrink: 0;
  width: 38%;
  max-width: 300px;
  min-width: 120px;
  overflow: hidden;
  background: var(--bg-3);
}
.ptr-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.88) contrast(1.05);
}
.page-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.page-eyebrow::before {
  content: ''; width: 18px; height: 2px;
  background: var(--teal); border-radius: 1px;
}
.page-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: .02em; line-height: .9;
  color: #ffffff;
}
.page-h span { color: var(--teal); }

/* ══════════════════════════════════════
   MAIN CARD — the box
══════════════════════════════════════ */
.main-card {
  background: var(--bg-2);
  border: 1px solid var(--brd);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,.15),
    0 12px 40px rgba(0,0,0,.25),
    0 0 0 1px rgba(46,196,182,.05);
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* ══════════════════════════════════════
   LEFT SIDEBAR — info + photo
══════════════════════════════════════ */
.sidebar {
  background: linear-gradient(175deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-right: 1px solid var(--brd-2);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

.sidebar::before {
  content: '';
  position: absolute; top: -50px; left: -50px;
  width: 250px; height: 250px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(46,196,182,.10) 0%, transparent 65%);
}

.sidebar-content {
  padding: 28px 24px 0;
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
}

.sb-kicker {
  font-size: 9px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.sb-kicker::before {
  content: ''; width: 14px; height: 2px;
  background: var(--teal); border-radius: 1px;
}

.sb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: .02em; line-height: .9;
  color: var(--ink); margin-bottom: 12px;
}
.sb-title span { color: var(--teal); display: block; }

.sb-desc {
  font-size: 12px; color: var(--ink-3); line-height: 1.65;
  margin-bottom: 18px; font-weight: 400;
}

/* Service tags */
.tags {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px;
}
.tag {
  font-size: 10px; font-weight: 600; color: var(--ink-3);
  background: var(--bg-4); border: 1px solid var(--brd);
  border-radius: 100px; padding: 3px 9px;
  display: flex; align-items: center; gap: 5px;
  transition: border-color .15s, color .15s;
}
.tag:hover { border-color: var(--teal); color: var(--teal); }
.tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* Contact card */
.contact-box {
  background: var(--bg-4);
  border: 1px solid var(--brd);
  border-left: 3px solid var(--teal);
  border-radius: var(--r);
  padding: 13px 14px; margin-bottom: 20px;
}
.cb-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: .08em; color: var(--ink);
  margin-bottom: 3px;
}
.cb-role {
  font-size: 10px; font-weight: 500; color: var(--ink-3);
  line-height: 1.5; font-style: italic; margin-bottom: 10px;
}
.cb-rows { display: flex; flex-direction: column; gap: 5px; }
.cb-row {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; color: var(--ink-3); font-weight: 500;
}
.cb-row a { color: var(--ink-2); text-decoration: none; transition: color .15s; }
.cb-row a:hover { color: var(--teal); }
.cb-icon { width: 12px; height: 12px; flex-shrink: 0; color: var(--teal); }

/* sidebar-photo CSS removed */

/* ══════════════════════════════════════
   RIGHT WIDGET — booking form
══════════════════════════════════════ */
.widget {
  display: flex; flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* Teal accent line */
.w-line {
  height: 3px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--teal) 0%, #e8d49a 50%, var(--teal) 100%);
}

/* Widget header */
.w-head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--brd-2);
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  flex-shrink: 0; position: relative; overflow: hidden;
}
.w-head::after {
  content: ''; position: absolute; top: -28px; right: -28px;
  width: 120px; height: 120px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(46,196,182,.09) 0%, transparent 65%);
}
.wh { position: relative; z-index: 1; }
.wh-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

.live {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-dim); border: 1px solid var(--teal-brd);
  border-radius: 100px; padding: 3px 11px 3px 8px; margin-bottom: 10px;
}
.live-dot { position: relative; width: 7px; height: 7px; flex-shrink: 0; }
.live-dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--teal); animation: lc 2s ease infinite;
}
.live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1.5px solid var(--teal); opacity: 0; animation: lr 2s ease infinite;
}
@keyframes lc { 0%,100%{opacity:1} 50%{opacity:.35} }
@keyframes lr  { 0%{opacity:.8;transform:scale(.4)} 100%{opacity:0;transform:scale(2)} }
.live-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }

.wh-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: .03em; color: var(--ink);
  line-height: .9; margin-bottom: 5px;
}
.wh-title span { color: var(--teal); display: block; }
.wh-sub { font-size: 12px; color: var(--ink-2); font-weight: 500; line-height: 1.45; }

.dur-chip {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--r);
  background: var(--teal-dim); border: 1px solid var(--teal-brd);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.dur-n { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--teal); line-height: 1; }
.dur-u { font-size: 7.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(46,196,182,.5); }

/* Progress bar */
.prog {
  display: flex; align-items: center;
  padding: 0 28px; height: 44px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--brd-2);
  flex-shrink: 0;
}
.ps {
  display: flex; align-items: center; gap: 6px;
  flex: 1; position: relative;
}
.ps:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 1px; background: var(--brd);
  transition: background .4s;
}
.ps.done:not(:last-child)::after { background: var(--teal); }
.pn {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
  background: var(--bg); color: var(--ink-4);
  border: 1.5px solid var(--brd);
  transition: all .35s var(--spring); flex-shrink: 0;
}
.ps.active .pn {
  background: var(--teal); color: var(--bg); border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-dim), 0 0 12px var(--teal-glow);
  transform: scale(1.1);
}
.ps.done .pn {
  background: var(--teal-dim); color: var(--teal);
  border-color: var(--teal-brd); font-size: 11px;
}
.pl {
  font-size: 9.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-4); white-space: nowrap; transition: color .3s; text-transform: uppercase;
}
.ps.active .pl { color: var(--teal); }

/* ── STEP PANELS ── */
.w-body { flex: 1; overflow-y: auto; }
.step { padding: 22px 28px 26px; display: none; }
.step.active { display: block; animation: sIn .28s var(--ease) both; }
@keyframes sIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.sk {
  font-size: 9px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 4px; display: flex; align-items: center; gap: 7px;
}
.sk::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(46,196,182,.3), transparent); }
.st { font-family: 'Bebas Neue', sans-serif; font-size: clamp(20px,2.5vw,26px); letter-spacing: .04em; color: var(--ink); margin-bottom: 3px; line-height: 1; }
.ss { font-size: 12.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 16px; }

/* ── CALENDAR ── */
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.cal-mo { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: .05em; color: var(--ink); }
.cal-btns { display: flex; gap: 3px; }
.cal-btn {
  width: 28px; height: 28px; border-radius: 7px;
  border: 1px solid var(--brd); background: transparent;
  cursor: pointer; font-size: 14px; color: var(--ink-3);
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.cal-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

.cal-g { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-dow {
  text-align: center; font-size: 9px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-4); padding-bottom: 6px;
}
.cal-d {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; border-radius: 8px;
  cursor: pointer; border: 1.5px solid transparent; color: var(--ink-2);
  transition: all .18s var(--spring); user-select: none; position: relative;
}
.cal-d:hover:not(.dis):not(.past) {
  background: var(--teal-dim); border-color: var(--teal-brd); color: var(--teal); transform: scale(1.09);
}
.cal-d.today:not(.sel) {
  color: var(--teal); font-weight: 800; background: var(--teal-dim); border-color: rgba(46,196,182,.2);
}
.cal-d.today:not(.sel)::after {
  content: ''; position: absolute; bottom: 3px; width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}
.cal-d.sel {
  background: var(--teal); color: var(--bg); border-color: var(--teal); font-weight: 800;
  transform: scale(1.12); box-shadow: 0 4px 14px var(--teal-glow), 0 0 0 3px var(--teal-dim);
}
.cal-d.dis, .cal-d.past { color: var(--ink-4); cursor: not-allowed; opacity: .3; }
.cal-d.empty { cursor: default; }

.cal-foot {
  display: flex; align-items: center; gap: 5px;
  margin-top: 10px; padding-top: 9px; border-top: 1px solid var(--brd-2);
  font-size: 10.5px; color: var(--ink-3); font-weight: 500;
}
.cal-foot::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ── SLOTS ── */
.sl-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sl-date { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .06em; color: var(--teal); }
.sl-free { font-size: 10.5px; font-weight: 700; color: var(--ok); display: flex; align-items: center; gap: 4px; }
.sl-free::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ok); }

.sl-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }

.slot {
  padding: 11px 4px 9px; text-align: center;
  border: 1px solid var(--brd); border-radius: var(--r);
  cursor: pointer; background: rgba(255,255,255,.03);
  transition: all .18s var(--spring); position: relative; overflow: hidden;
}
.slot::before {
  content: ''; position: absolute; inset: 0;
  background: var(--teal-dim); opacity: 0; transition: opacity .18s; border-radius: inherit;
}
.slot:hover:not(.bkd)::before { opacity: 1; }
.slot:hover:not(.bkd) { border-color: var(--teal-brd); transform: translateY(-2px); box-shadow: 0 4px 12px var(--teal-dim); }
.slot:hover:not(.bkd) .sl-t { color: var(--teal); }
.sl-t { font-size: 14px; font-weight: 800; display: block; color: var(--ink); transition: color .15s; line-height: 1; margin-bottom: 2px; position: relative; }
.sl-e { font-size: 9px; color: var(--ink-4); display: block; position: relative; font-weight: 500; }
.slot.aktiv {
  background: var(--teal); border-color: var(--teal); transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--teal-glow), 0 0 0 3px var(--teal-dim);
}
.slot.aktiv::before { opacity: 0; }
.slot.aktiv .sl-t { color: var(--bg); }
.slot.aktiv .sl-e { color: rgba(20,24,30,.5); }
.slot.aktiv::after { content: '✓'; position: absolute; top: 4px; right: 5px; font-size: 9px; font-weight: 900; color: var(--bg); opacity: .7; }
.slot.bkd { opacity: .2; cursor: not-allowed; background: transparent; }
.slot.bkd .sl-t { text-decoration: line-through; color: var(--ink-4); font-weight: 400; }

/* ── RECAP ── */
.recap {
  display: flex;
  background: var(--teal-dim); border: 1px solid var(--teal-brd);
  border-radius: var(--r); overflow: hidden; margin-bottom: 16px; position: relative;
}
.recap::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--teal); }
.rb { flex: 1; padding: 10px 12px 10px 14px; border-right: 1px solid rgba(46,196,182,.12); }
.rb:last-child { border-right: none; }
.rl { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(46,196,182,.55); margin-bottom: 2px; }
.rv { font-size: 13px; font-weight: 800; color: var(--teal); }

/* ── FORM ── */
.field { margin-bottom: 11px; }
.fl {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 5px;
}
.fopt { font-weight: 400; color: var(--ink-4); font-size: 10.5px; }
.fi {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--brd); border-radius: var(--r);
  font-family: var(--M), sans-serif;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink); background: rgba(255,255,255,.05);
  outline: none; resize: vertical; -webkit-appearance: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.fi::placeholder { color: var(--ink-4); font-weight: 400; }
.fi:focus { border-color: var(--teal); background: rgba(46,196,182,.05); box-shadow: 0 0 0 3px var(--teal-dim); }
.fi.err { border-color: var(--err); box-shadow: 0 0 0 3px rgba(255,104,104,.11); }
.ferr { font-size: 11px; color: var(--err); margin-top: 4px; display: none; align-items: center; gap: 4px; font-weight: 600; }
.ferr.show { display: flex; }
.errbox { display: none; align-items: center; gap: 8px; background: rgba(255,104,104,.10); border: 1px solid rgba(255,104,104,.2); border-radius: 8px; padding: 10px 13px; font-size: 12.5px; color: #ffb3b3; font-weight: 600; margin-bottom: 13px; }
.errbox.show { display: flex; }
.priv { font-size: 10.5px; color: var(--ink-4); margin-top: 10px; text-align: center; line-height: 1.6; }
.priv a { color: var(--teal); text-decoration: none; opacity: .8; }

/* ── BUTTONS ── */
.btn-s {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px;
  background: var(--teal); color: var(--bg);
  border: none; border-radius: var(--r);
  font-family: var(--M), sans-serif;
  font-size: 14px; font-weight: 800; letter-spacing: .02em;
  cursor: pointer; position: relative; overflow: hidden;
  transition: all .22s var(--spring);
  box-shadow: 0 4px 18px var(--teal-glow);
}
.btn-s::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 55%); opacity: 0; transition: opacity .2s; }
.btn-s:hover:not(:disabled) { background: #5eead4; transform: translateY(-2px); box-shadow: 0 8px 26px var(--teal-glow), 0 0 0 2px var(--teal-mid); }
.btn-s:hover:not(:disabled)::before { opacity: 1; }
.btn-s:active { transform: translateY(0); }
.btn-s:disabled { opacity: .35; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-s.ld .lbl, .btn-s.ld .arr { opacity: 0; }
.btn-s.ld::after { content: ''; position: absolute; width: 17px; height: 17px; border: 2.5px solid rgba(0,0,0,.2); border-top-color: var(--bg); border-radius: 50%; animation: spin .65s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.btn-back {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; font-family: var(--M), sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3); cursor: pointer; padding: 0; margin-bottom: 13px; transition: color .15s;
}
.btn-back:hover { color: var(--teal); }

/* ── STEP 4 CONFIRM ── */
.confirm { text-align: center; }

.conf-banner {
  width: calc(100% + 56px); margin: -22px -28px 22px;
  position: relative; overflow: hidden;
  background: var(--bg-3);
}
.conf-banner img {
  width: 100%; display: block;
  object-fit: cover;
  object-position: center center;
  max-height: 160px;
  filter: brightness(.75) contrast(1.05);
}
.conf-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--bg-2)); pointer-events: none;
}

.conf-orb {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--teal); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px; font-size: 24px; font-weight: 900;
  animation: orbIn .55s var(--spring) both;
  box-shadow: 0 0 0 8px var(--teal-dim), 0 0 0 16px rgba(46,196,182,.04), 0 8px 28px var(--teal-glow);
}
@keyframes orbIn { from{transform:scale(0) rotate(-18deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }

.conf-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px,3.5vw,34px); letter-spacing: .04em; color: var(--ink); margin-bottom: 7px; line-height: .92; }
.conf-title span { color: var(--teal); display: block; }
.conf-sub { font-size: 13px; color: var(--ink-2); line-height: 1.7; margin-bottom: 18px; max-width: 300px; margin-left: auto; margin-right: auto; }

.conf-ref {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-dim); border: 1px solid var(--teal-brd);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 16px;
  cursor: pointer; transition: all .2s var(--spring);
}
.conf-ref:hover { border-color: var(--teal); transform: scale(1.04); box-shadow: 0 0 14px var(--teal-dim); }
.ref-tag { font-size: 8.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(46,196,182,.5); }
.ref-num { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .08em; color: var(--teal); }

.conf-tbl { text-align: left; border: 1px solid var(--brd); border-radius: var(--r); overflow: hidden; margin-bottom: 16px; background: rgba(255,255,255,.03); }
.cr { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; font-size: 12.5px; border-bottom: 1px solid var(--brd-2); transition: background .15s; }
.cr:last-child { border-bottom: none; }
.cr:hover { background: rgba(255,255,255,.025); }
.ck { color: var(--ink-3); font-size: 11.5px; font-weight: 500; }
.cv { font-weight: 700; color: var(--ink); }

.status-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; color: var(--warn); background: rgba(240,184,64,.11); border: 1px solid rgba(240,184,64,.2); padding: 3px 9px; border-radius: 100px; }
.sdot { width: 5px; height: 5px; border-radius: 50%; background: var(--warn); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.conf-notes { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cnote { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--ink-3); font-weight: 500; }
.cnic { width: 14px; height: 14px; border-radius: 4px; background: rgba(46,196,182,.12); display: flex; align-items: center; justify-content: center; font-size: 7.5px; color: var(--ok); flex-shrink: 0; }

.btn-again { width: 100%; padding: 11px; background: transparent; border: 1px solid var(--brd); border-radius: var(--r); font-family: var(--M), sans-serif; font-size: 13px; font-weight: 700; color: var(--ink-3); cursor: pointer; transition: all .18s; }
.btn-again:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

/* Widget footer */
.w-foot {
  padding: 10px 28px;
  border-top: 1px solid var(--brd-2);
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px; flex-shrink: 0;
}
.wfi { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--ink-4); font-weight: 600; }

/* ══════════════════════════════════════
   BOTTOM TRUST BAR
══════════════════════════════════════ */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  margin-top: 24px; padding: 18px 24px;
  background: var(--bg-2);
  border: 1px solid var(--brd);
  border-radius: var(--r-l);
  max-width: 1100px; width: 100%;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--ink-3);
}
.trust-icon {
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--teal-dim); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .main-card { grid-template-columns: 1fr; }
  .sidebar { border-right: none; border-bottom: 1px solid var(--brd-2); }
  .sidebar-content { padding: 22px 22px 0; }
  .sidebar-photo { min-height: 220px; }
  .sidebar-photo img { position: relative; max-height: 220px; width: 100%; }
  .sb-title { font-size: 28px; }
  .container { padding: 28px 20px 48px; }
}

/* Mobile */
@media (max-width: 600px) {
  .topnav { padding: 11px 16px; }
  .nav-links { display: none; }

  .container { padding: 16px 12px 36px; }
  .page-h { font-size: 26px; }
  .page-title-row { margin-bottom: 14px; border-radius: var(--r); flex-direction: column; }
  .page-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .ptr-text { padding: 16px 16px 12px; }
  .ptr-img { width: 100%; max-width: 100%; min-width: 0; height: auto; }
  .ptr-img img { height: auto; object-fit: contain; object-position: center center; }

  .main-card { border-radius: var(--r-l); }

  .sidebar-content { padding: 18px 16px 0; }
  .sb-title { font-size: 26px; }
  .tags { gap: 4px; }
  .tag { font-size: 9.5px; padding: 3px 8px; }
  .contact-box { padding: 10px 12px; margin-bottom: 14px; }
  .cb-role { font-size: 9.5px; }

  .step, .w-head, .w-foot { padding-left: 16px; padding-right: 16px; }
  .prog { padding-left: 16px; padding-right: 16px; }
  .conf-banner { width: calc(100% + 32px); margin: -22px -16px 18px; }

  .sl-g { grid-template-columns: repeat(3,1fr); }
  .recap { flex-direction: column; }
  .rb { border-right: none; border-bottom: 1px solid rgba(46,196,182,.12); }
  .rb:last-child { border-bottom: none; }
  .pl { display: none; }

  .trust-bar { gap: 16px; padding: 14px 16px; }
  .trust-item { font-size: 11px; }
}

/* ── FAIMA: eingebettet auf faima.de (ohne LOMADESIGN-Topnav, ohne Teamfoto) ── */
.booking-no-topnav .topnav { display: none !important; }
.booking-title-full .page-title-row {
  display: block;
  min-height: 0;
}
.booking-title-full .ptr-img { display: none !important; }
.booking-title-full .ptr-text {
  width: 100%;
  max-width: none;
  padding: clamp(18px, 3vw, 28px) clamp(20px, 3vw, 32px);
}
.booking-title-full .page-h {
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
}
.conf-banner--gradient {
  min-height: 112px;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 74, 0.22) 0%,
    rgba(14, 12, 17, 0.96) 48%,
    #07060a 100%
  ) !important;
}
.conf-banner--gradient img { display: none !important; }
