/* Xceed Booking - Buchungsstrecke
   Design: Xceed Noir Gold */

.xcb {
	--xcb-bg: #000000;
	--xcb-surface: #0D0D0D;
	--xcb-ink: #FFFFFF;
	--xcb-muted: #A8A49A;
	--xcb-faint: #6E6A62;
	--xcb-gold: #B28C08;
	--xcb-gold-soft: #D4AE2A;
	--xcb-line: #26241E;
	--xcb-line-strong: #3A362C;
	--xcb-cream: #EFEDE4;
	--xcb-error: #E0644F;
	--xcb-r: 2px;
	--xcb-r-md: 4px;
	--xcb-serif: Georgia, 'Times New Roman', serif;
	--xcb-sans: 'Average Sans', Helvetica, Arial, sans-serif;

	background: var(--xcb-bg);
	color: var(--xcb-ink);
	font-family: var(--xcb-sans);
	font-size: 16px;
	line-height: 1.6;
	padding: 0 0 64px;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

.xcb *, .xcb *::before, .xcb *::after { box-sizing: border-box; }
.xcb [hidden] { display: none !important; }
.xcb h1, .xcb h2, .xcb h3, .xcb h4 { font-family: var(--xcb-serif); font-weight: 500; color: var(--xcb-ink); margin: 0; }
.xcb p { margin: 0; }
.xcb button { font-family: inherit; }

.xcb-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0 20px; border-bottom: 1px solid var(--xcb-line); flex-wrap: wrap; }
.xcb-brandline { font-family: var(--xcb-serif); font-size: 15px; letter-spacing: .22em; text-transform: uppercase; color: var(--xcb-muted); }
.xcb-brandline span { color: var(--xcb-gold); }
.xcb-langswitch { display: flex; border: 1px solid var(--xcb-line); border-radius: var(--xcb-r); overflow: hidden; }
.xcb-langswitch button { background: transparent; border: 0; color: var(--xcb-muted); cursor: pointer; font-size: 13px; letter-spacing: .04em; padding: 8px 15px; transition: color .18s, background .18s; }
.xcb-langswitch button + button { border-inline-start: 1px solid var(--xcb-line); }
.xcb-langswitch button:hover { color: var(--xcb-ink); }
.xcb-langswitch button[aria-pressed="true"] { background: var(--xcb-gold); color: #000; }

.xcb-progress { display: flex; padding: 26px 0 0; flex-wrap: wrap; }
.xcb-pstep { display: flex; align-items: center; gap: 9px; padding: 0 20px 0 0; font-size: 13px; color: var(--xcb-faint); letter-spacing: .02em; white-space: nowrap; background: none; border: 0; cursor: default; }
.xcb-pstep.is-done { color: var(--xcb-muted); cursor: pointer; }
.xcb-pstep.is-active { color: var(--xcb-ink); }
.xcb-pnum { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border: 1px solid var(--xcb-line-strong); border-radius: 50%; font-size: 12px; color: inherit; transition: all .2s; }
.xcb-pstep.is-active .xcb-pnum { border-color: var(--xcb-gold); color: var(--xcb-gold); }
.xcb-pstep.is-done .xcb-pnum { border-color: var(--xcb-gold); background: var(--xcb-gold); color: #000; }

.xcb-layout { display: grid; grid-template-columns: minmax(0, 1fr) 344px; gap: 56px; padding-top: 34px; align-items: start; }
@media (max-width: 1020px) { .xcb-layout { grid-template-columns: 1fr; gap: 0; } }

.xcb-main { min-width: 0; }
.xcb-step-head { margin-bottom: 30px; }
.xcb-step-head h2 { font-size: 34px; line-height: 1.1; letter-spacing: -.01em; }
.xcb-step-head p { color: var(--xcb-muted); font-size: 15px; margin-top: 9px; max-width: 58ch; }
@media (max-width: 640px) { .xcb-step-head h2 { font-size: 26px; } }

.xcb-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 24px; }
.xcb-grid .xcb-full { grid-column: 1 / -1; }
@media (max-width: 700px) { .xcb-grid { grid-template-columns: 1fr; } }

.xcb-f { position: relative; display: flex; flex-direction: column; }
.xcb-f label, .xcb-lab { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--xcb-muted); margin-bottom: 8px; }
.xcb-f input[type="text"], .xcb-f input[type="email"], .xcb-f input[type="tel"],
.xcb-f input[type="number"], .xcb-f input[type="time"], .xcb-f select, .xcb-f textarea, .xcb-inp {
	width: 100%; background: transparent; color: var(--xcb-ink);
	border: 0; border-bottom: 1px solid var(--xcb-line-strong); border-radius: 0;
	font-family: var(--xcb-sans); font-size: 16px; line-height: 1.5;
	padding: 9px 0 10px; transition: border-color .18s;
	appearance: none; -webkit-appearance: none;
}
.xcb-f textarea { border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); padding: 12px 14px; resize: vertical; min-height: 96px; }
.xcb-f select { background-image: linear-gradient(45deg, transparent 50%, #A8A49A 50%), linear-gradient(135deg, #A8A49A 50%, transparent 50%); background-position: calc(100% - 12px) 20px, calc(100% - 7px) 20px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-inline-end: 26px; }
.xcb-rtl .xcb-f select { background-position: 12px 20px, 17px 20px; }
.xcb-f option { background: #101010; color: #fff; }
.xcb-f input:focus, .xcb-f select:focus, .xcb-f textarea:focus { outline: none; border-color: var(--xcb-gold); }
.xcb-f input::placeholder, .xcb-f textarea::placeholder { color: var(--xcb-faint); }
.xcb-hint { font-size: 12px; color: var(--xcb-faint); margin-top: 7px; line-height: 1.5; }
.xcb-f.has-error input, .xcb-f.has-error select, .xcb-f.has-error textarea { border-color: var(--xcb-error); }
.xcb-err { font-size: 12px; color: var(--xcb-error); margin-top: 7px; }

.xcb-ac { position: relative; }
.xcb-ac-list { position: absolute; inset-inline: 0; top: calc(100% + 4px); z-index: 40; background: #101010; border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); max-height: 292px; overflow-y: auto; box-shadow: 0 18px 40px rgba(20, 16, 4, .55); }
.xcb-ac-item { display: block; width: 100%; text-align: inherit; background: transparent; border: 0; padding: 12px 15px; cursor: pointer; color: var(--xcb-ink); font-size: 15px; line-height: 1.35; border-bottom: 1px solid var(--xcb-line); font-family: var(--xcb-sans); }
.xcb-ac-item:last-child { border-bottom: 0; }
.xcb-ac-item:hover, .xcb-ac-item.is-cursor { background: rgba(178, 140, 8, .12); }
.xcb-ac-item small { display: block; color: var(--xcb-muted); font-size: 12.5px; margin-top: 2px; }
.xcb-ac-note { padding: 12px 15px; color: var(--xcb-faint); font-size: 13px; }

.xcb-seg { display: inline-flex; border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); overflow: hidden; }
.xcb-seg button { background: transparent; border: 0; color: var(--xcb-muted); cursor: pointer; padding: 11px 26px; font-size: 14px; letter-spacing: .03em; transition: all .18s; }
.xcb-seg button + button { border-inline-start: 1px solid var(--xcb-line-strong); }
.xcb-seg button[aria-pressed="true"] { background: var(--xcb-gold); color: #000; }

.xcb-step-num { display: inline-flex; align-items: center; border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); }
.xcb-step-num button { width: 42px; height: 42px; background: transparent; border: 0; color: var(--xcb-muted); font-size: 19px; cursor: pointer; line-height: 1; transition: color .18s; }
.xcb-step-num button:hover:not(:disabled) { color: var(--xcb-gold); }
.xcb-step-num button:disabled { opacity: .3; cursor: default; }
.xcb-step-num span { min-width: 46px; text-align: center; font-size: 16px; }

.xcb-cal { border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); background: var(--xcb-surface); padding: 16px; max-width: 352px; }
.xcb-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.xcb-cal-title { font-family: var(--xcb-serif); font-size: 17px; }
.xcb-cal-nav { background: transparent; border: 1px solid var(--xcb-line-strong); color: var(--xcb-muted); width: 30px; height: 30px; border-radius: var(--xcb-r); cursor: pointer; line-height: 1; transition: all .18s; }
.xcb-cal-nav:hover:not(:disabled) { border-color: var(--xcb-gold); color: var(--xcb-gold); }
.xcb-cal-nav:disabled { opacity: .25; cursor: default; }
.xcb-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.xcb-cal-dow { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--xcb-faint); text-align: center; padding: 6px 0; }
.xcb-cal-day { aspect-ratio: 1; background: transparent; border: 1px solid transparent; border-radius: var(--xcb-r); color: var(--xcb-ink); font-size: 14px; cursor: pointer; transition: all .16s; font-family: var(--xcb-sans); }
.xcb-cal-day:hover:not(:disabled) { border-color: var(--xcb-gold); }
.xcb-cal-day:disabled { color: var(--xcb-faint); opacity: .38; cursor: default; }
.xcb-cal-day.is-selected { background: var(--xcb-gold); color: #000; border-color: var(--xcb-gold); }
.xcb-cal-day.is-today:not(.is-selected) { border-color: var(--xcb-line-strong); }
.xcb-cal-empty { aspect-ratio: 1; }

.xcb-timegrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 6px; margin-top: 14px; max-height: 258px; overflow-y: auto; padding-inline-end: 4px; }
.xcb-time { background: transparent; border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); color: var(--xcb-ink); padding: 9px 4px; font-size: 14px; cursor: pointer; transition: all .16s; font-family: var(--xcb-sans); }
.xcb-time:hover:not(:disabled) { border-color: var(--xcb-gold); }
.xcb-time:disabled { opacity: .28; cursor: default; }
.xcb-time.is-selected { background: var(--xcb-gold); border-color: var(--xcb-gold); color: #000; }

.xcb-datetime { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 760px) { .xcb-datetime { grid-template-columns: 1fr; } .xcb-cal { max-width: none; } }

.xcb-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px) { .xcb-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .xcb-tiles { grid-template-columns: 1fr; } }

.xcb-tile { position: relative; display: block; width: 100%; text-align: inherit; padding: 0; cursor: pointer; background: var(--xcb-surface); border: 1px solid var(--xcb-line); border-radius: var(--xcb-r-md); overflow: hidden; transition: border-color .2s, transform .2s; }
.xcb-tile:hover { border-color: var(--xcb-line-strong); transform: translateY(-2px); }
.xcb-tile.is-selected { border-color: var(--xcb-gold); }
.xcb-tile-media { aspect-ratio: 4 / 5; overflow: hidden; background: #121110; }
.xcb-tile-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.xcb-tile:hover .xcb-tile-media img { transform: scale(1.035); }
.xcb-tile-body { padding: 16px 17px 18px; }
.xcb-tile-body h3 { font-size: 19px; line-height: 1.15; }
.xcb-tile-body p { color: var(--xcb-muted); font-size: 13.5px; line-height: 1.5; margin-top: 6px; }
.xcb-tile-check { position: absolute; inset-block-start: 12px; inset-inline-end: 12px; width: 26px; height: 26px; border-radius: 50%; background: var(--xcb-gold); color: #000; display: grid; place-items: center; font-size: 14px; opacity: 0; transform: scale(.7); transition: all .2s; }
.xcb-tile.is-selected .xcb-tile-check { opacity: 1; transform: scale(1); }

.xcb-cars { display: grid; gap: 18px; }
.xcb-car { display: grid; grid-template-columns: 280px minmax(0, 1fr) auto; border: 1px solid var(--xcb-line); border-radius: var(--xcb-r-md); background: var(--xcb-surface); overflow: hidden; transition: border-color .2s; }
.xcb-car.is-selected { border-color: var(--xcb-gold); }
.xcb-car-media { background: #111; overflow: hidden; }
.xcb-car-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 178px; }
.xcb-car-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.xcb-car-body h3 { font-size: 22px; line-height: 1.15; }
.xcb-car-model { color: var(--xcb-gold); font-size: 13px; letter-spacing: .05em; }
.xcb-car-tag { color: var(--xcb-muted); font-size: 14px; line-height: 1.5; }
.xcb-car-meta { display: flex; gap: 20px; color: var(--xcb-muted); font-size: 13px; margin-top: 4px; flex-wrap: wrap; }
.xcb-car-meta b { color: var(--xcb-ink); font-weight: 400; }
.xcb-car-side { padding: 22px 24px; border-inline-start: 1px solid var(--xcb-line); display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 12px; min-width: 216px; }
.xcb-car-price { font-family: var(--xcb-serif); font-size: 28px; color: var(--xcb-ink); line-height: 1; }
.xcb-car-pricenote { font-size: 12px; color: var(--xcb-faint); }
.xcb-car-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; width: 100%; }
@media (max-width: 900px) {
	.xcb-car { grid-template-columns: 1fr; }
	.xcb-car-media img { min-height: 210px; max-height: 260px; }
	.xcb-car-side { border-inline-start: 0; border-top: 1px solid var(--xcb-line); align-items: stretch; }
	.xcb-car-links { align-items: stretch; }
}

.xcb-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--xcb-gold); color: #000; border: 1px solid var(--xcb-gold); border-radius: var(--xcb-r); padding: 14px 30px; font-size: 15px; letter-spacing: .02em; cursor: pointer; transition: background .18s, border-color .18s, opacity .18s; text-decoration: none; }
.xcb-btn:hover { background: var(--xcb-gold-soft); border-color: var(--xcb-gold-soft); color: #000; }
.xcb-btn:disabled { opacity: .45; cursor: default; }
.xcb-btn--ghost { background: transparent; color: var(--xcb-gold); }
.xcb-btn--ghost:hover { background: rgba(178, 140, 8, .1); border-color: var(--xcb-gold); color: var(--xcb-gold); }
.xcb-btn--quiet { background: transparent; color: var(--xcb-muted); border-color: var(--xcb-line-strong); }
.xcb-btn--quiet:hover { background: transparent; color: var(--xcb-ink); border-color: var(--xcb-muted); }
.xcb-btn--wide { width: 100%; }
.xcb-link { background: none; border: 0; color: var(--xcb-gold); cursor: pointer; font-size: 13.5px; padding: 0; text-decoration: none; border-bottom: 1px solid rgba(178,140,8,.4); font-family: var(--xcb-sans); }
.xcb-link:hover { border-bottom-color: var(--xcb-gold); }

.xcb-actions { display: flex; align-items: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.xcb-actions .xcb-spacer { flex: 1; }

.xcb-choices { display: grid; gap: 10px; }
.xcb-choice { display: flex; align-items: flex-start; gap: 13px; padding: 15px 17px; border: 1px solid var(--xcb-line); border-radius: var(--xcb-r); background: var(--xcb-surface); cursor: pointer; transition: border-color .18s, background .18s; text-align: start; width: 100%; color: var(--xcb-ink); font-family: var(--xcb-sans); font-size: 15px; }
.xcb-choice:hover { border-color: var(--xcb-line-strong); }
.xcb-choice.is-selected { border-color: var(--xcb-gold); background: rgba(178, 140, 8, .07); }
.xcb-dot { width: 17px; height: 17px; flex: 0 0 17px; border: 1px solid var(--xcb-line-strong); border-radius: 50%; margin-top: 3px; position: relative; transition: border-color .18s; }
.xcb-choice.is-selected .xcb-dot { border-color: var(--xcb-gold); }
.xcb-choice.is-selected .xcb-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--xcb-gold); }
.xcb-choice-text strong { display: block; font-weight: 400; }
.xcb-choice-text small { display: block; color: var(--xcb-muted); font-size: 13px; margin-top: 3px; line-height: 1.5; }

