/* Sävedalens Folkets hus – bokning */

.booking { padding-bottom: 0; }
.booking-head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 56px); }
.booking-head .eyebrow { margin-bottom: 14px; }
.booking-lede { color: var(--ink-2); font-size: 17px; margin: 18px 0 0; }

.progress {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  font: 500 12px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.progress li { display: flex; align-items: center; gap: 10px; }
.progress li span {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; letter-spacing: 0;
}
.progress li.is-active { color: var(--ink); }
.progress li.is-active span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.progress li.is-done { color: var(--ink-2); }
.progress li.is-done span { border-color: var(--ink); }

.booking-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(32px, 5vw, 80px); align-items: start; }

/* Calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-title { font-size: clamp(1.7rem, 2.4vw, 2.2rem); }
.cal-nav {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: none;
  font-size: 18px; display: grid; place-items: center; transition: background .25s, border-color .25s;
}
.cal-nav:not(:disabled):hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-note { margin: 0 0 16px; padding: 12px 16px; background: var(--paper-2); font-size: 14px; color: var(--ink-2); }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.cal-weekdays span { padding: 0 0 10px 10px; font: 500 11px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cal-grid { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
/* Medan husets data hämtas från servern */
.sfh-loading .cal-grid:empty { min-height: 264px; place-items: center; }
.sfh-loading .cal-grid:empty::before { content: "Hämtar lediga tider…"; grid-column: 1 / -1; font-size: 14px; color: var(--muted); animation: sfh-pulse 1.4s ease-in-out infinite; }
.sfh-loading .ways:empty { min-height: 120px; }
@keyframes sfh-pulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
/* Dolt fält mot robotar */
.hp { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.day {
  position: relative; min-height: 88px; padding: 10px;
  border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: none; text-align: left; color: inherit;
  display: flex; flex-direction: column; justify-content: space-between; gap: 6px;
  transition: background .25s, color .25s;
}
.day:not(:disabled):hover { background: var(--paper-2); }
.day-num { font-family: var(--font-display); font-size: 1.3rem; line-height: 1; }
.day-info { font-size: 11.5px; line-height: 1.3; color: var(--ink-2); }
.day.is-empty { pointer-events: none; }
.day.is-past, .day.is-off { color: var(--muted); opacity: .4; }

/* Ledigt / delvis / bokat – tydligt även utan färgseende */
.day-rows { display: flex; flex-wrap: wrap; gap: 4px; }
.day-rows i {
  font: 500 10px/1 var(--font-body); font-style: normal; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 7px 3px; border-radius: 999px; border: 1px solid transparent; white-space: nowrap;
}
.day-rows i.ok { color: #2f6b45; background: rgba(63, 138, 90, .12); border-color: rgba(63, 138, 90, .3); }
.day-rows i.no { color: var(--muted); background: rgba(0, 0, 0, .04); border-color: var(--line); text-decoration: line-through; text-decoration-thickness: 1px; }
.day.is-full {
  background: repeating-linear-gradient(135deg, transparent 0 7px, rgba(28, 27, 29, .045) 7px 8px);
  color: var(--muted);
}
.day.is-full .day-num { text-decoration: line-through; text-decoration-thickness: 1px; }
.day.is-full .day-info {
  align-self: flex-start; font: 600 10px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); padding: 4px 7px 3px; border: 1px solid rgba(150, 30, 28, .35); border-radius: 999px; background: #fff;
}
.day.is-event .day-info { color: var(--red); font-family: var(--font-display); font-style: italic; font-size: 13px; }
.day.is-today .day-num::after {
  content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); margin: 0 0 8px 6px; vertical-align: middle;
}
.day.is-selected, .day.is-selected:hover { background: var(--ink); color: var(--paper); }
.day.is-selected .day-info { color: rgba(243, 238, 228, .75); }
.day.is-selected .day-rows i.ok { color: var(--paper); background: rgba(63, 138, 90, .55); border-color: transparent; }
.day.is-selected .day-rows i.no { color: rgba(243, 238, 228, .55); background: rgba(243, 238, 228, .08); border-color: rgba(243, 238, 228, .2); }
.day:disabled { cursor: default; }

