/* UNCHAIND — Reservation & Co-creation flow. Loads after colors_and_type.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--midnight-navy); color: var(--ivory); font-family: var(--font-body);
  -webkit-font-smoothing: antialiased; min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* top bar */
.bar { position: sticky; top: 0; z-index: 50; background: rgba(11,27,47,0.72); backdrop-filter: blur(14px); border-bottom: 1px solid var(--hairline); }
.bar-inner { max-width: 1080px; margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; }
.bar-inner img { height: 20px; }
.bar-step { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg3); }

/* progress */
.progress { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.progress-track { display: flex; gap: 8px; padding: 28px 0 0; }
.progress-seg { flex: 1; height: 3px; border-radius: 999px; background: var(--ivory-016); overflow: hidden; }
.progress-seg i { display: block; height: 100%; width: 0; background: var(--ice-blue); transition: width var(--dur-slow) var(--ease-out); }
.progress-seg.done i, .progress-seg.active i { width: 100%; }
.progress-labels { display: flex; gap: 8px; margin-top: 10px; }
.progress-labels span { flex: 1; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); transition: color var(--dur) var(--ease); }
.progress-labels span.active { color: var(--ivory); }

/* stage / steps */
.flow { max-width: 1080px; margin: 0 auto; padding: 56px 40px 120px; }
.step { display: none; }
.step.active { display: block; }

.eyebrow { display: inline-block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--ice-blue); margin-bottom: 16px; }
.step h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; max-width: 16ch; text-wrap: balance; }
.step .lede { font-size: 18px; line-height: 1.55; color: var(--fg2); max-width: 50ch; margin-top: 18px; }

/* step 1 — reserve */
.reserve-layout { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; align-items: center; margin-top: 40px; }
.product-photo {
  position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-matte); border: 1px solid var(--ivory-008); background: var(--deep-black);
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* forms */
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg3); font-weight: 600; }
.field .hint { font-size: 12px; color: var(--fg-muted); margin-top: -2px; }
.input, .select {
  background: var(--deep-black); border: 1px solid var(--hairline); border-radius: var(--radius-sm);
  color: var(--ivory); font-family: var(--font-body); font-size: 16px; padding: 15px 16px; width: 100%;
  transition: border-color var(--dur) var(--ease);
}
.input::placeholder { color: var(--fg-muted); }
.input:focus, .select:focus { outline: none; border-color: var(--ice-blue); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; border: none; white-space: nowrap; padding: 15px 28px; border-radius: var(--radius-sm); transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease), filter var(--dur) var(--ease); }
.btn-primary { background: var(--ivory); color: var(--deep-black); }
.btn-primary:hover { background: var(--ice-200); }
.btn-primary:active { transform: scale(0.985); }
.btn-ghost { background: transparent; color: var(--ivory); border: 1px solid var(--hairline-strong); }
.btn-ghost:hover { background: var(--ivory-008); border-color: var(--ivory-060); }
.btn-text { background: none; color: var(--fg2); padding: 15px 4px; }
.btn-text:hover { color: var(--ivory); }
.actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.actions .right { display: flex; gap: 14px; align-items: center; }
.fine { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin-top: 14px; }

/* survey questions */
.q { padding: 34px 0; border-top: 1px solid var(--hairline); }
.q:first-of-type { border-top: none; }
.q-head { display: flex; gap: 14px; align-items: baseline; margin-bottom: 20px; }
.q-num { font-family: var(--font-mono); font-size: 12px; color: var(--ice-blue); }
.q-title { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.q-sub { font-size: 14px; color: var(--fg3); margin-top: 4px; }

/* chip multi-select */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-btn {
  font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--fg2); background: transparent; border: 1px solid var(--hairline-strong); border-radius: 999px;
  padding: 11px 20px; cursor: pointer; transition: all var(--dur) var(--ease);
}
.chip-btn:hover { border-color: var(--ivory-060); color: var(--ivory); }
.chip-btn[aria-pressed="true"] { background: var(--ivory); color: var(--deep-black); border-color: transparent; }