.xcb-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.xcb-chip { background: transparent; border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); color: var(--xcb-muted); padding: 9px 17px; font-size: 14px; cursor: pointer; transition: all .18s; font-family: var(--xcb-sans); }
.xcb-chip:hover { color: var(--xcb-ink); border-color: var(--xcb-muted); }
.xcb-chip.is-selected { background: var(--xcb-gold); border-color: var(--xcb-gold); color: #000; }

.xcb-check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 14px; line-height: 1.55; color: var(--xcb-muted); position: relative; }
.xcb-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.xcb-tick { width: 18px; height: 18px; flex: 0 0 18px; border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r); margin-top: 2px; position: relative; transition: all .18s; }
.xcb-check input:checked + .xcb-tick { background: var(--xcb-gold); border-color: var(--xcb-gold); }
.xcb-check input:checked + .xcb-tick::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #000; border-width: 0 1.5px 1.5px 0; transform: rotate(42deg); }
.xcb-check input:focus-visible + .xcb-tick { outline: 2px solid var(--xcb-gold); outline-offset: 2px; }
.xcb-check.has-error .xcb-tick { border-color: var(--xcb-error); }

.xcb-extra-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--xcb-line); }
.xcb-extra-price { color: var(--xcb-muted); font-size: 13.5px; white-space: nowrap; }

.xcb-sec { margin-top: 42px; }
.xcb-sec:first-child { margin-top: 0; }
.xcb-sec > h3 { font-family: var(--xcb-sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--xcb-muted); padding-bottom: 11px; border-bottom: 1px solid var(--xcb-line); margin-bottom: 22px; font-weight: 400; }
.xcb-sec-note { color: var(--xcb-faint); font-size: 13px; margin: -14px 0 20px; }

.xcb-rail { position: sticky; top: 28px; border: 1px solid var(--xcb-line); border-radius: var(--xcb-r-md); background: var(--xcb-surface); }
.xcb-rail-head { padding: 20px 22px 16px; border-bottom: 1px solid var(--xcb-line); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.xcb-rail-head h3 { font-size: 19px; }
.xcb-rail-body { padding: 18px 22px; display: grid; gap: 13px; margin: 0; }
.xcb-rail-row { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 12px; font-size: 13.5px; align-items: start; }
.xcb-rail-row dt { color: var(--xcb-faint); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding-top: 2px; }
.xcb-rail-row dd { margin: 0; color: var(--xcb-ink); line-height: 1.45; overflow-wrap: anywhere; }
.xcb-rail-foot { padding: 18px 22px 22px; border-top: 1px solid var(--xcb-line); }
.xcb-rail-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.xcb-rail-total span { font-size: 13px; color: var(--xcb-muted); letter-spacing: .06em; text-transform: uppercase; }
.xcb-rail-total b { font-family: var(--xcb-serif); font-size: 27px; font-weight: 500; color: var(--xcb-gold); }
.xcb-rail-note { font-size: 12px; color: var(--xcb-faint); margin-top: 6px; line-height: 1.5; }
.xcb-rail-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.xcb-rail-badge { font-size: 11px; letter-spacing: .06em; color: var(--xcb-muted); border: 1px solid var(--xcb-line); border-radius: var(--xcb-r); padding: 4px 9px; }
@media (max-width: 1020px) { .xcb-rail { position: static; margin-top: 34px; } }

.xcb-mobilebar { position: fixed; inset-inline: 0; bottom: 0; z-index: 60; background: #0A0A0A; border-top: 1px solid var(--xcb-line); padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); display: none; align-items: center; justify-content: space-between; gap: 14px; }
@media (max-width: 1020px) { .xcb-mobilebar:not([hidden]) { display: flex; } .xcb { padding-bottom: 96px; } }
.xcb-mobilebar b { font-family: var(--xcb-serif); font-size: 20px; color: var(--xcb-gold); font-weight: 500; }
.xcb-mobilebar span { font-size: 12px; color: var(--xcb-muted); display: block; }

.xcb-modal { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; padding: 22px; }
.xcb-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .82); }
.xcb-modal-box { position: relative; background: var(--xcb-surface); border: 1px solid var(--xcb-line-strong); border-radius: var(--xcb-r-md); width: min(720px, 100%); max-height: 86vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(20, 15, 2, .6); }
.xcb-modal-close { position: absolute; inset-block-start: 12px; inset-inline-end: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.6); border: 1px solid var(--xcb-line-strong); color: var(--xcb-ink); font-size: 20px; line-height: 1; cursor: pointer; }
.xcb-modal-close:hover { border-color: var(--xcb-gold); color: var(--xcb-gold); }
.xcb-modal-hero img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.xcb-modal-in { padding: 26px 30px 30px; }
.xcb-modal-in h3 { font-size: 27px; line-height: 1.12; }
.xcb-modal-in .xcb-car-model { margin-top: 5px; display: block; }
.xcb-modal-in p.xcb-modal-desc { color: var(--xcb-muted); font-size: 15px; line-height: 1.65; margin-top: 14px; max-width: 62ch; }
.xcb-feats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; margin-top: 22px; }
@media (max-width: 560px) { .xcb-feats { grid-template-columns: 1fr; } .xcb-modal-in { padding: 22px; } }
.xcb-feat { display: flex; gap: 10px; font-size: 14px; color: var(--xcb-ink); line-height: 1.5; }
.xcb-feat::before { content: ''; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--xcb-gold); margin-top: 8px; }
.xcb-capa { display: flex; gap: 30px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--xcb-line); flex-wrap: wrap; }
.xcb-capa div span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--xcb-faint); }
.xcb-capa div b { font-family: var(--xcb-serif); font-size: 22px; font-weight: 500; }

.xcb-loading { display: inline-flex; align-items: center; gap: 10px; color: var(--xcb-muted); font-size: 14px; }
.xcb-spin { width: 14px; height: 14px; border: 1.5px solid var(--xcb-line-strong); border-top-color: var(--xcb-gold); border-radius: 50%; animation: xcb-spin .7s linear infinite; display: inline-block; }
@keyframes xcb-spin { to { transform: rotate(360deg); } }
.xcb-skel { background: linear-gradient(90deg, #131211 25%, #1c1a16 37%, #131211 63%); background-size: 400% 100%; animation: xcb-shim 1.3s ease infinite; border-radius: var(--xcb-r); }
@keyframes xcb-shim { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
.xcb-alert { border: 1px solid var(--xcb-error); border-radius: var(--xcb-r); padding: 13px 16px; color: var(--xcb-error); font-size: 14px; margin-bottom: 22px; }
.xcb-noscript { color: var(--xcb-muted); padding: 24px 0; }

.xcb-fade { animation: xcb-fade .28s ease both; }
@keyframes xcb-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.xcb-fade, .xcb-skel, .xcb-spin { animation: none; }
	.xcb-tile, .xcb-tile-media img { transition: none; }
}

.xcb-done { text-align: center; padding: 40px 0 20px; max-width: 620px; margin: 0 auto; }
.xcb-done-mark { width: 62px; height: 62px; margin: 0 auto 24px; border: 1px solid var(--xcb-gold); border-radius: 50%; display: grid; place-items: center; color: var(--xcb-gold); font-size: 26px; }
.xcb-done h2 { font-size: 34px; line-height: 1.12; }
.xcb-done p { color: var(--xcb-muted); margin-top: 14px; font-size: 15px; line-height: 1.65; }
.xcb-done-num { margin: 28px auto 0; border: 1px solid var(--xcb-gold); border-radius: var(--xcb-r); padding: 16px 22px; display: inline-block; }
.xcb-done-num span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--xcb-muted); }
.xcb-done-num b { font-family: var(--xcb-serif); font-size: 26px; font-weight: 500; color: var(--xcb-gold); }

.xcb-rtl { direction: rtl; }
.xcb-rtl .xcb-pstep { padding: 0 0 0 20px; }
.xcb-rtl .xcb-car-side { align-items: flex-start; }
.xcb-rtl .xcb-car-links { align-items: flex-start; }
.xcb-rtl .xcb-check input:checked + .xcb-tick::after { left: auto; right: 5px; }
.xcb-rtl h1, .xcb-rtl h2, .xcb-rtl h3, .xcb-rtl .xcb-car-price, .xcb-rtl .xcb-rail-total b, .xcb-rtl .xcb-done-num b, .xcb-rtl .xcb-cal-title, .xcb-rtl .xcb-capa div b {
	font-family: 'Noto Naskh Arabic', 'Amiri', Georgia, serif;
}

/* Einbettung in die Salient-Seite */
.xceed-booking-row { background: #000000 !important; }
.xceed-booking-row .vc_col-sm-12 { padding-top: 40px; padding-bottom: 10px; }
.xceed-booking-row .wpb_text_column, .xceed-booking-row .wpb_wrapper { margin-bottom: 0 !important; }
body.page-template .xceed-booking-row p:empty { display: none; }


/* =====================================================================
   Spezifitäts-Override gegen die globalen Salient-Regeln.
   Alles unter #xceed_booking wird hier verbindlich festgelegt.
   ================================================================== */

#xcb-app, #xcb-app p, #xcb-app span, #xcb-app div, #xcb-app label, #xcb-app small, #xcb-app dt, #xcb-app dd {
	font-family: var(--xcb-sans);
	letter-spacing: normal;
}

#xcb-app h1, #xcb-app h2, #xcb-app h3, #xcb-app h4, #xcb-app h5, #xcb-app h6 {
	font-family: var(--xcb-serif);
	color: var(--xcb-ink);
	font-weight: 500;
	text-transform: none;
	letter-spacing: -.01em;
	margin: 0;
	padding: 0;
}
#xcb-app .xcb-step-head h2 { font-size: 34px; line-height: 1.1; }
#xcb-app .xcb-done h2 { font-size: 34px; line-height: 1.12; }
#xcb-app .xcb-car-body h3 { font-size: 22px; line-height: 1.15; }
#xcb-app .xcb-tile-body h3 { font-size: 19px; line-height: 1.15; }
#xcb-app .xcb-rail-head h3 { font-size: 19px; line-height: 1.2; }
#xcb-app .xcb-modal-in h3 { font-size: 27px; line-height: 1.12; }
#xcb-app .xcb-cal-title { font-family: var(--xcb-serif); font-size: 17px; letter-spacing: normal; }
@media (max-width: 640px) { #xcb-app .xcb-step-head h2, #xcb-app .xcb-done h2 { font-size: 26px; } }

#xcb-app .xcb-sec > h3,
#xcb-app .xcb-modal-in h4 {
	font-family: var(--xcb-sans);
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--xcb-muted);
	font-weight: 400;
}
#xcb-app .xcb-sec > h3 { padding-bottom: 11px; border-bottom: 1px solid var(--xcb-line); margin-bottom: 22px; }

