/* shifter Pop-up Store – Probefahrt-Buchung. Farbwelt nach den Johansson-Plakaten. */
@font-face { font-family: "Barlow Condensed"; font-weight: 400; font-display: swap; src: url(/static/fonts/barlow-condensed-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-display: swap; src: url(/static/fonts/barlow-condensed-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-display: swap; src: url(/static/fonts/barlow-condensed-latin-700-normal.woff2) format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-display: swap; src: url(/static/fonts/barlow-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-display: swap; src: url(/static/fonts/barlow-latin-600-normal.woff2) format("woff2"); }

:root {
  --green: #2f6f45;      /* weiß darauf 6.0:1 */
  --green-600: #255c39;
  --green-800: #1d4a2e;
  --green-100: #e6eee8;
  --green-50: #f2f6f3;
  --cream: #f5f2ea;
  --ink: #17211b;
  --ink-2: #45524a;
  --line: #d5ddd7;       /* nur Deko-Linien */
  --line-strong: #7d8a82; /* Rahmen von Bedienelementen, ≥3:1 */
  --white: #fff;
  --red: #c8102e;
  --focus: #f2b705;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(20, 40, 28, .12);
  --font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --wrap: 1160px;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; scroll-padding-bottom: 24px; }
@media (max-width: 639px) { html { scroll-padding-bottom: 120px; } } /* fokussierte Felder nicht unter der Buchungsleiste */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.55; color: var(--ink); background: var(--cream); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; margin: 0 0 .4em; letter-spacing: .01em; }
p { margin: 0 0 1em; }
/* Zweifarbiger Fokusring: gelb (auf Grün sichtbar) + dunkler Außenring (auf Weiß sichtbar) */
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; box-shadow: 0 0 0 7px var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; margin: -1px; padding: 0; border: 0; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--white); color: var(--ink); padding: 10px 14px; z-index: 100; border-radius: 8px; }
.skip:focus { left: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--ink-2); font-weight: 400; }
[hidden] { display: none !important; }

/* --- Topbar ---------------------------------------------------------- */
.topbar { position: sticky; top: 0; z-index: 50; background: var(--green-800); color: var(--white); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand img { width: 120px; height: auto; }
.brand__sep { width: 1px; height: 20px; background: rgba(255,255,255,.4); }
.brand__label { white-space: nowrap; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 15px; }
.topbar__cta { color: var(--white); font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,.7); border-radius: 999px; padding: 6px 14px; font-size: 15px; white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center; }
.topbar__cta:hover { background: var(--white); color: var(--green-800); }
@media (max-width: 459px) { .brand__sep, .brand__sep + .brand__label { display: none; } }

/* --- Buttons ---------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px;
  border-radius: 8px; border: 2px solid transparent; font: 600 17px/1.2 var(--font); text-decoration: none; cursor: pointer;
  transition: background .15s, color .15s, transform .1s; }
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 56px; padding: 14px 28px; font-family: var(--display); font-size: 21px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-800); }
.btn--light { background: var(--white); color: var(--green-800); }
.btn--light:hover { background: var(--green-100); }
.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--green); }
.btn--ghost:hover { background: var(--green-50); }
.btn--danger { background: var(--red); color: var(--white); }
.btn--danger:hover { background: #9e0c24; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .7; cursor: progress; }

/* --- Hero ------------------------------------------------------------ */
.hero { background: var(--green); color: var(--white); overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 10px; background: var(--green-800); }
.hero__inner { display: grid; gap: 20px; padding-top: 28px; padding-bottom: 36px; }
.eyebrow { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; font-size: 16px; margin: 0 0 8px; opacity: .92; }
.hero__title { font-size: clamp(56px, 16vw, 96px); text-transform: uppercase; margin: 0; line-height: .92; }
.hero__title-bold { font-weight: 700; }
.hero__title-light { font-weight: 400; }
.hero__claim { font-family: var(--display); font-size: clamp(28px, 6.5vw, 40px); font-weight: 600; margin: 8px 0 10px; }
.hero__sub { font-size: 17px; max-width: 34em; }
.hero__actions { margin: 18px 0 16px; }
.hero__actions .btn { width: 100%; max-width: 360px; }
.badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.badges li { border: 1.5px solid rgba(255,255,255,.75); border-radius: 999px; padding: 4px 12px; font-size: 15px; font-weight: 600; }
.hero__visual { margin: 0 auto; position: relative; width: 100%; max-width: 440px; }
.hero__visual > img { filter: drop-shadow(0 18px 24px rgba(0,0,0,.25)); }
.seal { display: flex; align-items: stretch; gap: 0; margin-top: 12px; background: var(--white); color: var(--ink); border-radius: var(--radius-sm); overflow: hidden; max-width: 340px; box-shadow: var(--shadow); }
.seal img { width: 116px; height: auto; object-fit: contain; background: var(--white); padding: 6px; }
.seal__price { display: flex; flex-direction: column; justify-content: center; padding: 10px 14px; border-left: 1px solid var(--line); }
.seal__model { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 22px; letter-spacing: .03em; }
.seal__amount { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--green-800); }
.seal__vat { font-size: 13px; color: var(--ink-2); }
@media (min-width: 720px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; align-items: center; padding-top: 56px; padding-bottom: 64px; }
  .hero__visual { max-width: none; }
  .seal { margin-left: auto; margin-top: -8px; }
}