/* segmented */
.seg { display: inline-flex; border: 1px solid var(--hairline); border-radius: var(--radius-sm); overflow: hidden; flex-wrap: wrap; }
.seg button { background: transparent; color: var(--fg2); border: none; border-right: 1px solid var(--hairline); padding: 14px 24px; font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.seg button:last-child { border-right: none; }
.seg button:hover { color: var(--ivory); }
.seg button[aria-pressed="true"] { background: var(--ivory); color: var(--deep-black); }

/* slider */
.slider-wrap { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.slider-val { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg3); }
.slider-val b { color: var(--ivory); font-weight: 600; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 3px; border-radius: 999px; background: var(--ivory-016); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--ivory); cursor: pointer; border: 4px solid var(--midnight-navy); box-shadow: 0 0 0 1px var(--ivory-040); transition: background var(--dur) var(--ease); }
input[type=range]::-webkit-slider-thumb:hover { background: var(--ice-blue); }
input[type=range]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--ivory); cursor: pointer; border: none; }
.scale-ends { display: flex; justify-content: space-between; font-size: 11px; color: var(--fg-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* thank-you */
.thanks { text-align: center; max-width: 640px; margin: 40px auto 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.thanks .mono-mark { width: 64px; opacity: 0.7; margin-bottom: 8px; }
.thanks h1 { max-width: none; }
.confirm-card { width: 100%; max-width: 460px; margin-top: 16px; padding: 24px; border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--surface); text-align: left; }
.confirm-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--hairline); font-size: 14px; }
.confirm-row:first-child { border-top: none; }
.confirm-row span { color: var(--fg3); }
.confirm-row b { font-weight: 600; }
.legal { font-size: 12px; line-height: 1.6; color: var(--fg-muted); max-width: 60ch; margin-top: 8px; }

@media (max-width: 820px) {
  .bar-inner, .progress, .flow { padding-left: 24px; padding-right: 24px; }
  .reserve-layout { grid-template-columns: 1fr; gap: 36px; }
  .reserve-layout .product-photo { max-width: 320px; order: -1; }
  .progress-labels span { font-size: 0; }
  .progress-labels span.active { font-size: 10px; }
}

/* ============================================================
   DIRECTION C — dedicated €1 checkout step
   ============================================================ */
.checkout { display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: start; margin-top: 12px; }
.checkout-intro { display: flex; flex-direction: column; }
.checkout-intro h1 { max-width: 14ch; }

/* order summary panel */
.summary {
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(157,187,212,0.06), transparent 55%), var(--surface);
  padding: 28px; box-shadow: var(--shadow-md);
  position: sticky; top: 96px;
}
.summary-prod { display: flex; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--hairline); }
.summary-thumb { width: 66px; height: 66px; flex: none; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--ivory-008); background: var(--deep-black); }
.summary-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.summary-prod .sp-k { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice-blue); margin-bottom: 5px; }
.summary-prod .sp-v { font-size: 17px; font-weight: 600; }
.summary-prod .sp-s { font-size: 12px; color: var(--fg3); margin-top: 3px; }

.summary-line { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.summary-line .sl-k { font-size: 14px; color: var(--fg2); }
.summary-line .sl-sub { display: block; font-size: 11px; color: var(--fg-muted); margin-top: 4px; max-width: 30ch; line-height: 1.4; }
.summary-line .sl-v { font-size: 15px; font-weight: 600; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 4px; }
.summary-total .st-k { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg3); }
.summary-total .st-v { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.summary-total .st-v::before { content: "€"; font-size: 17px; vertical-align: super; color: var(--ice-blue); margin-right: 1px; }
.credit { color: var(--ice-blue); }

/* loud, prominent disclaimer — claim-safety front and centre */
.disclaimer {
  margin-top: 20px; padding: 16px 18px;
  border: 1px solid var(--ice-600); border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(157,187,212,0.08), transparent 70%);
  display: flex; gap: 12px; align-items: flex-start;
}
.disclaimer .di-mark { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--ice-blue); color: var(--ice-blue); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.disclaimer p { font-size: 12.5px; line-height: 1.55; color: var(--fg2); }
.disclaimer b { color: var(--ivory); font-weight: 600; }

/* trust micro-row under the form */
.assurances { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 24px; }
.assurance { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--fg2); }
.assurance .ic { width: 7px; height: 7px; border-radius: 50%; background: var(--ice-600); flex: none; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 820px) {
  .checkout { grid-template-columns: 1fr; gap: 32px; }
  .summary { position: static; order: -1; }
  .field-row { grid-template-columns: 1fr; }
}

/* canonical positioning line — subtle, trust-focused */
.position-line { font-size: 12.5px; line-height: 1.5; letter-spacing: 0.02em; color: var(--fg3); margin-top: 16px; max-width: 54ch; }
.position-line b { color: var(--fg2); font-weight: 600; }

/* thank-you → survey invitation block */
.ty-next {
  width: 100%; max-width: 460px; margin-top: 6px;
  border: 1px solid var(--ice-600); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(157,187,212,0.08), transparent 70%);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.ty-next-copy { font-size: 14px; line-height: 1.55; color: var(--fg2); margin: 0; }