#xcb-app .xcb-f > label, #xcb-app .xcb-lab {
	font-family: var(--xcb-sans);
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--xcb-muted);
	margin: 0 0 8px;
	font-weight: 400;
	display: block;
}

#xcb-app input[type="text"],
#xcb-app input[type="email"],
#xcb-app input[type="tel"],
#xcb-app input[type="number"],
#xcb-app input[type="time"],
#xcb-app select,
#xcb-app textarea {
	width: 100%;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--xcb-ink) !important;
	border: 0;
	border-bottom: 1px solid var(--xcb-line-strong);
	border-radius: 0;
	box-shadow: none;
	font-family: var(--xcb-sans);
	font-size: 16px;
	line-height: 1.5;
	padding: 9px 0 10px;
	margin: 0;
	min-height: 0;
	height: auto;
	transition: border-color .18s;
	-webkit-appearance: none;
	appearance: none;
}
#xcb-app textarea {
	border: 1px solid var(--xcb-line-strong);
	border-radius: var(--xcb-r);
	padding: 12px 14px;
	min-height: 96px;
}
#xcb-app select {
	background-image: linear-gradient(45deg, transparent 50%, #A8A49A 50%), linear-gradient(135deg, #A8A49A 50%, transparent 50%) !important;
	background-position: calc(100% - 12px) 20px, calc(100% - 7px) 20px !important;
	background-size: 5px 5px, 5px 5px !important;
	background-repeat: no-repeat !important;
	padding-inline-end: 26px;
}
#xcb-app.xcb-rtl select { background-position: 12px 20px, 17px 20px !important; }
#xcb-app input:focus, #xcb-app select:focus, #xcb-app textarea:focus {
	outline: none;
	border-color: var(--xcb-gold);
	box-shadow: none;
}
#xcb-app input::placeholder, #xcb-app textarea::placeholder { color: var(--xcb-faint) !important; opacity: 1; }
#xcb-app .xcb-hint { font-size: 12px; letter-spacing: normal; text-transform: none; color: var(--xcb-faint); }
#xcb-app .xcb-err { font-size: 12px; letter-spacing: normal; text-transform: none; color: var(--xcb-error); }

#xcb-app button {
	font-family: var(--xcb-sans);
	text-transform: none;
	letter-spacing: normal;
	box-shadow: none;
	text-shadow: none;
	min-height: 0;
	line-height: normal;
}
#xcb-app .xcb-btn { background-color: var(--xcb-gold); color: #000; border: 1px solid var(--xcb-gold); border-radius: var(--xcb-r); padding: 14px 30px; font-size: 15px; }
#xcb-app .xcb-btn:hover { background-color: var(--xcb-gold-soft); border-color: var(--xcb-gold-soft); color: #000; }
#xcb-app .xcb-btn--ghost { background-color: transparent; color: var(--xcb-gold); }
#xcb-app .xcb-btn--ghost:hover { background-color: rgba(178,140,8,.1); color: var(--xcb-gold); }
#xcb-app .xcb-btn--quiet { background-color: transparent; color: var(--xcb-muted); border-color: var(--xcb-line-strong); }
#xcb-app .xcb-btn--quiet:hover { background-color: transparent; color: var(--xcb-ink); border-color: var(--xcb-muted); }
#xcb-app .xcb-link { background: none; border: 0; border-bottom: 1px solid rgba(178,140,8,.4); color: var(--xcb-gold); padding: 0; font-size: 13.5px; }
#xcb-app .xcb-seg button, #xcb-app .xcb-langswitch button, #xcb-app .xcb-chip,
#xcb-app .xcb-choice, #xcb-app .xcb-time, #xcb-app .xcb-cal-day, #xcb-app .xcb-cal-nav,
#xcb-app .xcb-step-num button, #xcb-app .xcb-ac-item, #xcb-app .xcb-tile, #xcb-app .xcb-pstep {
	background-color: transparent;
	box-shadow: none;
}
#xcb-app .xcb-seg button[aria-pressed="true"],
#xcb-app .xcb-langswitch button[aria-pressed="true"],
#xcb-app .xcb-chip.is-selected,
#xcb-app .xcb-time.is-selected,
#xcb-app .xcb-cal-day.is-selected { background-color: var(--xcb-gold); color: #000; }
#xcb-app .xcb-tile, #xcb-app .xcb-choice { background-color: var(--xcb-surface); }
#xcb-app .xcb-choice.is-selected { background-color: rgba(178,140,8,.07); }
#xcb-app .xcb-tile-check { background-color: var(--xcb-gold); color: #000; }
#xcb-app .xcb-check input:checked + .xcb-tick { background-color: var(--xcb-gold); }

#xcb-app .xcb-brandline { font-family: var(--xcb-serif); letter-spacing: .22em; text-transform: uppercase; color: var(--xcb-muted); font-size: 15px; }
#xcb-app .xcb-brandline span { color: var(--xcb-gold); }
#xcb-app .xcb-car-model { color: var(--xcb-gold); font-size: 13px; letter-spacing: .05em; }
#xcb-app .xcb-car-price, #xcb-app .xcb-rail-total b, #xcb-app .xcb-done-num b, #xcb-app .xcb-capa div b { font-family: var(--xcb-serif); font-weight: 500; }
#xcb-app .xcb-rail-row dt, #xcb-app .xcb-capa div span, #xcb-app .xcb-done-num span, #xcb-app .xcb-rail-total span { text-transform: uppercase; }
#xcb-app dl, #xcb-app dd, #xcb-app dt { margin: 0; }
#xcb-app ul, #xcb-app ol { margin: 0; padding: 0; list-style: none; }
#xcb-app img { border-radius: 0; box-shadow: none; }
#xcb-app a { text-decoration: none; }
#xcb-app .xcb-cal-dow, #xcb-app .xcb-rail-badge { letter-spacing: .1em; }

/* Salient-Seitenrahmen ausgleichen */
.xceed-booking-row { background: #000000 !important; }
.xceed-booking-row .vc_col-sm-12 { padding-top: 12px; padding-bottom: 10px; }
.xceed-booking-row .wpb_text_column, .xceed-booking-row .wpb_wrapper { margin-bottom: 0 !important; }
.xceed-booking-row p:empty { display: none; }

/* =====================================================================
   Helle Variante: Grund #EFEDE4, Überschriften #B28C08, Fließtext #000000.
   Setzt die Tokens neu, damit die gesamte Strecke umschlägt.
   ================================================================== */

.xcb {
	--xcb-bg: #EFEDE4;
	--xcb-surface: #FBFAF4;
	--xcb-panel: #FFFFFF;
	--xcb-ink: #000000;
	--xcb-muted: #55503F;
	--xcb-faint: #77705C;
	--xcb-gold: #B28C08;
	--xcb-gold-soft: #8F7006;
	--xcb-line: #DCD7C6;
	--xcb-line-strong: #BFB8A0;
	--xcb-error: #A3301B;

	background: var(--xcb-bg);
	color: var(--xcb-ink);
	padding: 8px 0 72px;
}

/* Überschriften in Gold, Fließtext in Schwarz */
#xcb-app h1, #xcb-app h2, #xcb-app h3, #xcb-app h4, #xcb-app h5, #xcb-app h6 { color: var(--xcb-gold); }
#xcb-app .xcb-sec > h3 { color: var(--xcb-muted); }
#xcb-app .xcb-modal-in h4 { color: var(--xcb-muted); }
#xcb-app p, #xcb-app span, #xcb-app div, #xcb-app dd, #xcb-app li { color: inherit; }
#xcb-app .xcb-step-head p { color: var(--xcb-muted); }
#xcb-app .xcb-cal-title { color: var(--xcb-gold); }

/* Flächen und Rahmen */
#xcb-app .xcb-tile, #xcb-app .xcb-car, #xcb-app .xcb-rail, #xcb-app .xcb-cal,
#xcb-app .xcb-choice, #xcb-app .xcb-modal-box { background-color: var(--xcb-panel); }
#xcb-app .xcb-tile-media, #xcb-app .xcb-car-media { background-color: #E3DFD1; }
#xcb-app .xcb-ac-list { background: var(--xcb-panel); box-shadow: 0 16px 36px rgba(90, 78, 30, .18); }
#xcb-app .xcb-modal-box { box-shadow: 0 30px 80px rgba(90, 78, 30, .28); }
#xcb-app .xcb-modal-backdrop { background: rgba(30, 26, 12, .55); backdrop-filter: blur(2px); }
#xcb-app .xcb-modal-close { background: rgba(255, 255, 255, .92); color: var(--xcb-ink); border-color: var(--xcb-line-strong); }
#xcb-app .xcb-modal-close:hover { color: var(--xcb-gold); border-color: var(--xcb-gold); }
#xcb-app .xcb-mobilebar { background: var(--xcb-panel); border-top: 1px solid var(--xcb-line-strong); box-shadow: 0 -6px 24px rgba(90, 78, 30, .12); }
#xcb-app .xcb-skel { background: linear-gradient(90deg, #E7E3D6 25%, #F4F1E7 37%, #E7E3D6 63%); background-size: 400% 100%; }
#xcb-app option { background: #FFFFFF !important; color: #000000 !important; }
#xcb-app .xcb-ac-item { color: var(--xcb-ink); }
#xcb-app .xcb-ac-item:hover, #xcb-app .xcb-ac-item.is-cursor { background: rgba(178, 140, 8, .12); }
#xcb-app .xcb-ac-item small { color: var(--xcb-muted); }
#xcb-app .xcb-choice-text small { color: var(--xcb-muted); }
#xcb-app .xcb-tile-body p, #xcb-app .xcb-car-tag { color: var(--xcb-muted); }
#xcb-app .xcb-car-meta { color: var(--xcb-muted); }
#xcb-app .xcb-car-meta b { color: var(--xcb-ink); }
#xcb-app .xcb-car-price { color: var(--xcb-ink); }
#xcb-app .xcb-car-pricenote, #xcb-app .xcb-rail-note, #xcb-app .xcb-hint, #xcb-app .xcb-sec-note { color: var(--xcb-faint); }
#xcb-app .xcb-rail-row dt, #xcb-app .xcb-capa div span, #xcb-app .xcb-done-num span, #xcb-app .xcb-cal-dow { color: var(--xcb-faint); }
#xcb-app .xcb-rail-row dd { color: var(--xcb-ink); }
#xcb-app .xcb-rail-total span { color: var(--xcb-muted); }
#xcb-app .xcb-rail-badge { color: var(--xcb-muted); border-color: var(--xcb-line-strong); }
#xcb-app .xcb-brandline { color: var(--xcb-muted); }
#xcb-app .xcb-check { color: var(--xcb-ink); }
#xcb-app .xcb-loading { color: var(--xcb-muted); }
#xcb-app .xcb-noscript { color: var(--xcb-ink); }
#xcb-app .xcb-feat { color: var(--xcb-ink); }
#xcb-app .xcb-modal-in p.xcb-modal-desc { color: var(--xcb-muted); }
#xcb-app .xcb-done p { color: var(--xcb-muted); }

/* Bedienelemente */
#xcb-app .xcb-langswitch button, #xcb-app .xcb-seg button, #xcb-app .xcb-chip,
#xcb-app .xcb-time, #xcb-app .xcb-cal-day, #xcb-app .xcb-cal-nav, #xcb-app .xcb-step-num button {
	color: var(--xcb-muted);
}
#xcb-app .xcb-cal-day, #xcb-app .xcb-time { color: var(--xcb-ink); }
#xcb-app .xcb-cal-day:disabled, #xcb-app .xcb-time:disabled { color: var(--xcb-faint); opacity: .45; }
#xcb-app .xcb-langswitch button:hover, #xcb-app .xcb-seg button:hover,
#xcb-app .xcb-chip:hover, #xcb-app .xcb-step-num button:hover:not(:disabled) { color: var(--xcb-ink); }
#xcb-app .xcb-langswitch button[aria-pressed="true"],
#xcb-app .xcb-seg button[aria-pressed="true"],
#xcb-app .xcb-chip.is-selected,
#xcb-app .xcb-time.is-selected,
#xcb-app .xcb-cal-day.is-selected,
#xcb-app .xcb-tile-check,
#xcb-app .xcb-btn { color: #000000; }
#xcb-app .xcb-btn--ghost, #xcb-app .xcb-link { color: var(--xcb-gold); }
#xcb-app .xcb-btn--quiet { color: var(--xcb-muted); }
#xcb-app .xcb-btn--quiet:hover { color: var(--xcb-ink); }
#xcb-app .xcb-btn:hover { background-color: var(--xcb-gold-soft); border-color: var(--xcb-gold-soft); color: #ffffff; }
#xcb-app .xcb-btn--ghost:hover { background-color: rgba(178, 140, 8, .12); color: var(--xcb-gold-soft); }
#xcb-app select {
	background-image: linear-gradient(45deg, transparent 50%, #55503F 50%), linear-gradient(135deg, #55503F 50%, transparent 50%) !important;
}
#xcb-app .xcb-pstep { color: var(--xcb-faint); }
#xcb-app .xcb-pstep.is-done { color: var(--xcb-muted); }
#xcb-app .xcb-pstep.is-active { color: var(--xcb-gold); }
#xcb-app .xcb-alert { color: var(--xcb-error); border-color: var(--xcb-error); background: rgba(163, 48, 27, .06); }
#xcb-app .xcb-err { color: var(--xcb-error); }
#xcb-app .xcb-done-mark { color: var(--xcb-gold); border-color: var(--xcb-gold); }