.cal-legend { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 14px; font-size: 12px; color: var(--muted); }
.lg { display: inline-flex; align-items: center; gap: 8px; }
.lg::before { content: ""; width: 12px; height: 12px; border-radius: 3px; border: 1px solid rgba(63, 138, 90, .5); background: rgba(63, 138, 90, .14); }
.lg-partial::before { background: linear-gradient(90deg, rgba(63, 138, 90, .14) 50%, rgba(0, 0, 0, .06) 50%); border-color: var(--ink-2); }
.lg-full::before { background: repeating-linear-gradient(135deg, transparent 0 3px, rgba(28, 27, 29, .25) 3px 4px); border-color: var(--muted); }
.lg-event::before { border-color: var(--red); background: transparent; border-radius: 50%; width: 8px; height: 8px; }

/* Slots */
.slots { margin-top: clamp(32px, 4vw, 48px); }
.slots h3 { margin-bottom: 16px; }
.slots-date { color: var(--muted); font-style: italic; font-weight: 300; }
.slot-list { display: grid; }
.slot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; text-align: left; padding: 20px 22px; margin-top: -1px;
  border: 1px solid var(--line); background: none; color: inherit;
  transition: background .25s, color .25s, border-color .25s;
}
.slot:not(:disabled):hover { background: var(--paper-2); }
.slot-main b { display: block; font: 500 17px/1.3 var(--font-body); }
.slot-main span { font-size: 13px; color: var(--muted); }
.slot-price { font-family: var(--font-display); font-size: 1.35rem; white-space: nowrap; }
.slot.is-selected { background: var(--ink); color: var(--paper); border-color: var(--ink); position: relative; z-index: 1; }
.slot.is-selected .slot-main span { color: rgba(243, 238, 228, .7); }
.slot:disabled { color: var(--muted); cursor: default; }
.slot:disabled .slot-price { font: 500 11px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.slots-note { margin: 16px 0 0; font-size: 13px; color: var(--muted); }

/* Vardagar: kryssrutor för dag och kväll – båda ger rabatt */
.slot-multi .slot-main { flex: 1; }
.slot-check {
  flex: none; width: 20px; height: 20px; border: 1.5px solid var(--ink-2); border-radius: 4px; position: relative;
  transition: background .2s, border-color .2s;
}
.slot-multi:disabled .slot-check { border-color: var(--line); }
.slot.is-selected .slot-check { background: var(--paper); border-color: var(--paper); }
.slot.is-selected .slot-check::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid var(--ink); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.combo-note { margin: 12px 0 0; padding: 12px 16px; font-size: 13.5px; color: var(--ink-2); background: var(--paper-2); border-left: 3px solid var(--line); }
.combo-note.is-on { border-left-color: #3f8a5a; background: rgba(63, 138, 90, .1); color: var(--ink); }

/* Flera tillfällen: lägg till, samma tid varje vecka, och listan över bokningen */
.cart-add { margin-top: 20px; display: grid; gap: 16px; }
.cart-add > .btn { justify-self: start; }
.cart-repeat { display: grid; gap: 8px; }
.cart-repeat label { font: 500 12px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cart-repeat-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cart-repeat select {
  flex: 1; min-width: 0; font: 400 15px var(--font-body); color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); background: #faf7f1; border-radius: 0;
}
.cart-repeat select:focus { outline: 2px solid var(--ink); outline-offset: 0; border-color: var(--ink); }
.cart-hint { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; max-width: 62ch; }
.cart { margin-top: clamp(32px, 4vw, 48px); }
.cart h3 { margin-bottom: 14px; }
.cart-count { color: var(--muted); font-style: italic; font-weight: 300; }
.cart-msg { margin: 0 0 14px; padding: 12px 16px; font-size: 14px; line-height: 1.45; color: var(--ink); background: rgba(63, 138, 90, .1); border-left: 3px solid #3f8a5a; }
.cart-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.cart-list li { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.cart-when { flex: 1; min-width: 0; }
.cart-when b { font-weight: 500; margin-right: 4px; }
.cart-when i { font-style: normal; font: 500 10px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-left: 4px; }
.cart-price { font-family: var(--font-display); white-space: nowrap; }
.cart-remove {
  flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: none;
  color: var(--ink-2); font-size: 18px; line-height: 1; transition: background .2s, color .2s, border-color .2s;
}
.cart-remove:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cart-foot { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.day.in-cart { box-shadow: inset 0 0 0 2px var(--ink); }
.day.in-cart::before {
  content: "✓"; position: absolute; top: 8px; right: 8px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); color: var(--paper); font: 600 11px/18px var(--font-body); text-align: center;
}
.day.in-cart.is-full { background: rgba(28, 27, 29, .05); color: var(--ink); }
.day.in-cart.is-full .day-num { text-decoration: none; }
.day.in-cart.is-full .day-info { color: var(--ink); border-color: var(--ink); }
.day.in-cart.is-selected::before { background: var(--paper); color: var(--ink); }
.lg-cart::before { background: transparent; border: 2px solid var(--ink); }
.summary s.muted { font-size: .85em; margin-right: 6px; }

/* Summary */
.summary { position: sticky; top: 92px; }
.summary-card { border: 1px solid var(--line); background: #faf7f1; }
.summary-media { aspect-ratio: 16 / 9; overflow: hidden; }
.summary-media img { width: 100%; height: 100%; object-fit: cover; }
.summary-body { padding: 24px; }
.summary-body .eyebrow { margin-bottom: 8px; }
.summary-room { font-size: 1.8rem; margin-bottom: 18px; }
.summary-rows { margin: 0; }
.summary-rows div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; }
.summary-rows dt { color: var(--muted); }
.summary-rows dd { margin: 0; text-align: right; }
.addon { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; cursor: pointer; }
.addon input { width: 18px; height: 18px; accent-color: var(--red); margin: 0; }
.addon b { margin-left: auto; font-weight: 500; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 20px; border-top: 1px solid var(--ink); }
.summary-total b { font-family: var(--font-display); font-weight: 400; font-size: 2rem; line-height: 1; }
.summary-fee { margin: -8px 0 18px; font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.sum-items { border-top: 1px solid var(--line); padding: 12px 0; font-size: 14px; }
.sum-items summary { cursor: pointer; color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.sum-items ul { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; max-height: 240px; overflow-y: auto; }
.sum-items li { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-2); }
.btn-block { width: 100%; justify-content: center; padding: 18px 24px; }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.includes { list-style: none; padding: 0; margin: 22px 0 0; font-size: 13.5px; color: var(--ink-2); display: grid; gap: 6px; }
.includes li::before { content: "— "; color: var(--muted); }
.summary-note { margin: 18px 0 0; font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Form */
.back { background: none; border: 0; padding: 0; margin-bottom: 26px; font: 500 14px var(--font-body); color: var(--ink-2); }
.back:hover { text-decoration: underline; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-top: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; margin-top: 0; }
.field label { font: 500 12px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field select, .field textarea {
  font: 400 16px var(--font-body); color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); background: #faf7f1; border-radius: 0; width: 100%;
}
.field textarea { resize: vertical; }
.field :is(input, select, textarea):focus { outline: 2px solid var(--ink); outline-offset: 0; border-color: var(--ink); }
.field .is-invalid { border-color: var(--red); }
.field small { font-size: 12px; color: var(--muted); }
.check {
  grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); cursor: pointer;
  padding: 14px 16px; border: 1px solid var(--line); background: var(--paper-2); transition: border-color .25s, background .25s;
}
.check input { width: 18px; height: 18px; accent-color: var(--red); margin: 2px 0 0; flex: none; }
.check.is-invalid { border-color: var(--red); background: rgba(150, 30, 28, .06); }
.check-error { grid-column: 1 / -1; display: none; margin: -8px 0 0; font-size: 13px; color: var(--red); }
.check.is-invalid + .check-error { display: block; }
.u { text-decoration: underline; }
.form-actions { grid-column: 1 / -1; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.form-hint { font-size: 13px; color: var(--muted); max-width: 34ch; }

/* Confirmation */
.confirm-head { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.confirm-ref { margin: 0 0 16px; font: 500 12px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.confirm h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); margin-bottom: 18px; }
.confirm-lede { color: var(--ink-2); max-width: 56ch; margin: 0; }
.keycard { margin: 40px 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); }
.keycard-left { background: var(--ink); color: var(--paper); padding: 32px; }
.keycard-left .eyebrow { color: rgba(243, 238, 228, .55); }
.keycode { font-family: var(--font-display); font-size: clamp(2.6rem, 4.6vw, 4.2rem); letter-spacing: .14em; line-height: 1; margin: 18px 0 14px; }
.keyvalid { margin: 0; font-size: 14px; color: rgba(243, 238, 228, .75); }
.keycard-right { padding: 32px; display: grid; gap: 18px; align-content: start; }
.keycard-right p { margin: 0; color: var(--ink-2); font-size: 15px; }
.keycard-right .btn { justify-self: start; }
.access-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.access-step b { display: block; font-family: var(--font-display); font-weight: 300; font-size: 2.6rem; line-height: 1; color: var(--red); margin-bottom: 12px; }
.access-step h4 { font: 500 16px var(--font-body); margin-bottom: 6px; }
.access-step p { margin: 0; font-size: 14px; color: var(--ink-2); }
.confirm-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.confirm-sum { margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.confirm-sum h4 { font: 500 12px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.confirm-sum p { margin: 0; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.3; }

/* Stegväxling */
.step-panel { transition: opacity .35s var(--ease), transform .35s var(--ease); }
.step-panel.is-leaving { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.step-panel.is-entering { opacity: 0; transform: translateY(18px); transition: none; }
.booking-head h1, .booking-head .booking-lede { transition: opacity .3s var(--ease), transform .3s var(--ease); }
.booking-head.is-leaving h1, .booking-head.is-leaving .booking-lede { opacity: 0; transform: translateY(-6px); }
body.step-2 #continueBtn, body.step-3 #continueBtn { display: none; }
body.step-4 .booking-grid { grid-template-columns: 1fr; }
body.way-custom .progress { display: none; }
body.step-3 .addon { pointer-events: none; opacity: .7; }

/* Gästantal */
.hint { min-height: 1.2em; color: var(--ink-2) !important; transition: color .3s; }
.hint.is-warn { color: var(--red) !important; }

/* Betalning */
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0 18px; }
.pay-method {
  text-align: left; padding: 16px 18px; border: 1px solid var(--line); background: none; color: inherit;
  display: grid; gap: 4px; transition: border-color .3s, box-shadow .3s, opacity .3s;
}
.pay-method b { font: 500 16px var(--font-body); }
.pay-method span { font-size: 12.5px; color: var(--muted); }
.pay-method:not(:disabled):hover { border-color: var(--ink-2); }
.pay-method.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pay-method:disabled { opacity: .4; cursor: not-allowed; }
.pay-card { border: 1px solid var(--line); background: #faf7f1; padding: clamp(20px, 3vw, 32px); display: grid; gap: 22px; }
.pay-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.pay-amount { display: grid; gap: 6px; }
.pay-amount .eyebrow { margin: 0; }
.pay-amount b { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; }
.pay-amount small { font-size: 13px; color: var(--muted); }
.swish-mark { font: 700 italic 24px var(--font-body); letter-spacing: -.03em; color: var(--ink); line-height: 1; padding-top: 4px; }
.card-marks { font: 600 11px var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 8px; }
.pay-alt, .pay-text { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.pay-text { font-size: 15px; color: var(--ink-2); }
.pay-error { margin: 0; padding: 10px 14px; border-left: 3px solid var(--red); background: rgba(150, 30, 28, .06); font-size: 14px; color: var(--ink); line-height: 1.45; }
.pay-note { margin: 0; padding: 10px 14px; border-left: 3px solid var(--ink-2); background: var(--paper-2); font-size: 14px; color: var(--ink); line-height: 1.45; }
.pay-amount s { font-size: .5em; color: var(--muted); margin-right: .2em; vertical-align: middle; }
.promo { display: grid; gap: 8px; }
.promo label { font: 500 12px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.promo .opt { text-transform: none; letter-spacing: 0; font-weight: 400; }
.promo-row { display: flex; gap: 10px; }
.promo-row input {
  flex: 1; min-width: 0; font: 400 16px var(--font-body); color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); background: #fff; border-radius: 0;
}
.promo-row input:focus { outline: 2px solid var(--ink); outline-offset: 0; border-color: var(--ink); }
.promo-row input.is-invalid { border-color: var(--red); }
.promo-row input[readonly] { background: var(--paper-2); color: var(--ink-2); }
.promo-row .btn { flex: none; }
.promo-msg { margin: 0; font-size: 13px; color: var(--ink-2); }
.promo-msg.is-bad { color: var(--red); }
.pay-card.is-waiting { grid-template-columns: 220px 1fr; align-items: center; gap: 32px; }
.pay-qr { background: #fff; padding: 12px; border: 1px solid var(--line); }
.pay-qr svg { display: block; width: 100%; height: auto; fill: var(--ink); }
.pay-wait { display: grid; gap: 12px; justify-items: start; }
.pay-wait p { margin: 0; color: var(--ink-2); font-size: 15px; max-width: 42ch; }
.pay-wait .h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
.nowrap { white-space: nowrap; }
.pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--red); position: relative; margin: 6px 0 2px 6px; }
.pulse::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid var(--red);
  animation: pulse 1.4s ease-out infinite;
}
@keyframes pulse { from { transform: scale(.5); opacity: 1 } to { transform: scale(1.7); opacity: 0 } }
.link-btn { background: none; border: 0; padding: 0; font: 500 14px var(--font-body); color: var(--ink-2); text-decoration: underline; }
.only-mobile { display: none; }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-grid .full { grid-column: 1 / -1; }
.pay-done { text-align: center; padding: 40px 20px 32px; display: grid; gap: 10px; justify-items: center; }
.pay-done p { margin: 0; color: var(--muted); }
.pay-done svg { width: 76px; height: 76px; stroke: var(--red); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pay-done circle { stroke-dasharray: 190; stroke-dashoffset: 190; animation: draw .7s var(--ease) forwards; }
.pay-done path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .45s .55s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0 } }

/* Bekräftelse: verktyg */
.confirm-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.tool h4 { font: 500 12px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.tool p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; color: var(--ink-2); }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; width: 13px; height: 13px; border: 1px solid var(--ink-2); flex: none; margin-top: 4px; }

/* Mobile bar */
.mobile-bar { display: none; }

@media (max-width: 1100px) {
  .booking-grid { grid-template-columns: minmax(0, 1fr) 320px; }
}

@media (max-width: 900px) {
  body.step-1.has-selection { padding-bottom: 96px; }
  .booking-grid { grid-template-columns: 1fr; }
  .summary { display: none; }
  body.step-2 .summary, body.step-3 .summary { display: block; position: static; order: -1; }
  body.step-3 .summary-media, body.step-3 .includes, body.step-3 .summary-note { display: none; }
  .pay-methods { grid-template-columns: 1fr; }
  .pay-card.is-waiting { grid-template-columns: 1fr; }
  .pay-qr { display: none; }
  .only-mobile { display: inline-flex; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .confirm-tools { grid-template-columns: 1fr; gap: 28px; }
  .day { min-height: 60px; padding: 8px; }
  .day-num { font-size: 1.1rem; }
  .day-info { display: none; }
  .day .day-rows { display: flex; gap: 3px; }
  .day-rows i { font-size: 0; width: 7px; height: 7px; padding: 0; border-radius: 50%; }
  .day-rows i.ok { background: #3f8a5a; border-color: #3f8a5a; }
  .day-rows i.no { background: transparent; border-color: var(--muted); }
  .day.is-event::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: transparent; border: 1px solid var(--red); }
  .day.is-selected::after { border-color: var(--paper); }
  .day.in-cart::before { top: 4px; right: 4px; width: 14px; height: 14px; font-size: 9px; line-height: 14px; }
  .cal-legend { gap: 14px; }
  .form { grid-template-columns: 1fr; }
  .keycard, .access-steps, .confirm-sum { grid-template-columns: 1fr; }
  body.step-1.has-selection .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--ink); color: var(--paper);
    padding: 14px var(--gutter); gap: 16px; align-items: center; justify-content: space-between;
  }
  .mobile-bar-text { font-size: 14px; line-height: 1.35; }
  .mobile-bar .btn { flex: none; padding: 13px 20px; }
  body.step-2 .mobile-bar .btn, body.step-3 .mobile-bar .btn, body.step-4 .mobile-bar { display: none; }
}

@media (max-width: 480px) {
  .progress { gap: 14px 18px; }
  .progress li { gap: 8px; }
}