/* --- Sections -------------------------------------------------------- */
.section-title { font-size: clamp(34px, 7vw, 52px); text-transform: uppercase; font-weight: 700; color: var(--green-800); }
.section-title--light { color: var(--white); }
.intro { padding-top: 56px; padding-bottom: 8px; max-width: 820px; text-align: center; }
.lead { font-size: 19px; color: var(--ink-2); }

.models { padding: 32px 0 56px; }
.models .section-title { text-align: center; margin-bottom: 28px; }
.models__grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .models__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .models__grid { grid-template-columns: repeat(4, 1fr); } }
.model { background: var(--white); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 0 var(--line); border: 1px solid var(--line); }
.model__img { background: var(--green-50); aspect-ratio: 16 / 9; display: grid; place-items: center; position: relative; padding: 14px; }
.model__img img { width: 100%; height: 100%; object-fit: contain; }
.tag { position: absolute; top: 10px; left: 10px; font-size: 13px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.tag--award { background: var(--red); color: var(--white); }
.model__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.model__name { font-size: 32px; text-transform: uppercase; margin-bottom: 2px; }
.model__claim { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--green); margin-bottom: 10px; }
.model__text { font-size: 16px; color: var(--ink-2); }
.model__list { margin: 0 0 14px; padding: 0; list-style: none; font-size: 15px; }
.model__list li { padding-left: 24px; position: relative; margin-bottom: 6px; }
.model__list li::before { content: ""; position: absolute; left: 2px; top: .45em; width: 12px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.model__price { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--green-800); margin-bottom: 12px; }
.model__actions { margin-top: auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.link-ext { font-weight: 600; font-size: 15px; min-height: 44px; display: inline-flex; align-items: center; }

.steps { padding-bottom: 56px; }
.steps .section-title { text-align: center; }
.steps__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
@media (min-width: 800px) { .steps__list { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.step { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; align-content: start; }
.step p { grid-column: 2; margin: 0; color: var(--ink-2); }
.step__num { grid-row: span 2; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; font: 700 24px var(--display); }
.step__title { font-size: 24px; text-transform: uppercase; margin: 6px 0 4px; }

/* --- Booking --------------------------------------------------------- */
.booking { background: var(--green); padding: 40px 0 56px; }
.booking__wrap { max-width: 860px; }
.booking__head { text-align: center; color: var(--white); margin-bottom: 20px; }
.booking__sub { font-size: 18px; }
.notice { background: var(--white); padding: 16px; border-radius: var(--radius-sm); }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px 18px 0; }
@media (min-width: 640px) { .card { padding: 12px 32px 0; } }
.fs { border: 0; margin: 0; padding: 18px 0 22px; border-bottom: 1px solid var(--line); min-width: 0; }
.fs__legend { font-family: var(--display); font-weight: 700; font-size: 24px; text-transform: uppercase; color: var(--green-800); padding: 0; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.1; }
.fs__num { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: var(--white); display: inline-grid; place-items: center; font-size: 18px; flex: none; margin-top: -2px; }
.fs__sub { font-weight: 600; margin: 18px 0 10px; }
.fs__legend + .fs__sub { margin-top: 0; }
.fs__link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 4px; font-size: 15px; font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chips--models { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .chips--models { grid-template-columns: repeat(4, 1fr); } }
.chip--wide { grid-column: 1 / -1; }
.chip__label { display: flex; align-items: center; justify-content: center; text-align: center; height: 100%; min-height: 48px; padding: 10px 14px; border: 2px solid var(--line-strong); border-radius: var(--radius-sm); font-weight: 600; background: var(--white); transition: border-color .15s, background .15s; }
.chip input:checked + .chip__label { background: var(--green); border-color: var(--green); color: var(--white); }
.chip input:focus-visible + .chip__label { outline: 3px solid var(--focus); outline-offset: 2px; box-shadow: 0 0 0 7px var(--ink); }
.chip:hover .chip__label { border-color: var(--green); }
.chip input:checked + .chip__label::before { content: "✓"; margin-right: 6px; }

.days-wrap { position: relative; }
.days-wrap::before, .days-wrap::after { content: ""; position: absolute; top: 0; bottom: 10px; width: 40px; pointer-events: none; opacity: 0; transition: opacity .2s; z-index: 1; }
.days-wrap::before { left: 0; background: linear-gradient(to right, var(--white), rgba(255,255,255,0)); }
.days-wrap::after { right: 0; background: linear-gradient(to left, var(--white), rgba(255,255,255,0)); }
.days-wrap.can-prev::before, .days-wrap.can-next::after { opacity: 1; }
.days { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; scroll-padding: 0 8px; padding: 4px 2px 10px; margin: 0 -2px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.days-nav { position: absolute; top: calc(50% - 5px); transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--green); background: var(--white); color: var(--green-800); font: 700 26px/1 var(--font); cursor: pointer; box-shadow: var(--shadow); display: none; padding: 0 0 4px; }
.days-nav--prev { left: -12px; }
.days-nav--next { right: -12px; }
.days-nav:hover { background: var(--green-50); }
@media (hover: hover) and (pointer: fine), (min-width: 900px) { .days-nav { display: grid; place-items: center; } }
.day { flex: none; scroll-snap-align: start; width: 68px; min-height: 76px; border: 2px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; cursor: pointer; font: inherit; color: var(--ink); padding: 6px 4px; }
.day__wd { font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--ink-2); }
.day__date { font-family: var(--display); font-size: 24px; font-weight: 700; line-height: 1; }
.day__mon { font-size: 12px; color: var(--ink-2); }
.day:hover { border-color: var(--green); }
.day[aria-checked="true"] { background: var(--green); border-color: var(--green); color: var(--white); }
.day[aria-checked="true"] .day__wd, .day[aria-checked="true"] .day__mon { color: var(--white); }
.day:disabled { background: var(--green-50); border-style: dashed; border-color: var(--line); color: #6b776f; cursor: not-allowed; text-decoration: line-through; }
.day-week { flex: none; align-self: stretch; display: flex; align-items: center; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; color: var(--ink-2); letter-spacing: .06em; text-transform: uppercase; padding: 0 2px; }

.times { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; border-radius: var(--radius-sm); }
.times[aria-invalid="true"] { outline: 2px solid var(--red); outline-offset: 4px; }
.times-wrap .field__hint, .times-wrap .field__err { margin-top: 10px; }
.time { min-height: 48px; border: 2px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--white); font: 600 17px var(--font); color: var(--ink); cursor: pointer; }
.time:hover:not(:disabled) { border-color: var(--green); }
.time[aria-checked="true"] { background: var(--green); border-color: var(--green); color: var(--white); }
.time:disabled { background: var(--green-50); color: #6b776f; border-color: var(--line); border-style: dashed; cursor: not-allowed; text-decoration: line-through; font-weight: 400; }

.grid2 { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .grid2 { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="password"],
.field input[type="number"], .field input[type="time"], .field input[type="date"] {
  width: 100%; min-height: 50px; padding: 12px 14px; font: 400 17px var(--font); color: var(--ink);
  border: 2px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--white); }
.field input:focus { border-color: var(--ink); outline: 3px solid var(--focus); outline-offset: 0; box-shadow: none; }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field__hint { font-size: 14px; color: var(--ink-2); margin: 6px 0 0; }
.field__err { font-size: 15px; color: var(--red); margin: 6px 0 0; font-weight: 600; }
.field__err::before { content: "! "; }
.req { color: var(--red); }
.field--check { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; margin-top: 8px; }
.field--check input { width: 24px; height: 24px; margin: 2px 0 0; accent-color: var(--green); }
.field--check label { font-weight: 400; font-size: 15px; margin: 0; }
.optional { margin: 4px 0 14px; }
.optional summary { cursor: pointer; font-weight: 600; color: var(--green-600); min-height: 44px; display: block; position: relative; padding: 10px 0 10px 34px; list-style: none; }
.optional summary::-webkit-details-marker { display: none; }
.optional summary::before { content: "+"; position: absolute; left: 0; top: 10px; width: 24px; height: 24px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: 18px; line-height: 1; }
.optional[open] summary::before { content: "–"; }
.optional[open] summary { margin-bottom: 8px; }
.privacy-hint { font-size: 14px; color: var(--ink-2); margin: 8px 0 0; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Mobil: kompakte Leiste (Termin + Button) klebt unten; bei offener Tastatur (Feld fokussiert) nicht. */
.summary { position: sticky; bottom: 0; z-index: 5; background: var(--white); margin: 0 -18px; padding: 10px 18px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; box-shadow: 0 -8px 20px rgba(20,40,28,.1); border-radius: 0 0 var(--radius) var(--radius); }
.card:has(.field input:focus) .summary { position: static; box-shadow: none; }
@media (min-width: 900px) { .summary { position: static; box-shadow: none; } } /* Desktop: genug Platz, kein Overlay */
@media (min-width: 640px) { .summary { margin: 0 -32px; padding: 18px 32px; flex-direction: row; align-items: center; justify-content: space-between; } }
.summary__text { font-weight: 600; font-size: 16px; line-height: 1.3; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 10px; min-width: 0; }
.summary__text small { font-weight: 400; font-size: 14px; color: var(--ink-2); }
@media (min-width: 640px) { .summary__text { display: block; } .summary__text small { display: block; } }
.summary__btn { width: 100%; min-height: 52px; }
@media (min-width: 640px) { .summary__btn { width: auto; flex: none; } }
.form-msg { margin: 0; font-weight: 600; color: #8a0c20; }
.form-msg:not(:empty) { margin: 8px 0 16px; padding: 14px 16px; border-radius: var(--radius-sm); background: #fdecee; border-left: 4px solid var(--red); }

.success { padding: 32px 4px 36px; text-align: center; }
.success:focus, .success:focus-visible { outline: none; box-shadow: none; }
.success__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 40px; display: grid; place-items: center; margin: 0 auto 14px; }
.success__title { font-size: clamp(32px, 9vw, 44px); text-transform: uppercase; color: var(--green-800); }
.success__details { display: grid; gap: 8px; text-align: left; max-width: 460px; margin: 18px auto; background: var(--green-50); padding: 16px 18px; border-radius: var(--radius-sm); }
.success__details div { display: grid; grid-template-columns: 96px 1fr; gap: 8px; }
.success__details dd { overflow-wrap: anywhere; }
.success__details dt { color: var(--ink-2); }
.success__details dd { margin: 0; font-weight: 600; }
.success__text { color: var(--ink-2); max-width: 460px; margin: 0 auto 20px; }
.success__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (max-width: 479px) { .success__actions .btn { width: 100%; } }

/* --- FAQ / Closing / Footer ------------------------------------------ */
.faq { padding-top: 56px; padding-bottom: 56px; max-width: 820px; }
.faq .section-title { text-align: center; }
.faq__list { margin-top: 20px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; }
.faq__item summary { cursor: pointer; padding: 16px 48px 16px 18px; font-weight: 600; font-size: 18px; list-style: none; position: relative; min-height: 56px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--green); font-weight: 400; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 18px 16px; margin: 0; color: var(--ink-2); }

.closing { background: var(--green-800); color: var(--white); text-align: center; padding: 56px 0; }
.closing__title { font-size: clamp(36px, 8vw, 60px); text-transform: uppercase; }
.closing__inner p { font-size: 18px; }
.closing__addr { margin-top: 24px; opacity: .9; font-size: 16px !important; }

.footer { background: var(--ink); color: #dfe6e1; padding: 32px 0 calc(32px + env(safe-area-inset-bottom)); font-size: 15px; }
.footer__inner { display: grid; gap: 16px; }
@media (min-width: 800px) { .footer__inner { grid-template-columns: 1fr auto auto; align-items: center; } }
.footer a { color: #fff; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer__nav a { min-height: 44px; display: inline-flex; align-items: center; }
.footer__muted { color: #a9b5ad; margin: 0; }

/* --- Einfache Inhaltsseiten ------------------------------------------ */
.page { padding: 48px var(--gutter) 64px; max-width: 820px; margin: 0 auto; }
.page h1 { font-size: clamp(40px, 9vw, 60px); text-transform: uppercase; color: var(--green-800); }
.page h2 { font-size: 28px; margin-top: 1.4em; color: var(--green-800); }
.page .box { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
@media (max-width: 479px) { .page .box { padding: 18px; } }
.page .box > :last-child { margin-bottom: 0; }
.page .box h2 { margin-top: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
@media (max-width: 479px) { .actions .btn { width: 100%; } }
.booking-facts { list-style: none; padding: 16px 18px; margin: 0 0 18px; background: var(--green-50); border-radius: var(--radius-sm); }
.booking-facts li + li { margin-top: 4px; }
.placeholder { background: #fff6d6; padding: 2px 6px; border-radius: 4px; }