/* Etwas mehr Luft, ohne die Struktur zu verschieben */
#xcb-app .xcb-topbar { padding: 26px 0 22px; }
#xcb-app .xcb-progress { padding-top: 30px; row-gap: 12px; }
#xcb-app .xcb-layout { padding-top: 40px; }
#xcb-app .xcb-step-head { margin-bottom: 34px; }
#xcb-app .xcb-sec { margin-top: 46px; }
#xcb-app .xcb-actions { margin-top: 44px; }

/* Seite und Zeile hell */
.xceed-booking-row { background: #EFEDE4 !important; }
.xceed-booking-row .vc_col-sm-12 { padding-top: 16px; padding-bottom: 24px; }
body.page-id-1520,
body.page-id-1520 #ajax-content-wrap,
body.page-id-1520 .container-wrap,
body.page-id-1520 .main-content { background-color: #EFEDE4 !important; }
body.page-id-1520 .xceed-booking-row { margin-bottom: 0 !important; }

/* =====================================================================
   Bildkanten, Haken, Preisblock, Kolonne
   ================================================================== */

#xcb-app .xcb-tiles { align-items: stretch; }
#xcb-app .xcb-tile { display: flex; flex-direction: column; overflow: hidden; }
#xcb-app .xcb-tile-media {
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	line-height: 0;
	font-size: 0;
	background-color: #E3DFD1;
}
#xcb-app .xcb-tile-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 6px; }
#xcb-app .xcb-tile-media img,
#xcb-app .xcb-car-media img,
#xcb-app .xcb-modal-hero img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	vertical-align: top;
}
#xcb-app .xcb-modal-hero { line-height: 0; font-size: 0; aspect-ratio: 16 / 9; overflow: hidden; }
#xcb-app .xcb-car-media { line-height: 0; font-size: 0; overflow: hidden; min-height: 100%; }
@media (max-width: 900px) {
	#xcb-app .xcb-car-media { aspect-ratio: 16 / 9; }
	#xcb-app .xcb-car-media img { min-height: 0 !important; }
}

/* Haken sauber vom Beschriftungsstil trennen */
#xcb-app .xcb-f > label.xcb-check {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	line-height: 1.55;
	letter-spacing: normal;
	text-transform: none;
	color: var(--xcb-ink);
	margin: 12px 0 0;
	font-weight: 400;
}
#xcb-app .xcb-check {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	line-height: 1.55;
	letter-spacing: normal;
	text-transform: none;
	color: var(--xcb-ink);
	cursor: pointer;
}
#xcb-app .xcb-check > span:last-child { flex: 1 1 auto; }
#xcb-app .xcb-check input[type="checkbox"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	left: 0; top: 0;
	pointer-events: none;
	appearance: none;
}
#xcb-app .xcb-check .xcb-tick {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border: 1px solid var(--xcb-line-strong);
	border-radius: var(--xcb-r);
	background: #FFFFFF;
	display: block;
	position: relative;
}
#xcb-app .xcb-check input:checked + .xcb-tick { background: var(--xcb-gold); border-color: var(--xcb-gold); }

/* Preisdarstellung netto und brutto */
#xcb-app .xcb-price { text-align: inherit; }
#xcb-app .xcb-price-net { font-family: var(--xcb-serif); font-size: 28px; line-height: 1.05; color: var(--xcb-ink); }
#xcb-app .xcb-price-net sup { font-size: 15px; color: var(--xcb-gold); top: -.7em; }
#xcb-app .xcb-price-sub { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--xcb-faint); margin-top: 3px; }
#xcb-app .xcb-price-gross { font-size: 13px; color: var(--xcb-muted); margin-top: 6px; }
#xcb-app .xcb-car-qty { margin-top: 4px; }
#xcb-app .xcb-car-side { gap: 14px; }
#xcb-app .xcb-foot-note { font-size: 12px; line-height: 1.6; color: var(--xcb-faint); margin-top: 18px; }
#xcb-app .xcb-foot-note a { color: var(--xcb-gold); border-bottom: 1px solid rgba(178,140,8,.4); }
#xcb-app .xcb-convoy-note { margin-top: 20px; margin-bottom: 0; }

#xcb-app .xcb-rail-line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 14px; padding: 3px 0; }
#xcb-app .xcb-rail-line span { color: var(--xcb-muted); }
#xcb-app .xcb-rail-line b { font-weight: 400; color: var(--xcb-ink); }
#xcb-app .xcb-rail-line--sub { font-size: 13px; }
#xcb-app .xcb-rail-line--sub b { color: var(--xcb-muted); }
#xcb-app .xcb-rail-total { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--xcb-line); }
#xcb-app .xcb-rail-total b { font-size: 26px; color: var(--xcb-gold); }
#xcb-app .xcb-totals { max-width: 420px; }
#xcb-app .xcb-mobile-gross { display: block; font-size: 12px; color: var(--xcb-muted); }
#xcb-app .xcb-rail-note a { color: var(--xcb-gold); }

/* Fussbereich unter dem Buchungsfeld */
.xcb-legal {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #DCD7C6;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif;
	font-size: 12.5px;
	line-height: 1.7;
	color: #55503F;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	align-items: baseline;
}
.xcb-legal a { color: #B28C08; text-decoration: none; border-bottom: 1px solid rgba(178,140,8,.4); }
.xcb-legal a:hover { border-bottom-color: #B28C08; }
.xcb-legal .xcb-legal-note { flex: 1 1 260px; color: #77705C; }

/* Kachel mit weiterführendem Link */
#xcb-app .xcb-tile-cell { display: flex; flex-direction: column; }
#xcb-app .xcb-tile-cell .xcb-tile { flex: 1 1 auto; }
#xcb-app .xcb-tile-more {
	display: inline-block;
	align-self: flex-start;
	margin-top: 10px;
	font-size: 12.5px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--xcb-gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(178,140,8,.4);
	padding-bottom: 1px;
}
#xcb-app .xcb-tile-more:hover { border-bottom-color: var(--xcb-gold); color: var(--xcb-gold-soft); }
#xcb-app .xcb-resumed {
	border: 1px solid var(--xcb-gold);
	background: rgba(178,140,8,.08);
	border-radius: var(--xcb-r);
	padding: 13px 16px;
	font-size: 14px;
	color: var(--xcb-ink);
	margin: 0 0 26px;
}
#xcb-app #captcha { max-width: 220px; }
#xcb-app .xcb-f > label[for="captcha"] {
	font-size: 15px;
	letter-spacing: normal;
	text-transform: none;
	color: var(--xcb-ink);
	font-family: var(--xcb-serif);
}


/* =========================================================================
   Hero mit Bildwechsel, Panel wie bei Blacklane, in Xceed-Farben
   ====================================================================== */
.xcb-hero {
	position: relative;
	min-height: 94svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #0B0B0A;
	margin: 0 0 0;
	padding: 132px 0 46px;
	isolation: isolate;
}
.xcb-hero-bg { position: absolute; inset: 0; z-index: 0; }
.xcb-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	animation-name: xcbHeroFade;
	animation-timing-function: cubic-bezier(.4, 0, .2, 1);
	animation-iteration-count: infinite;
	will-change: opacity;
}
.xcb-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	animation-name: xcbHeroKen;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	will-change: transform;
}
.xcb-hero-veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 26%, rgba(0,0,0,.30) 52%, rgba(0,0,0,.78) 100%),
		radial-gradient(120% 80% at 20% 40%, rgba(0,0,0,.20), transparent 70%);
}
.xcb-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.xcb-hero-copy { max-width: 32ch; }
.xcb-hero-eyebrow {
	display: inline-block;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif;
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #E6C558;
	margin-bottom: 14px;
	opacity: 0;
	animation: xcbRise .8s cubic-bezier(.2,.7,.3,1) .15s forwards;
}
.xcb-hero-title {
	font-family: Georgia, serif !important;
	font-size: clamp(30px, 3.6vw, 54px) !important;
	line-height: 1.08 !important;
	color: #FFFFFF !important;
	margin: 0 !important;
	letter-spacing: -0.01em;
	opacity: 0;
	animation: xcbRise .9s cubic-bezier(.2,.7,.3,1) .28s forwards;
}
@keyframes xcbRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Panel */
.xcb-hero #xcb-app {
	opacity: 0;
	animation: xcbRise .9s cubic-bezier(.2,.7,.3,1) .42s forwards;
	display: flex;
	flex-direction: column;
	max-height: min(660px, calc(94svh - 320px));
	min-height: 360px;
	background: rgba(250, 249, 244, .92) !important;
	-webkit-backdrop-filter: blur(22px) saturate(1.15);
	backdrop-filter: blur(22px) saturate(1.15);
	border: 1px solid rgba(255, 255, 255, .55) !important;
	border-radius: 6px !important;
	box-shadow: 0 40px 100px rgba(0, 0, 0, .48), 0 2px 0 rgba(255,255,255,.4) inset !important;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100%;
}
.xcb-hero #xcb-app .xcb-topbar {
	margin: 0 !important;
	padding: 14px 26px 12px !important;
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	flex: 0 0 auto;
	background: rgba(255, 255, 255, .45);
}
.xcb-hero #xcb-app .xcb-progress {
	flex: 0 0 auto;
	margin: 0 !important;
	padding: 14px 26px 14px !important;
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	position: relative;
}
.xcb-scroll {
	flex: 1 1 auto;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	padding: 26px 26px 6px;
	scrollbar-width: thin;
	scrollbar-color: rgba(178,140,8,.65) rgba(0,0,0,.06);
}
.xcb-scroll::-webkit-scrollbar { width: 8px; }
.xcb-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,.05); border-radius: 99px; }
.xcb-scroll::-webkit-scrollbar-thumb { background: rgba(178,140,8,.6); border-radius: 99px; border: 2px solid transparent; background-clip: padding-box; }
.xcb-scroll::-webkit-scrollbar-thumb:hover { background: #B28C08; background-clip: padding-box; }
.xcb-hero #xcb-app .xcb-layout { margin: 0 !important; padding: 0 !important; }
.xcb-hero #xcb-app .xcb-legal {
	flex: 0 0 auto;
	margin: 0 !important;
	padding: 12px 26px !important;
	border-top: 1px solid rgba(0, 0, 0, .07);
	background: rgba(255, 255, 255, .5);
	font-size: 11px !important;
}

/* Stufen mit Farbimpuls */
@keyframes xcbWave {
	0%   { box-shadow: 0 0 0 0 rgba(178,140,8,.5); }
	65%  { box-shadow: 0 0 0 11px rgba(178,140,8,0); }
	100% { box-shadow: 0 0 0 0 rgba(178,140,8,0); }
}
@keyframes xcbSheen {
	0%   { transform: translateX(-100%); }
	60%  { transform: translateX(100%); }
	100% { transform: translateX(100%); }
}
#xcb-app .xcb-pstep .xcb-pnum { transition: background-color .25s ease, color .25s ease, transform .25s ease; }
#xcb-app .xcb-pstep.is-active .xcb-pnum { animation: xcbWave 2.4s ease-out infinite; }
#xcb-app .xcb-pstep:not([disabled]):hover .xcb-pnum { transform: scale(1.12); }
#xcb-app .xcb-pstep { position: relative; transition: color .2s ease; }
#xcb-app .xcb-pstep.is-active::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -15px;
	height: 2px;
	overflow: hidden;
	background: rgba(178,140,8,.28);
}
#xcb-app .xcb-pstep.is-active::before {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -15px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #B28C08, transparent);
	animation: xcbSheen 2.8s ease-in-out infinite;
	z-index: 1;
}

/* Moderne Eingabefelder */
#xcb-app .xcb-f > label {
	font-family: 'Average Sans', Helvetica, Arial, sans-serif !important;
	font-size: 9.5px !important;
	letter-spacing: .18em !important;
	text-transform: uppercase !important;
	color: #8B8471 !important;
	margin: 0 0 6px !important;
	display: block;
}
#xcb-app .xcb-f input[type="text"],
#xcb-app .xcb-f input[type="email"],
#xcb-app .xcb-f input[type="tel"],
#xcb-app .xcb-f select,
#xcb-app .xcb-f textarea {
	background: #FFFFFF !important;
	border: 1px solid rgba(0,0,0,.10) !important;
	border-radius: 4px !important;
	padding: 13px 14px !important;
	font-size: 15px !important;
	color: #14130E !important;
	box-shadow: 0 1px 0 rgba(0,0,0,.02);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
#xcb-app .xcb-f input:focus,
#xcb-app .xcb-f select:focus,
#xcb-app .xcb-f textarea:focus {
	border-color: #B28C08 !important;
	box-shadow: 0 0 0 3px rgba(178,140,8,.16) !important;
	outline: none !important;
}
#xcb-app .xcb-f.has-error input { border-color: #A3301B !important; }

/* Datum und Zeit als Popup-Auswahl mit Stift */
#xcb-app .xcb-picks { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-start; margin: 4px 0 22px; }
#xcb-app .xcb-pickwrap { position: relative; flex: 1 1 240px; min-width: 220px; }
#xcb-app .xcb-pick {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,.10);
	border-radius: 4px;
	padding: 11px 14px;
	text-align: left;
	cursor: pointer;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
#xcb-app .xcb-pick:hover:not([disabled]) { border-color: rgba(178,140,8,.55); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(40,34,12,.10); }
#xcb-app .xcb-pickwrap.is-open .xcb-pick { border-color: #B28C08; box-shadow: 0 0 0 3px rgba(178,140,8,.16); }
#xcb-app .xcb-pick[disabled] { opacity: .5; cursor: not-allowed; }
#xcb-app .xcb-pick-lab {
	flex: 0 0 auto;
	font-size: 9.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #8B8471;
}
#xcb-app .xcb-pick-val {
	flex: 1 1 auto;
	font-size: 14.5px;
	color: #6E6858;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;
}
#xcb-app .xcb-pick.is-set .xcb-pick-val { color: #14130E; }
#xcb-app .xcb-pick-ico { flex: 0 0 auto; display: inline-flex; color: #B28C08; opacity: .75; transition: opacity .18s ease, transform .18s ease; }
#xcb-app .xcb-pick:hover .xcb-pick-ico { opacity: 1; transform: scale(1.1); }

#xcb-app .xcb-pop {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 40;
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,.10);
	border-radius: 6px;
	box-shadow: 0 26px 60px rgba(40,34,12,.22);
	min-width: 320px;
	max-width: min(420px, calc(100vw - 40px));
	animation: xcbPop .2s cubic-bezier(.2,.8,.3,1);
	transform-origin: top left;
}
#xcb-app .xcb-pop--time { min-width: 260px; }
#xcb-app .xcb-pop-in { padding: 16px; max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(178,140,8,.55) transparent; }
#xcb-app .xcb-pop-in::-webkit-scrollbar { width: 6px; }
#xcb-app .xcb-pop-in::-webkit-scrollbar-thumb { background: rgba(178,140,8,.55); border-radius: 99px; }
#xcb-app .xcb-pop-hint { font-size: 11.5px; color: #8B8471; margin: 12px 0 0; line-height: 1.5; }
@keyframes xcbPop { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }

#xcb-app .xcb-daycount {
	flex: 0 0 auto;
	align-self: center;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(178,140,8,.10);
	border: 1px solid rgba(178,140,8,.30);
}
#xcb-app .xcb-daycount span { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: #8B8471; }
#xcb-app .xcb-daycount b { font-size: 17px; color: #B28C08; font-weight: 400; }
#xcb-app .xcb-daily-note {
	font-size: 13px;
	line-height: 1.65;
	color: #57523F;
	background: rgba(178,140,8,.07);
	border-left: 2px solid #B28C08;
	padding: 12px 16px;
	margin: 0 0 20px;
	border-radius: 0 4px 4px 0;
}

/* Kalender mit Zeitraum */
#xcb-app .xcb-cal-day { border-radius: 4px; transition: background-color .15s ease, color .15s ease, transform .15s ease; }
#xcb-app .xcb-cal-day:not([disabled]):hover { transform: scale(1.08); }
#xcb-app .xcb-cal-day.is-range { background: rgba(178,140,8,.14) !important; color: #14130E !important; border-radius: 0; }
#xcb-app .xcb-cal-day.is-start { border-radius: 4px 0 0 4px; }
#xcb-app .xcb-cal-day.is-end { border-radius: 0 4px 4px 0; }
#xcb-app .xcb-cal-day.is-start.is-end, #xcb-app .xcb-cal-day.is-selected:not(.is-end):not(.is-range) { border-radius: 4px; }
#xcb-app .xcb-time { transition: background-color .15s ease, color .15s ease, transform .15s ease; }
#xcb-app .xcb-time:not([disabled]):hover { transform: translateY(-1px); }

/* Auswahl-Bahnen horizontal */
#xcb-app .xcb-tiles {
	display: flex !important;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	padding: 4px 2px 18px;
	margin: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(178,140,8,.65) rgba(0,0,0,.07);
}
#xcb-app .xcb-tile-cell { flex: 0 0 clamp(206px, 23vw, 260px); scroll-snap-align: start; }
#xcb-app .xcb-cars {
	display: flex !important;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	padding: 4px 2px 18px;
	scrollbar-width: thin;
	scrollbar-color: rgba(178,140,8,.65) rgba(0,0,0,.07);
}
#xcb-app .xcb-car { flex: 0 0 min(360px, 86%); scroll-snap-align: start; display: flex !important; flex-direction: column !important; }
#xcb-app .xcb-car-media { width: 100% !important; height: 168px !important; flex: 0 0 auto; }
#xcb-app .xcb-car-side { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
#xcb-app .xcb-tiles::-webkit-scrollbar,
#xcb-app .xcb-cars::-webkit-scrollbar { height: 7px; }
#xcb-app .xcb-tiles::-webkit-scrollbar-track,
#xcb-app .xcb-cars::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 99px; }
#xcb-app .xcb-tiles::-webkit-scrollbar-thumb,
#xcb-app .xcb-cars::-webkit-scrollbar-thumb { background: rgba(178,140,8,.65); border-radius: 99px; }
#xcb-app .xcb-tiles::-webkit-scrollbar-thumb:hover,
#xcb-app .xcb-cars::-webkit-scrollbar-thumb:hover { background: #B28C08; }

/* Micro-Interaktionen */
#xcb-app .xcb-tile, #xcb-app .xcb-car { transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, border-color .22s ease; }
#xcb-app .xcb-tile:hover, #xcb-app .xcb-car:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(40,34,12,.16); }
#xcb-app .xcb-tile-media img, #xcb-app .xcb-car-media img { transition: transform .5s cubic-bezier(.2,.8,.3,1); }
#xcb-app .xcb-tile:hover .xcb-tile-media img, #xcb-app .xcb-car:hover .xcb-car-media img { transform: scale(1.06); }
#xcb-app .xcb-btn { transition: transform .18s ease, background-color .2s ease, box-shadow .2s ease; }
#xcb-app .xcb-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(178,140,8,.28); }
#xcb-app .xcb-seg button { transition: background-color .2s ease, color .2s ease, transform .18s ease; }
#xcb-app .xcb-seg button:hover { transform: translateY(-1px); }

@keyframes xcbFadeStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
#xcb-app .xcb-fade { animation: xcbFadeStep .38s cubic-bezier(.2,.8,.3,1); }

@media (max-width: 900px) {
	.xcb-hero { min-height: auto; padding: 104px 0 40px; align-items: stretch; }
	.xcb-hero-inner { padding: 0 16px; gap: 20px; }
	.xcb-hero #xcb-app { max-height: none; min-height: 0; }
	.xcb-scroll { overflow: visible; padding: 20px 18px 4px; }
	.xcb-hero #xcb-app .xcb-topbar, .xcb-hero #xcb-app .xcb-progress { padding-left: 18px !important; padding-right: 18px !important; }
	.xcb-hero #xcb-app .xcb-legal { padding-left: 18px !important; padding-right: 18px !important; }
	#xcb-app .xcb-pop { left: auto; right: 0; min-width: 280px; }
	#xcb-app .xcb-car { flex: 0 0 84%; }
}
@media (prefers-reduced-motion: reduce) {
	.xcb-hero-slide, .xcb-hero-slide img, #xcb-app .xcb-pstep.is-active .xcb-pnum,
	#xcb-app .xcb-pstep.is-active::before, #xcb-app .xcb-fade,
	.xcb-hero-eyebrow, .xcb-hero-title, .xcb-hero #xcb-app { animation: none !important; opacity: 1 !important; }
	.xcb-hero-slide:first-child { opacity: 1 !important; }
}

/* Bildfläche im Hero zwingend vollformatig */
html body .xcb-hero .xcb-hero-bg { position: absolute !important; inset: 0 !important; overflow: hidden; }
html body .xcb-hero .xcb-hero-slide { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; }
html body .xcb-hero .xcb-hero-slide img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	min-width: 0 !important;
	object-fit: cover !important;
	object-position: center center !important;
	display: block !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}
html body .xcb-hero .xcb-hero-inner { display: flex !important; }

/* Popup mittig ueber dem Panel, nicht vom Scrollbereich beschnitten */
#xcb-app .xcb-pop {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	right: auto !important;
	transform: translate(-50%, -50%) !important;
	z-index: 100000 !important;
	min-width: 340px;
	max-width: min(440px, calc(100vw - 32px));
	animation: xcbPopIn .22s cubic-bezier(.2, .8, .3, 1);
	border-radius: 8px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
	border: 1px solid rgba(0, 0, 0, .08);
}
#xcb-app .xcb-pop::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	background: rgba(12, 11, 8, .5);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	animation: xcbVeilIn .22s ease;
}
#xcb-app .xcb-pop::after {
	content: '\00d7';
	position: absolute;
	top: 10px;
	right: 12px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, .05);
	color: #8B8471;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease;
}
#xcb-app .xcb-pop:hover::after { background: rgba(178, 140, 8, .14); color: #B28C08; }
#xcb-app .xcb-pop-in { padding: 22px 20px 20px; max-height: min(70svh, 460px); }
@keyframes xcbPopIn { from { opacity: 0; transform: translate(-50%, -46%) scale(.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes xcbVeilIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 900px) {
	#xcb-app .xcb-pop { min-width: 0; width: calc(100vw - 32px); }
}

/* Glasflaeche als eigene Ebene, damit fixierte Popups am Viewport haengen */
.xcb-hero #xcb-app {
	background: transparent !important;
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
	position: relative;
	max-height: min(680px, calc(94svh - 300px));
}
.xcb-hero #xcb-app::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(250, 249, 244, .93);
	-webkit-backdrop-filter: blur(22px) saturate(1.15);
	backdrop-filter: blur(22px) saturate(1.15);
	border-radius: 6px;
	pointer-events: none;
}
.xcb-hero #xcb-app > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
	.xcb-hero #xcb-app { max-height: none; }
}

/* Keine Transformationen auf Vorfahren des Popups, sonst haengt fixed am Panel */
@keyframes xcbFadeOnly { from { opacity: 0; } to { opacity: 1; } }
@keyframes xcbRiseIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
#xcb-app .xcb-fade { animation: xcbFadeOnly .3s ease !important; transform: none !important; }
#xcb-app .xcb-fade > .xcb-step-head { animation: xcbRiseIn .5s cubic-bezier(.2, .8, .3, 1); }
#xcb-app .xcb-fade > .xcb-grid,
#xcb-app .xcb-fade > .xcb-picks,
#xcb-app .xcb-fade > .xcb-tiles,
#xcb-app .xcb-fade > .xcb-cars { animation: xcbRiseIn .55s cubic-bezier(.2, .8, .3, 1) .06s backwards; }
.xcb-hero #xcb-app { animation: xcbFadeOnly .8s ease .35s backwards !important; transform: none !important; }

#xcb-app .xcb-fade > .xcb-picks,
#xcb-app .xcb-picks,
#xcb-app .xcb-pickwrap { animation: xcbFadeOnly .4s ease !important; transform: none !important; filter: none !important; }

.xcb-hero #xcb-app { opacity: 1 !important; animation: xcbFadeOnly .7s ease .3s backwards !important; }

/* Popup als Lightbox: Veil traegt die Karte, nichts wird beschnitten */
#xcb-app .xcb-pop {
	position: fixed !important;
	inset: 0 !important;
	top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
	transform: none !important;
	z-index: 100000 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 24px !important;
	min-width: 0 !important;
	max-width: none !important;
	width: auto !important;
	background: rgba(12, 11, 8, .52) !important;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	animation: xcbVeilIn .2s ease !important;
}
#xcb-app .xcb-pop::before, #xcb-app .xcb-pop::after { content: none !important; display: none !important; }
#xcb-app .xcb-pop-in {
	position: relative;
	width: min(440px, 100%);
	max-height: min(78svh, 560px);
	overflow-y: auto;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 8px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
	padding: 24px 22px 22px !important;
	animation: xcbPopIn2 .24s cubic-bezier(.2, .8, .3, 1);
}
@keyframes xcbPopIn2 { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
#xcb-app .xcb-pop-x {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	background: rgba(255, 255, 255, .10);
	color: #FFFFFF;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
#xcb-app .xcb-pop-x:hover { background: #FFFFFF; color: #B28C08; border-color: #FFFFFF; transform: scale(1.06); }
#xcb-app .xcb-pop--time .xcb-pop-in { width: min(360px, 100%); }
@media (max-width: 900px) {
	#xcb-app .xcb-pop { padding: 16px !important; }
	#xcb-app .xcb-pop-in { max-height: 76svh; }
	#xcb-app .xcb-pop-x { top: 14px; right: 14px; width: 36px; height: 36px; }
}

/* =========================================================================
   Layout wie bei Blacklane: beiger Grund, weisse Karten, Karte in der Spalte
   ====================================================================== */
html body #xcb-app {
	max-width: 1240px !important;
	margin: 0 auto !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	max-height: none !important;
	animation: none !important;
	opacity: 1 !important;
	display: block !important;
}
html body #xcb-app::before { content: none !important; }

html body #xcb-app .xcb-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	background: transparent !important;
	border: 0 !important;
	padding: 0 0 18px !important;
	margin: 0 !important;
}

/* Reiseleiste, klebt unter dem Menue */
html body #xcb-app .xcb-tripbar {
	position: sticky;
	top: 78px;
	z-index: 40;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 12px 0;
	margin: 0 0 4px;
	background: rgba(239, 237, 228, .92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
html body #xcb-app .xcb-trippill {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	max-width: 100%;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, .09);
	border-radius: 999px;
	padding: 10px 18px;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif;
	font-size: 13.5px;
	color: #14130E;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(40, 34, 12, .05);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
html body #xcb-app .xcb-trippill > span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 46ch;
}
html body #xcb-app .xcb-trippill svg { color: #B28C08; flex: 0 0 auto; opacity: .8; transition: opacity .18s ease, transform .18s ease; }
html body #xcb-app .xcb-trippill:hover { border-color: rgba(178, 140, 8, .55); box-shadow: 0 8px 20px rgba(40, 34, 12, .10); transform: translateY(-1px); }
html body #xcb-app .xcb-trippill:hover svg { opacity: 1; transform: scale(1.12); }

/* Stufenleiste */
html body #xcb-app .xcb-progress {
	background: transparent !important;
	border: 0 !important;
	padding: 6px 0 22px !important;
	margin: 0 !important;
}

/* Zwei Spalten */
html body #xcb-app .xcb-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 384px;
	gap: 30px;
	align-items: start;
	margin: 0 !important;
	padding: 0 !important;
}
html body #xcb-app .xcb-main {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 10px;
	padding: 32px 34px 30px;
	box-shadow: 0 2px 14px rgba(40, 34, 12, .05);
	min-width: 0;
}
html body #xcb-app .xcb-rail {
	position: sticky;
	top: 150px;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	display: grid;
	gap: 18px;
	min-width: 0;
}

/* Karte */
html body #xcb-app .xcb-map {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(40, 34, 12, .05);
}
html body #xcb-app .xcb-map img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 420 / 250;
	object-fit: cover;
	background: #F3F1E9;
}
html body #xcb-app .xcb-map-legend { display: grid; gap: 12px; padding: 16px 18px 18px; }
html body #xcb-app .xcb-map-pin { display: grid; grid-template-columns: 12px 1fr; gap: 4px 10px; align-items: start; }
html body #xcb-app .xcb-map-pin b {
	grid-column: 2;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif;
	font-size: 9.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #8B8471;
	font-weight: 400;
}
html body #xcb-app .xcb-map-pin em {
	grid-column: 2;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif !important;
	font-style: normal;
	font-size: 13.5px;
	line-height: 1.45;
	color: #14130E;
	overflow-wrap: anywhere;
}
html body #xcb-app .xcb-dot { grid-row: 1 / span 2; width: 10px; height: 10px; border-radius: 50%; margin-top: 4px; display: block; }
html body #xcb-app .xcb-dot--from { background: #B28C08; box-shadow: 0 0 0 3px rgba(178, 140, 8, .18); }
html body #xcb-app .xcb-dot--to { background: #14130E; box-shadow: 0 0 0 3px rgba(20, 19, 14, .12); }

/* Summenkarte */
html body #xcb-app .xcb-rail-head,
html body #xcb-app .xcb-rail-body,
html body #xcb-app .xcb-rail-foot {
	background: #FFFFFF;
	border-left: 1px solid rgba(0, 0, 0, .07);
	border-right: 1px solid rgba(0, 0, 0, .07);
	padding-left: 20px !important;
	padding-right: 20px !important;
	margin: 0 !important;
}
html body #xcb-app .xcb-rail-head {
	border-top: 1px solid rgba(0, 0, 0, .07);
	border-radius: 10px 10px 0 0;
	padding-top: 18px !important;
	padding-bottom: 14px !important;
}
html body #xcb-app .xcb-rail-body { padding-bottom: 6px !important; }
html body #xcb-app .xcb-rail-foot {
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	border-radius: 0 0 10px 10px;
	padding-bottom: 20px !important;
	box-shadow: 0 2px 14px rgba(40, 34, 12, .05);
}

@media (max-width: 1100px) {
	html body #xcb-app .xcb-layout { grid-template-columns: minmax(0, 1fr); }
	html body #xcb-app .xcb-rail { position: static; }
}
@media (max-width: 690px) {
	html body #xcb-app .xcb-main { padding: 22px 18px 20px; border-radius: 8px; }
	html body #xcb-app .xcb-tripbar { top: 62px; }
	html body #xcb-app .xcb-trippill { font-size: 12.5px; padding: 9px 14px; }
	html body #xcb-app .xcb-trippill > span { max-width: 60vw; }
}

html body #xcb-app .xcb-pop[hidden] { display: none !important; }
html body #xcb-app .xcb-tripbar[hidden] { display: none !important; }

html body #xcb-app .xcb-map img { aspect-ratio: 520 / 300; }

/* =========================================================================
   Korrekturen: Stufenanzeige, keine inneren Slider, groessere Typografie
   ====================================================================== */

/* 1) Stufenanzeige: ruhiger Unterstrich statt ausschlagendem Balken */
@keyframes xcbGlow { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
html body #xcb-app .xcb-pstep.is-active::before { content: none !important; display: none !important; animation: none !important; }
html body #xcb-app .xcb-pstep.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
	height: 2px;
	background: #B28C08;
	border-radius: 2px;
	animation: xcbGlow 2.6s ease-in-out infinite;
	overflow: hidden;
}

/* 2) Keine horizontalen Bahnen mehr, die Seite scrollt normal */
html body #xcb-app .xcb-tiles {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px !important;
	overflow: visible !important;
	scroll-snap-type: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
html body #xcb-app .xcb-tile-cell { flex: none !important; width: auto !important; scroll-snap-align: none !important; }
html body #xcb-app .xcb-cars {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 24px !important;
	overflow: visible !important;
	scroll-snap-type: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
html body #xcb-app .xcb-car { flex: none !important; width: auto !important; scroll-snap-align: none !important; }

/* 3) Typografie eine Stufe groesser, Abstaende mitgezogen */
html body #xcb-app { font-size: 20px; }
html body #xcb-app .xcb-main { padding: 40px 42px 36px; }

html body #xcb-app .xcb-step-head { margin-bottom: 30px; }
html body #xcb-app .xcb-step-head h2 {
	font-family: Georgia, serif !important;
	font-size: clamp(28px, 2.6vw, 38px) !important;
	line-height: 1.16 !important;
	margin: 0 0 12px !important;
}
html body #xcb-app .xcb-step-head p { font-size: 19px !important; line-height: 1.6 !important; margin: 0 !important; }

html body #xcb-app .xcb-sec { margin-top: 38px; }
html body #xcb-app .xcb-sec:first-child { margin-top: 0; }
html body #xcb-app .xcb-sec > h3 {
	font-family: Georgia, serif !important;
	font-size: 22px !important;
	line-height: 1.3 !important;
	margin: 0 0 10px !important;
}
html body #xcb-app .xcb-sec-note { font-size: 16.5px !important; line-height: 1.6 !important; margin: 0 0 20px !important; color: #6E6858 !important; }

html body #xcb-app .xcb-grid { gap: 22px !important; }
html body #xcb-app .xcb-f > label { font-size: 11px !important; letter-spacing: .2em !important; margin-bottom: 9px !important; }
html body #xcb-app .xcb-f input[type="text"],
html body #xcb-app .xcb-f input[type="email"],
html body #xcb-app .xcb-f input[type="tel"],
html body #xcb-app .xcb-f select,
html body #xcb-app .xcb-f textarea {
	font-size: 20px !important;
	padding: 16px 18px !important;
	border-radius: 5px !important;
}
html body #xcb-app .xcb-hint { font-size: 15px !important; line-height: 1.55 !important; margin-top: 8px !important; }
html body #xcb-app .xcb-err { font-size: 15px !important; margin-top: 8px !important; }

html body #xcb-app .xcb-seg { gap: 8px; }
html body #xcb-app .xcb-seg button { font-size: 16px !important; padding: 14px 24px !important; }

html body #xcb-app .xcb-pick { padding: 14px 18px !important; gap: 16px !important; border-radius: 5px !important; }
html body #xcb-app .xcb-pick-lab { font-size: 11px !important; letter-spacing: .2em !important; }
html body #xcb-app .xcb-pick-val { font-size: 18px !important; }
html body #xcb-app .xcb-picks { gap: 18px !important; margin: 6px 0 8px !important; }
html body #xcb-app .xcb-daycount { padding: 13px 20px !important; }
html body #xcb-app .xcb-daycount span { font-size: 11px !important; }
html body #xcb-app .xcb-daycount b { font-size: 20px !important; }
html body #xcb-app .xcb-daily-note { font-size: 16.5px !important; line-height: 1.7 !important; padding: 16px 20px !important; margin-bottom: 26px !important; }

html body #xcb-app .xcb-cal-day { font-size: 17px !important; }
html body #xcb-app .xcb-cal-dow { font-size: 12px !important; }
html body #xcb-app .xcb-cal-title { font-size: 19px !important; }
html body #xcb-app .xcb-time { font-size: 16px !important; padding: 11px 8px !important; }
html body #xcb-app .xcb-pop-hint { font-size: 14px !important; line-height: 1.6 !important; }

html body #xcb-app .xcb-tile-body h3 { font-size: 21px !important; line-height: 1.3 !important; }
html body #xcb-app .xcb-tile-body p { font-size: 16px !important; line-height: 1.6 !important; }
html body #xcb-app .xcb-tile-more { font-size: 12.5px !important; letter-spacing: .16em !important; }
html body #xcb-app .xcb-car-body h3 { font-size: 22px !important; }
html body #xcb-app .xcb-car-model { font-size: 14px !important; }
html body #xcb-app .xcb-car-tag { font-size: 16px !important; line-height: 1.6 !important; }
html body #xcb-app .xcb-car-meta { font-size: 15px !important; }
html body #xcb-app .xcb-price-net { font-size: 28px !important; }
html body #xcb-app .xcb-price-sub { font-size: 13px !important; }
html body #xcb-app .xcb-price-gross { font-size: 16px !important; }

html body #xcb-app .xcb-btn { font-size: 15px !important; padding: 17px 34px !important; letter-spacing: .14em !important; }
html body #xcb-app .xcb-actions { margin-top: 38px !important; gap: 16px; }
html body #xcb-app .xcb-link { font-size: 15px !important; }
html body #xcb-app .xcb-check { font-size: 17px !important; line-height: 1.6 !important; }

html body #xcb-app .xcb-brandline {
	font-family: 'Average Sans', Helvetica, Arial, sans-serif !important;
	font-size: 19px !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	color: #14130E !important;
}
html body #xcb-app .xcb-brandline span { font-family: inherit !important; color: inherit !important; letter-spacing: inherit !important; }
html body #xcb-app .xcb-langswitch button { font-size: 14px !important; padding: 9px 16px !important; }
html body #xcb-app .xcb-pstep { font-size: 15px !important; }
html body #xcb-app .xcb-pnum { width: 30px !important; height: 30px !important; font-size: 14px !important; }
html body #xcb-app .xcb-trippill { font-size: 16px !important; padding: 12px 22px !important; }

html body #xcb-app .xcb-rail-head h3 { font-size: 20px !important; }
html body #xcb-app .xcb-rail-row dt { font-size: 11px !important; letter-spacing: .18em !important; }
html body #xcb-app .xcb-rail-row dd { font-size: 17px !important; line-height: 1.5 !important; }
html body #xcb-app .xcb-rail-line { font-size: 16px !important; }
html body #xcb-app .xcb-rail-total { font-size: 17px !important; }
html body #xcb-app .xcb-rail-total b { font-size: 26px !important; }
html body #xcb-app .xcb-rail-note { font-size: 13.5px !important; line-height: 1.6 !important; }
html body #xcb-app .xcb-map-pin em { font-size: 16px !important; }
html body #xcb-app .xcb-map-pin b { font-size: 11px !important; }
html body #xcb-app .xcb-legal { font-size: 13.5px !important; line-height: 1.7 !important; }

@media (max-width: 690px) {
	html body #xcb-app { font-size: 18px; }
	html body #xcb-app .xcb-main { padding: 26px 20px 24px; }
	html body #xcb-app .xcb-f input[type="text"],
	html body #xcb-app .xcb-f input[type="email"],
	html body #xcb-app .xcb-f input[type="tel"],
	html body #xcb-app .xcb-f select,
	html body #xcb-app .xcb-f textarea { font-size: 18px !important; padding: 14px 15px !important; }
	html body #xcb-app .xcb-step-head p { font-size: 17px !important; }
	html body #xcb-app .xcb-tiles { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px !important; }
	html body #xcb-app .xcb-cars { grid-template-columns: 1fr; }
	html body #xcb-app .xcb-btn { padding: 15px 26px !important; }
}

/* Feinschliff Abschnitte */
html body #xcb-app .xcb-sec > h3 {
	text-transform: none !important;
	letter-spacing: 0 !important;
	color: #14130E !important;
}
html body #xcb-app .xcb-sec--who { padding-bottom: 34px; border-bottom: 1px solid rgba(0, 0, 0, .08); margin-bottom: 6px; }
html body #xcb-app .xcb-seg { margin-top: 34px !important; }
html body #xcb-app .xcb-sec--who + .xcb-seg { margin-top: 30px !important; }
html body #xcb-app .xcb-fade > .xcb-grid { margin-top: 6px; }
html body #xcb-app .xcb-lab { font-size: 11px !important; letter-spacing: .2em !important; margin-bottom: 12px !important; }

/* =========================================================================
   Runde Stufen, feste Reiseleiste, Blacklane-Auswahlrahmen, weisse Schrift auf Gold
   ====================================================================== */

/* Stufen exakt rund */
html body #xcb-app .xcb-pnum {
	flex: 0 0 auto !important;
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	aspect-ratio: 1 / 1 !important;
	padding: 0 !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	box-sizing: border-box !important;
}

/* Reiseleiste bleibt oben stehen, wandert nicht mit */
html body #xcb-app .xcb-tripbar {
	position: static !important;
	top: auto !important;
	background: transparent !important;
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
	padding: 0 0 18px !important;
	margin: 0 !important;
}

/* Weisse Schrift auf Gold */
html body #xcb-app .xcb-langswitch button[aria-pressed="true"],
html body #xcb-app .xcb-seg button[aria-pressed="true"],
html body #xcb-app .xcb-btn,
html body #xcb-app .xcb-pstep.is-active .xcb-pnum,
html body #xcb-app .xcb-pstep.is-done .xcb-pnum,
html body #xcb-app .xcb-tile-check {
	color: #FFFFFF !important;
	-webkit-text-fill-color: #FFFFFF !important;
}
html body #xcb-app .xcb-btn:hover { color: #FFFFFF !important; -webkit-text-fill-color: #FFFFFF !important; }
html body #xcb-app .xcb-btn--quiet { color: #14130E !important; -webkit-text-fill-color: #14130E !important; }
html body #xcb-app .xcb-btn--quiet:hover { background: #B28C08 !important; border-color: #B28C08 !important; color: #FFFFFF !important; -webkit-text-fill-color: #FFFFFF !important; }

/* Begruessung: Anrede normal, Name fett */
html body #xcb-app .xcb-greet { font-weight: 400 !important; color: #57523F !important; }
html body #xcb-app .xcb-greet-name { font-weight: 700 !important; color: #14130E !important; font-family: inherit !important; }

/* Anlass- und Fahrzeugauswahl im Blacklane-Prinzip */
html body #xcb-app .xcb-tile,
html body #xcb-app .xcb-car {
	background: #FFFFFF !important;
	border: 2px solid #EFEDE4 !important;
	border-radius: 8px !important;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .22s ease, transform .22s cubic-bezier(.2, .8, .3, 1);
}
html body #xcb-app .xcb-tile:hover,
html body #xcb-app .xcb-car:hover {
	border-color: #EFEDE4 !important;
	box-shadow: 0 14px 34px rgba(40, 34, 12, .14) !important;
	transform: translateY(-3px);
}
html body #xcb-app .xcb-tile.is-selected,
html body #xcb-app .xcb-car.is-selected,
html body #xcb-app .xcb-tile.is-selected:hover,
html body #xcb-app .xcb-car.is-selected:hover {
	border-color: #B28C08 !important;
	box-shadow: 0 0 0 1px #B28C08, 0 12px 30px rgba(178, 140, 8, .18) !important;
}
html body #xcb-app .xcb-tile-check {
	background: #B28C08 !important;
	border: 0 !important;
	border-radius: 50% !important;
	width: 30px !important;
	height: 30px !important;
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	font-size: 14px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
html body #xcb-app .xcb-tile.is-selected .xcb-tile-check,
html body #xcb-app .xcb-car.is-selected .xcb-tile-check { display: inline-flex !important; }

/* Fahrzeuge untereinander, Aufbau wie die Anlasskacheln */
html body #xcb-app .xcb-cars { grid-template-columns: 1fr !important; gap: 22px !important; }
html body #xcb-app .xcb-car-cell { display: block; }
html body #xcb-app .xcb-car {
	position: relative;
	display: grid !important;
	grid-template-columns: 260px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0;
}
html body #xcb-app .xcb-car-media { width: 100% !important; height: 100% !important; min-height: 190px; }
html body #xcb-app .xcb-car-media img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
html body #xcb-app .xcb-car-body { padding: 24px 26px !important; }
html body #xcb-app .xcb-car-side {
	display: grid !important;
	gap: 16px;
	justify-items: end;
	padding: 24px 26px !important;
	border-left: 1px solid rgba(0, 0, 0, .07);
	align-self: stretch;
	align-content: center;
}
html body #xcb-app .xcb-car-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 14px; }
html body #xcb-app .xcb-car-cell .xcb-tile-more { margin-top: 12px; display: inline-block; }
@media (max-width: 900px) {
	html body #xcb-app .xcb-car { grid-template-columns: 1fr; }
	html body #xcb-app .xcb-car-media { min-height: 200px; }
	html body #xcb-app .xcb-car-side { border-left: 0; border-top: 1px solid rgba(0, 0, 0, .07); justify-items: start; }
}

/* Reisedaten im Popup statt Sprung an den Anfang */
html body #xcb-app .xcb-modal { z-index: 99000; }
html body #xcb-app .xcb-pop { z-index: 100500 !important; }
html body #xcb-app .xcb-tripedit { padding: 34px 34px 30px !important; }
html body #xcb-app .xcb-tripedit h3 { font-family: Georgia, serif !important; font-size: 26px !important; margin: 0 0 8px !important; color: #14130E !important; }
html body #xcb-app .xcb-tripedit .xcb-modal-desc { font-size: 16.5px !important; line-height: 1.6 !important; margin: 0 0 26px !important; color: #57523F !important; }
html body #xcb-app .xcb-tripedit .xcb-seg--trip { margin-top: 0 !important; }
html body #xcb-app .xcb-tripedit .xcb-actions { margin-top: 30px !important; }

html body #xcb-app .xcb-seg--trip { margin: 0 0 28px !important; }
html body #xcb-app .xcb-tripedit .xcb-grid { margin-bottom: 4px; }

/* Aktive Stufe: gold gefuellt, weisse Ziffer */
html body #xcb-app .xcb-pstep.is-active .xcb-pnum {
	background: #B28C08 !important;
	border: 1px solid #B28C08 !important;
	color: #FFFFFF !important;
	-webkit-text-fill-color: #FFFFFF !important;
}
html body #xcb-app .xcb-pstep[disabled] .xcb-pnum {
	background: transparent !important;
	border: 1px solid rgba(0, 0, 0, .18) !important;
	color: #8B8471 !important;
	-webkit-text-fill-color: #8B8471 !important;
}

/* =========================================================================
   Korrekturen: Stufenziffer, Popup ueber dem Menue, Segmentleiste, Aktionsleiste
   ====================================================================== */

/* Aktive Stufe: goldene Ziffer auf hellem Grund, damit sie klar lesbar bleibt */
html body #xcb-app .xcb-pstep.is-active .xcb-pnum {
	background: #FFFFFF !important;
	border: 2px solid #B28C08 !important;
	color: #B28C08 !important;
	-webkit-text-fill-color: #B28C08 !important;
	font-weight: 700 !important;
}

/* Popup legt sich ueber Menue und Hinweisleiste */
html.xcb-modal-open #header-outer,
html.xcb-modal-open #header-space,
html.xcb-modal-open .nectar-global-section,
html.xcb-modal-open #slide-out-widget-area,
html.xcb-modal-open .slide-out-widget-area-toggle { z-index: 1 !important; }
html.xcb-modal-open { overflow: hidden; }
html body #xcb-app .xcb-modal { z-index: 2147483000 !important; }
html body #xcb-app .xcb-modal-backdrop { background: rgba(12, 11, 8, .62) !important; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
html body #xcb-app .xcb-pop { z-index: 2147483600 !important; }

/* Segmentleiste: Auswahl fuellt die Zelle vollstaendig */
html body #xcb-app .xcb-seg {
	display: inline-flex !important;
	align-items: stretch;
	gap: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 5px;
	overflow: hidden;
	background: #FFFFFF;
	max-width: 100%;
	flex-wrap: wrap;
}
html body #xcb-app .xcb-seg button {
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #57523F !important;
	-webkit-text-fill-color: #57523F !important;
	padding: 15px 26px !important;
	line-height: 1.2 !important;
	flex: 1 1 auto;
	transform: none !important;
}
html body #xcb-app .xcb-seg button + button { border-left: 1px solid rgba(0, 0, 0, .12) !important; }
html body #xcb-app .xcb-seg button:hover { background: rgba(178, 140, 8, .08) !important; color: #14130E !important; -webkit-text-fill-color: #14130E !important; }
html body #xcb-app .xcb-seg button[aria-pressed="true"] {
	background: #B28C08 !important;
	color: #FFFFFF !important;
	-webkit-text-fill-color: #FFFFFF !important;
}

/* Mehr erfahren als schlichter Textlink, auch als Button-Element */
html body #xcb-app .xcb-tile-more,
html body #xcb-app button.xcb-tile-more {
	display: inline-block !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin-top: 14px !important;
	color: #B28C08 !important;
	-webkit-text-fill-color: #B28C08 !important;
	font-family: 'Average Sans', Helvetica, Arial, sans-serif !important;
	font-size: 12.5px !important;
	letter-spacing: .16em !important;
	text-transform: uppercase !important;
	text-decoration: underline !important;
	text-underline-offset: 4px;
	box-shadow: none !important;
	cursor: pointer;
	transform: none !important;
}
html body #xcb-app .xcb-tile-more:hover,
html body #xcb-app button.xcb-tile-more:hover {
	background: transparent !important;
	color: #8F7006 !important;
	-webkit-text-fill-color: #8F7006 !important;
	box-shadow: none !important;
	transform: none !important;
}

/* Kolonnenhinweis mit Luft nach oben */
html body #xcb-app .xcb-convoy-note { margin-top: 34px !important; }

/* Einwilligungen */
html body #xcb-app .xcb-consents { display: grid; gap: 18px; }
html body #xcb-app .xcb-check a { color: #B28C08 !important; text-decoration: underline !important; text-underline-offset: 3px; }
html body #xcb-app .xcb-check a:hover { color: #8F7006 !important; }

/* Aktionsleiste sitzt buendig an der Kartenkante, aussen abgerundet */
html body #xcb-app .xcb-actions {
	display: flex !important;
	align-items: stretch;
	gap: 0 !important;
	margin: 40px -42px -36px !important;
	border-top: 1px solid rgba(0, 0, 0, .07);
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}
html body #xcb-app .xcb-actions .xcb-btn {
	border-radius: 0 !important;
	margin: 0 !important;
	transform: none !important;
	box-shadow: none !important;
	padding: 20px 34px !important;
}
html body #xcb-app .xcb-actions .xcb-btn[data-back] { border-bottom-left-radius: 10px !important; }
html body #xcb-app .xcb-actions .xcb-btn:last-child { border-bottom-right-radius: 10px !important; }
html body #xcb-app .xcb-actions .xcb-spacer { flex: 1 1 auto; }
@media (max-width: 690px) {
	html body #xcb-app .xcb-actions { margin: 30px -20px -24px !important; border-radius: 0 0 8px 8px; }
	html body #xcb-app .xcb-actions .xcb-btn { padding: 17px 20px !important; }
	html body #xcb-app .xcb-actions .xcb-btn[data-back] { border-bottom-left-radius: 8px !important; }
	html body #xcb-app .xcb-actions .xcb-btn:last-child { border-bottom-right-radius: 8px !important; }
	html body #xcb-app .xcb-seg button { padding: 13px 16px !important; }
}

/* Zurueck-Button ohne eigene Umrandung, bleibt weiss in der Aktionsleiste */
html body #xcb-app .xcb-actions .xcb-btn--quiet,
html body #xcb-app .xcb-actions .xcb-btn[data-back] {
	background: #FFFFFF !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #57523F !important;
	-webkit-text-fill-color: #57523F !important;
}
html body #xcb-app .xcb-actions .xcb-btn--quiet:hover,
html body #xcb-app .xcb-actions .xcb-btn[data-back]:hover {
	background: #F6F4EC !important;
	border: 0 !important;
	color: #B28C08 !important;
	-webkit-text-fill-color: #B28C08 !important;
}

/* ============================================================
   Runde Aussenkanten, Scrollverhalten und Schliessen-Buttons
   ============================================================ */

/* Sprachumschalter: Aussenkanten wie der Weissbereich */
html body #xcb-app .xcb-langswitch {
	border-radius: 10px !important;
	overflow: hidden !important;
}
html body #xcb-app .xcb-langswitch button { border-radius: 0 !important; }

/* Popup- und Detail-Layer: gleiche Aussenrundung */
html body #xcb-app .xcb-modal-box {
	border-radius: 10px !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
}
html body #xcb-app .xcb-pop-in { border-radius: 10px !important; }

/* Solange ein Layer offen ist, scrollt nur der Layer, nicht die Seite */
html.xcb-modal-open,
html.xcb-modal-open body,
html.xcb-pop-open,
html.xcb-pop-open body {
	overflow: hidden !important;
	overscroll-behavior: none !important;
}
html body #xcb-app .xcb-modal-box,
html body #xcb-app .xcb-pop-in {
	overscroll-behavior: contain !important;
	touch-action: pan-y !important;
}

/* Scrollbalken in Markengold */
html body #xcb-app .xcb-modal-box,
html body #xcb-app .xcb-pop-in,
html body #xcb-app .xcb-ac-list,
html body #xcb-app .xcb-rail {
	scrollbar-width: thin !important;
	scrollbar-color: #B28C08 rgba(178, 140, 8, .12) !important;
}
html body #xcb-app .xcb-modal-box::-webkit-scrollbar,
html body #xcb-app .xcb-pop-in::-webkit-scrollbar,
html body #xcb-app .xcb-ac-list::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
html body #xcb-app .xcb-modal-box::-webkit-scrollbar-track,
html body #xcb-app .xcb-pop-in::-webkit-scrollbar-track,
html body #xcb-app .xcb-ac-list::-webkit-scrollbar-track {
	background: rgba(178, 140, 8, .10);
	border-radius: 99px;
}
html body #xcb-app .xcb-modal-box::-webkit-scrollbar-thumb,
html body #xcb-app .xcb-pop-in::-webkit-scrollbar-thumb,
html body #xcb-app .xcb-ac-list::-webkit-scrollbar-thumb {
	background: #B28C08;
	border-radius: 99px;
	border: 2px solid transparent;
	background-clip: padding-box;
}
html body #xcb-app .xcb-modal-box::-webkit-scrollbar-thumb:hover,
html body #xcb-app .xcb-pop-in::-webkit-scrollbar-thumb:hover,
html body #xcb-app .xcb-ac-list::-webkit-scrollbar-thumb:hover { background: #C9A11A; background-clip: padding-box; }

/* Schliessen-Button: X exakt mittig, Kreis waechst beim Hover */
html body #xcb-app .xcb-modal-close,
html body #xcb-app .xcb-pop-x {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 0 !important;
	line-height: 0 !important;
	padding: 0 !important;
	text-indent: 0 !important;
	transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease !important;
}
html body #xcb-app .xcb-modal-close::before,
html body #xcb-app .xcb-modal-close::after,
html body #xcb-app .xcb-pop-x::before,
html body #xcb-app .xcb-pop-x::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 1.6px;
	border-radius: 2px;
	background: currentColor;
}
html body #xcb-app .xcb-modal-close::before,
html body #xcb-app .xcb-pop-x::before { transform: translate(-50%, -50%) rotate(45deg); }
html body #xcb-app .xcb-modal-close::after,
html body #xcb-app .xcb-pop-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

html body #xcb-app .xcb-modal-close:hover,
html body #xcb-app .xcb-pop-x:hover { transform: scale(1.12) !important; }
html body #xcb-app .xcb-modal-close:active,
html body #xcb-app .xcb-pop-x:active { transform: scale(1.04) !important; }

/* Buttons in Layern: buendig an der Unterkante, unten mitgerundet */
html body #xcb-app .xcb-modal-in .xcb-modal-foot {
	display: flex !important;
	margin: 30px -30px -30px !important;
	border-top: 1px solid rgba(0, 0, 0, .07);
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}
html body #xcb-app .xcb-modal-in .xcb-modal-foot .xcb-btn {
	flex: 1 1 auto;
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 0 10px 10px !important;
	padding: 20px 34px !important;
	transform: none !important;
	box-shadow: none !important;
}
html body #xcb-app .xcb-tripedit .xcb-actions {
	margin: 30px -30px -30px !important;
	border-radius: 0 0 10px 10px !important;
}

@media (max-width: 560px) {
	html body #xcb-app .xcb-modal-in .xcb-modal-foot { margin: 26px -22px -22px !important; }
	html body #xcb-app .xcb-tripedit .xcb-actions { margin: 26px -22px -22px !important; }
	html body #xcb-app .xcb-modal-in .xcb-modal-foot .xcb-btn { padding: 18px 22px !important; }
}

/* Zusammenfassung rechts: Karte ohne Zwischenabstaende */
html body #xcb-app .xcb-rail { gap: 0 !important; }
html body #xcb-app .xcb-rail > .xcb-map { margin-bottom: 18px !important; }
html body #xcb-app .xcb-rail-body {
	padding-top: 18px !important;
	padding-bottom: 6px !important;
	border-top: 0 !important;
}
html body #xcb-app .xcb-rail-body:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	border-radius: 0 0 10px 10px;
	padding-bottom: 20px !important;
	box-shadow: 0 2px 14px rgba(40, 34, 12, .05);
}
html body #xcb-app .xcb-rail-foot { margin-top: 0 !important; }

/* Einheitliche Abrundung: Eingabefelder, Auswahlbuttons und Chips */
html body #xcb-app .xcb-f input[type="text"],
html body #xcb-app .xcb-f input[type="email"],
html body #xcb-app .xcb-f input[type="tel"],
html body #xcb-app .xcb-f input[type="number"],
html body #xcb-app .xcb-f input[type="time"],
html body #xcb-app .xcb-f select,
html body #xcb-app .xcb-f textarea,
html body #xcb-app .xcb-inp { border-radius: 10px !important; }

html body #xcb-app .xcb-pick,
html body #xcb-app .xcb-ac-list,
html body #xcb-app .xcb-cal,
html body #xcb-app .xcb-time,
html body #xcb-app .xcb-cal-nav,
html body #xcb-app .xcb-choice,
html body #xcb-app .xcb-chip,
html body #xcb-app .xcb-seg,
html body #xcb-app .xcb-alert,
html body #xcb-app .xcb-done-num,
html body #xcb-app .xcb-stepper,
html body #xcb-app .xcb-btn { border-radius: 10px !important; }

html body #xcb-app .xcb-cal-day { border-radius: 8px !important; }
html body #xcb-app .xcb-tick { border-radius: 5px !important; }

/* Ausnahmen: Segmentleisten und Aktionsleisten behalten ihre Kantenlogik */
html body #xcb-app .xcb-seg button,
html body #xcb-app .xcb-langswitch button { border-radius: 0 !important; }
html body #xcb-app .xcb-actions .xcb-btn { border-radius: 0 !important; }
html body #xcb-app .xcb-actions .xcb-btn[data-back] { border-bottom-left-radius: 10px !important; }
html body #xcb-app .xcb-actions .xcb-btn:last-child { border-bottom-right-radius: 10px !important; }
html body #xcb-app .xcb-modal-in .xcb-modal-foot .xcb-btn { border-radius: 0 0 10px 10px !important; }
html body #xcb-app .xcb-mobilebar .xcb-btn { border-radius: 10px !important; }

/* Sprachwahl im Fahrzeug: aktiver Chip in Gold mit weisser Schrift */
html body #xcb-app .xcb-chip.is-selected,
html body #xcb-app .xcb-chip[aria-pressed="true"] {
	background: #B28C08 !important;
	border-color: #B28C08 !important;
	color: #FFFFFF !important;
	-webkit-text-fill-color: #FFFFFF !important;
}
html body #xcb-app .xcb-chip.is-selected:hover,
html body #xcb-app .xcb-chip[aria-pressed="true"]:hover {
	background: #C9A11A !important;
	border-color: #C9A11A !important;
	color: #FFFFFF !important;
	-webkit-text-fill-color: #FFFFFF !important;
}

/* ============================================================
   Kontaktformular: ein kompaktes Formular im Look der Strecke
   ============================================================ */
html body #xcb-app.xcb-contact { max-width: 1180px; margin: 0 auto; }
html body #xcb-app.xcb-contact .xcb-layout { padding-top: 0 !important; }
html body #xcb-app.xcb-contact .xcb-rail { top: 40px; }
html body #xcb-app.xcb-contact form { margin: 0; }
html body #xcb-app.xcb-contact .xcb-alert { margin: 26px 0 0; }
html body #xcb-app.xcb-contact .xcb-sec:first-of-type { margin-top: 34px; }
html body #xcb-app.xcb-contact textarea { min-height: 190px !important; }
html body #xcb-app.xcb-contact .xcb-rail-body a,
html body #xcb-app.xcb-contact .xcb-rail-note a { color: #B28C08; text-decoration: none; border-bottom: 1px solid rgba(178, 140, 8, .35); }
html body #xcb-app.xcb-contact .xcb-rail-body a:hover,
html body #xcb-app.xcb-contact .xcb-rail-note a:hover { border-bottom-color: #B28C08; }
html body #xcb-app.xcb-contact .xcb-rail-row { grid-template-columns: 128px minmax(0, 1fr); }
html body #xcb-app.xcb-contact .xcb-done { padding: 20px 0 0; }
html body #xcb-app.xcb-contact .xcb-done h2 { font-size: 32px; line-height: 1.15; }
html body #xcb-app.xcb-contact .xcb-done p { color: #57523F; font-size: 18px; line-height: 1.6; margin-top: 14px; max-width: 60ch; }
html body #xcb-app.xcb-contact .xcb-actions .xcb-btn:last-child { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 10px !important; }
@media (max-width: 1020px) {
	html body #xcb-app.xcb-contact .xcb-rail { margin-top: 30px; }
}


/* Kontaktseite: geraeumigere Seitenspalte */
html body #xcb-app.xcb-contact .xcb-rail-head { padding: 28px 30px 22px !important; }
html body #xcb-app.xcb-contact .xcb-rail-body { padding: 28px 30px 28px !important; gap: 24px !important; }
html body #xcb-app.xcb-contact .xcb-rail-foot { padding: 26px 30px 30px !important; }
html body #xcb-app.xcb-contact .xcb-rail-row { grid-template-columns: 1fr !important; gap: 7px !important; }
html body #xcb-app.xcb-contact .xcb-rail-row dt { padding-top: 0 !important; }
html body #xcb-app.xcb-contact .xcb-rail-row dd { line-height: 1.6 !important; overflow-wrap: anywhere; }
html body #xcb-app.xcb-contact .xcb-rail-line { padding: 7px 0 !important; }
html body #xcb-app.xcb-contact .xcb-rail-badges { margin-top: 18px !important; gap: 8px !important; }
html body #xcb-app.xcb-contact .xcb-rail-badge { padding: 6px 12px !important; }
html body #xcb-app.xcb-contact .xcb-rail-note { margin-top: 18px !important; }

html body #xcb-app .xcb-check[hidden] { display: none !important; }
html body #xcb-app .xcbc-terms { animation: xcbFadeStep .3s ease; }

/* ===== Angefangene Anfrage fortsetzen ===== */
html body #xcb-app .xcb-resume .xcb-resume-sum {
	margin: 0 0 4px !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(178,140,8,.34) !important;
	background: rgba(178,140,8,.07) !important;
	border-radius: 10px !important;
	font-size: 15px !important;
	line-height: 1.55 !important;
	color: #14130E !important;
}
html body #xcb-app .xcb-resume .xcb-resume-sum span {
	display: block !important;
	font-family: 'Average Sans', sans-serif !important;
	font-size: 11px !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: #B28C08 !important;
	margin: 0 0 6px !important;
}
html body #xcb-app .xcb-resume .xcb-actions { margin-top: 30px !important; }

/* ===== Sekundaerbutton: gefuellt in Gold, beim Hover invertiert ===== */
html body #xcb-app .xcb-btn--ghost,
html body #xcb-app button.xcb-btn.xcb-btn--ghost,
html body #xcb-app a.xcb-btn.xcb-btn--ghost {
	background: #B28C08 !important;
	background-color: #B28C08 !important;
	border: 1px solid #B28C08 !important;
	color: #FFFFFF !important;
}
html body #xcb-app .xcb-btn--ghost:hover,
html body #xcb-app .xcb-btn--ghost:focus-visible,
html body #xcb-app button.xcb-btn.xcb-btn--ghost:hover,
html body #xcb-app a.xcb-btn.xcb-btn--ghost:hover {
	background: #FFFFFF !important;
	background-color: #FFFFFF !important;
	border: 1px solid #B28C08 !important;
	color: #B28C08 !important;
}
