/* Downtown Barber — /book. Phone first (most clients book on their phone), then tablet, then desktop. Layout and copy
   follow design/booking-prototype; tokens, fonts and breakpoints are the site's (assets/css/style.css: mobile ≤767,
   tablet 768–1199, desktop ≥1200; tablet landscape is the tablet band under 900px tall, as in
   design/MOBILE-TABLET-HERO.md). Only the site header is sticky: 111px on phones, 103 on tablets, 142 on desktop. */

.booking { padding: 0 0 48px; }
.booking [hidden] { display: none !important; }   /* the hidden attribute wins over display: flex on the button rows */
.booking.no-progress { padding-top: 28px; }        /* progress bar hidden (canceled, rescheduled, moving): clear of the header */
.book-wrap { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 16px; }

/* ---------- Progress: phone shows small dots and "Step 3 of 5: Date and time"; wider screens the labelled rail ---------- */
.book-progress { background: #fff; border-bottom: 1px solid var(--line); margin-bottom: 14px; padding: 8px 16px 10px; }
.book-progress ol { list-style: none; margin: 0 auto; padding: 0; max-width: 640px; display: flex; justify-content: center; gap: 8px; }
.book-progress li { display: flex; flex-direction: column; align-items: center; position: relative; color: var(--muted); }
.book-progress .dot { width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid #b9ab98; box-sizing: border-box; }
.book-progress li.done .dot, .book-progress li.current .dot { background: var(--burgundy); border-color: var(--burgundy); }
.book-progress li.current .dot { box-shadow: 0 0 0 3px var(--cream-2); }
.book-progress .lbl { display: none; }
/* Phone: "Step 3 of 5: Date and time", 15px, the step name bold, dark brown, one line at 360px wide */
.book-step { margin: 6px 0 0; text-align: center; font-size: 15px; line-height: 1.3; letter-spacing: 0.01em; color: var(--brown); white-space: nowrap; }
.book-step strong { font-weight: 700; }

/* ---------- Screens ---------- */
.book-back {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; margin: 0 0 2px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.book-back::before { content: "\2039"; font-size: 20px; line-height: 1; }
.book-title {
  font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: -0.01em;
  color: var(--brown); margin-bottom: 14px; scroll-margin-top: 120px;
}
.book-title:focus { outline: none; }
.book-loading, .book-checking, .book-none { color: var(--muted); font-weight: 700; margin: 6px 0 14px; }
.book-hint { margin: -4px 0 12px; color: var(--muted); font-size: 15px; }
/* Screen 1: "Client account login ↗", its own right-aligned line above the back link. Fine print (13px phone, 14 tablet,
   15 desktop), dark brown, underlined; the link's 44px tap height comes from invisible padding, not a bigger line, and
   the negative top margin lets that padding sit in the gap under the progress bar. */
.book-account { display: flex; justify-content: flex-end; margin: -10px 0 0; }
.book-account a {
  display: inline-flex; align-items: center; gap: 3px; min-height: 44px; padding: 0 2px;
  color: var(--brown); font-size: 13px; line-height: 1.3; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap;
}
.book-opt { font-weight: 400; color: var(--muted); font-size: 13px; text-transform: none; letter-spacing: 0; }

/* ---------- Tiles: services, barbers. White card, soft shadow, burgundy chevron on the right; whole tile is the button ---------- */
.book-rows { display: flex; flex-direction: column; gap: 10px; }
.book-row {
  width: 100%; text-align: left; background: #fff; border: 1px solid #cbbfae; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(46, 26, 18, 0.08);
  padding: 14px 52px 14px 16px; color: var(--text); position: relative; min-height: 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.book-row strong { color: var(--brown); font-size: 17px; line-height: 1.25; }
.book-row span { font-size: 14px; line-height: 1.4; }
.book-row .book-price { font-weight: 700; font-size: 15px; color: var(--burgundy); }   /* under the name, before the description */
.book-addon .book-price { margin-left: auto; padding-left: 10px; font-weight: 700; color: var(--burgundy); white-space: nowrap; }
.book-row::after {                              /* a chevron drawn from two borders, no glyph and no circle */
  content: ""; position: absolute; right: 22px; top: 50%; width: 14px; height: 14px;
  border-top: 3.5px solid var(--burgundy); border-right: 3.5px solid var(--burgundy); border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}
.book-row:active { transform: scale(0.99); background: var(--cream); }

/* ---------- Summary card: phone reads as one or two lines with Change; wider screens show label-over-value cells ---------- */
.book-summary {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--burgundy); border-radius: 6px;
  padding: 10px 76px 10px 14px; margin-bottom: 14px; position: relative;
  display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 6px; row-gap: 2px;
}
.book-summary:empty { display: none; }
.book-summary .k { display: none; }
.book-summary .v { color: var(--brown); font-weight: 700; font-size: 16px; line-height: 1.35; }
.book-summary .with .v::before { content: "with "; font-weight: 400; color: var(--text); }
.book-summary .when, .book-summary .addons { flex-basis: 100%; }
.book-summary .when .v { font-weight: 400; color: var(--text); }
.book-summary .addons .v { font-weight: 400; color: var(--text); font-size: 14px; }
.book-summary .addons .v::before { content: "Add-ons: "; }
.book-summary .change {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%); min-height: 44px; padding: 0 6px;
  display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
/* Moving an appointment: a Current row, and "Change barber" on its own line on phones (it is wider than "Change") */
.book-summary.moving { padding-right: 14px; }
.book-summary.moving .change { position: static; transform: none; flex-basis: 100%; min-height: 36px; padding: 0; margin-top: 2px; }
.book-summary .current { flex-basis: 100%; }
.book-summary .current .v { font-weight: 400; color: var(--text); }
.book-summary .current .v::before { content: "Current: "; }
.book-nowrap { white-space: nowrap; }             /* "(+ $2.00)" stays on one line everywhere a price shows */

/* ---------- Notices and inline errors ---------- */
.book-notice {
  background: #fbede9; border: 1px solid #e6b8ae; color: #a8321e; border-radius: 6px;
  padding: 12px 14px; margin-bottom: 14px; font-weight: 700; scroll-margin-top: 120px;
}
.book-err { margin: 0; font-size: 14px; font-weight: 700; color: #a8321e; }
.book-err:empty { display: none; }
/* The fallback link inside a notice, the no-times line or the calendar status: same color as the text, underlined so it reads as a link */
.book-notice a, .book-none a, .book-cal-note a { color: inherit; text-decoration: underline; }
/* Failed load (services, or dates and times): a card in place of the list or the calendar, with Try again, the phone number
   and the Acuity fallback link. Never an empty list or a grayed-out calendar. */
.book-load-error { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px 16px; margin-bottom: 14px; text-align: center; }
.book-load-error p { margin: 0 0 14px; font-size: 17px; font-weight: 700; color: var(--brown); line-height: 1.3; }
.book-load-error .btn { width: 100%; height: auto; min-height: 48px; padding: 10px 24px; }
/* The two other ways out, as large as the message and easy to tap: tap-to-call, then Acuity's page (Nat, 2026-09-12) */
.book-load-links { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-top: 12px; }
.book-load-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 10px; font-size: 17px; font-weight: 700; line-height: 1.3; }
.book-load-error .book-load-offline { font-size: 14px; font-weight: 400; color: var(--muted); margin-bottom: 6px; }   /* only when the browser also reports offline */
.book-load-error a { color: var(--burgundy); text-decoration: underline; }

/* ---------- Add-ons: tappable cards with a clear checked state ---------- */
/* Its own section: the site's cream-2 behind the cards (a touch darker than the page). The legend floats so the
   fieldset's background covers it too (a fieldset otherwise paints from the legend's middle). */
.book-addons { border: 0; padding: 10px 12px 12px; margin: 0 0 14px; min-width: 0; background: var(--cream-2); border-radius: 8px; }
.book-addons legend { float: left; width: 100%; font-size: 17px; font-weight: 700; color: var(--brown); padding: 0; margin-bottom: 8px; }
.book-addon-grid { display: grid; grid-template-columns: 1fr; gap: 8px; clear: both; }
.book-addon {
  display: flex; gap: 12px; align-items: center; min-height: 48px; padding: 10px 14px; cursor: pointer;
  background: #fff; border: 1px solid #cbbfae; border-radius: 8px; box-shadow: 0 2px 8px rgba(46, 26, 18, 0.06);
}
.book-addon input { width: 24px; height: 24px; margin: 0; accent-color: var(--burgundy); flex: none; }
.book-addon span { font-size: 16px; line-height: 1.35; font-weight: 700; color: var(--brown); }
.book-addon.checked { border-color: var(--burgundy); box-shadow: inset 0 0 0 1px var(--burgundy); background: #fdf8f4; }
.book-addon:active { background: var(--cream); }

/* ---------- Checkboxes on the form ---------- */
.book-check { display: flex; gap: 12px; align-items: flex-start; min-height: 44px; padding: 8px 0; cursor: pointer; }
.book-check input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--burgundy); flex: none; }
.book-check span { font-size: 16px; line-height: 1.4; }
.book-consent span { font-size: 14px; color: var(--muted); }
.book-must span { font-weight: 700; color: var(--brown); }

/* ---------- Calendar and times ---------- */
.book-cal { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px 10px 8px; margin-bottom: 14px; }
.book-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.book-cal-head h2 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brown); }
.book-cal-nav { width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 50%; font-size: 26px; line-height: 1; color: var(--burgundy); }
.book-cal-nav[disabled] { color: var(--line); cursor: default; }
.book-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.book-cal-dow span { text-align: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 4px 0; }
.book-day {
  aspect-ratio: 1; min-height: 44px; border-radius: 50%; font-size: 16px; font-weight: 700; color: var(--brown);
  display: flex; align-items: center; justify-content: center;
}
.book-day[disabled] { color: #c4b9a9; cursor: default; font-weight: 400; }
.book-day.today { box-shadow: inset 0 0 0 1px var(--line); }
.book-day.selected { background: var(--burgundy); color: #fff; }
@media (max-width: 359px) {                        /* 320px phones: seven 44px days do not fit; 37px days, still tappable */
  .book-cal { padding: 8px 8px 6px; }
  .book-day { min-height: 36px; }
}
/* The note in the calendar box, in the day grid's place: checking, still checking, or no open days (with a jump to the next month).
   A month is never a silent gray grid: real open days, this note, or the failed-load card. */
.book-cal-note { min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; padding: 12px 8px; font-size: 15px; font-weight: 700; color: var(--brown); line-height: 1.35; }
.book-cal-note:empty { display: none; }
.book-cal-jump { background: none; border: 0; padding: 8px 10px; min-height: 44px; font: inherit; font-weight: 700; color: var(--burgundy); text-decoration: underline; cursor: pointer; }
.book-times { scroll-margin-top: 120px; }
.book-times h2 { font-size: 17px; font-weight: 700; color: var(--brown); margin-bottom: 10px; }
.book-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.book-time { min-height: 46px; background: #fff; border: 1px solid #cbbfae; border-radius: 8px; font-weight: 700; font-size: 16px; color: var(--brown); }
.book-time:active { background: var(--cream); }
.book-time.selected { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }

/* ---------- Form ---------- */
.book-form { display: flex; flex-direction: column; gap: 14px; }
.book-required-note { margin: -4px 0 -6px; font-size: 13px; color: var(--muted); }
.book-star { color: #a8321e; font-weight: 700; }
.book-field { display: flex; flex-direction: column; gap: 6px; scroll-margin-top: 124px; }
.book-field > label { font-weight: 700; color: var(--brown); font-size: 15px; letter-spacing: 0.04em; }
.book-field input[type="text"], .book-field input[type="tel"], .book-field input[type="email"], .book-field textarea {
  width: 100%; min-height: 50px; padding: 10px 14px; font: inherit; font-size: 16px; /* 16px so iOS Safari does not zoom */
  color: var(--brown); background: #fff; border: 1px solid var(--line); border-radius: 6px;
}
.book-field textarea { resize: vertical; line-height: 1.5; }
.book-field.invalid input, .book-field.invalid textarea { border-color: #a8321e; }
.book-gotcha { display: none; }
.book-actions { margin-top: 6px; }
.book-btn-lg { width: 100%; height: 56px; font-size: 16px; border-radius: 6px; box-shadow: 0 8px 22px rgba(46, 26, 18, 0.22); }
.btn[disabled] { opacity: 0.7; cursor: wait; }
.book-link { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px; display: inline-flex; align-items: center; min-height: 44px; }
.book-link-strong { font-size: 15px; }

/* ---------- Confirmed ---------- */
.book-confirmed-head { text-align: center; padding-top: 2px; }
.book-tick {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--burgundy); color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 10px;
}
.book-tick.cancel { font-size: 22px; }            /* the ✕ for a canceled appointment, same burgundy circle */
.book-confirmed-head .book-title { font-size: 30px; line-height: 1.2; margin-bottom: 8px; }   /* wraps with a long name: lines clearly spaced */
.book-sub { margin: 0 0 14px; color: var(--muted); font-size: 15px; }
.book-ticket {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 16px;
  box-shadow: 0 10px 28px rgba(46, 26, 18, 0.10); margin-bottom: 14px;
}
.book-ticket .tline { display: flex; flex-direction: column; gap: 1px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.book-ticket .tline:last-child { border-bottom: 0; }
.book-ticket .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.book-ticket .v { color: var(--brown); font-weight: 700; font-size: 16px; line-height: 1.3; }
.book-manage, .book-cal-buttons { display: flex; flex-direction: column; gap: 10px; }
.book-manage .btn, .book-cal-buttons .btn { width: 100%; height: auto; min-height: 48px; padding: 10px 16px; white-space: normal; text-align: center; border-radius: 6px; }
.book-manage { margin-bottom: 10px; }
.book-cal-buttons { margin-bottom: 6px; }
.book-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 28px; margin-top: 8px; }
.book-manage-phone { margin: 0 0 12px; font-size: 15px; color: var(--text); text-align: center; }
.book-manage-phone a { font-weight: 700; white-space: nowrap; }
.book-manage .btn[disabled] { cursor: wait; }
/* Canceled: no tick, no Reschedule or Cancel, a solid Book another appointment button; the same link below is dropped */
.book-screen[data-state="canceled"] .book-confirmed-head .book-title { margin-bottom: 14px; }
.book-screen[data-state="canceled"] #confirmed-links .book-link-strong { display: none; }
.book-screen[data-state="canceled"] .book-actions { margin: 0 0 10px; }
.book-screen[data-state="canceled"] .book-actions .btn { text-decoration: none; }

/* ---------- Pop-up: "Cancel this appointment?" and "Move your appointment to ...?" ---------- */
.book-modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px;
  background: rgba(46, 26, 18, 0.55);
}
body.book-modal-open { overflow: hidden; }
.book-modal-card {
  width: 100%; max-width: 440px; max-height: calc(100vh - 32px); overflow: auto;
  background: #fff; border-radius: 10px; padding: 20px 18px 18px; box-shadow: 0 20px 48px rgba(46, 26, 18, 0.35);
}
.book-modal-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.1; color: var(--brown); margin-bottom: 12px; text-wrap: balance; }
.book-modal-body .tline { display: flex; flex-direction: column; gap: 1px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.book-modal-body .tline:last-child { border-bottom: 0; }
.book-modal-body .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.book-modal-body .v { color: var(--brown); font-weight: 700; font-size: 16px; line-height: 1.3; }
.book-modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.book-modal-actions .btn { width: 100%; height: auto; min-height: 48px; padding: 10px 16px; white-space: normal; border-radius: 6px; }

/* ---------- Hover only where there is a mouse: tiles lift and show a burgundy left edge ---------- */
@media (hover: hover) {
  .book-row:hover { transform: translateY(-2px); box-shadow: inset 3px 0 0 var(--burgundy), 0 8px 20px rgba(46, 26, 18, 0.14); }
  .book-addon:hover, .book-time:hover, .book-cal-nav:not([disabled]):hover { border-color: var(--burgundy); }
  .book-day:not([disabled]):not(.selected):hover { background: var(--cream-2); }
}

/* ---------- Tablet (768 and up): the labelled rail, roomier type, summary cells with labels ---------- */
@media (min-width: 768px) {
  .booking { padding-bottom: 56px; }
  .booking.no-progress { padding-top: 32px; }
  .book-wrap { padding: 0 24px; }
  .book-account a { font-size: 14px; }
  .book-progress { padding: 10px 24px; margin-bottom: 18px; }
  .book-progress ol { gap: 0; }
  .book-progress li { flex: 1; gap: 6px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; }
  .book-progress li::before { content: ""; position: absolute; top: 9px; left: 50%; width: 100%; height: 2px; background: var(--line); }
  .book-progress li:last-child::before { display: none; }
  .book-progress li.done::before { background: var(--burgundy); }
  .book-progress .dot { position: relative; z-index: 1; width: 20px; height: 20px; }
  .book-progress li.done .dot::after {
    content: "\2713"; color: #fff; font-size: 12px; font-weight: 700;
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  }
  .book-progress li.current .dot { box-shadow: inset 0 0 0 4px #fff; }
  .book-progress li.current { color: var(--brown); font-weight: 700; }
  .book-progress .lbl { display: block; max-width: 72px; line-height: 1.15; }
  .book-step { display: none; }
  .book-title { font-size: 42px; margin-bottom: 16px; scroll-margin-top: 112px; }
  .book-notice, .book-times { scroll-margin-top: 112px; }
  .book-field { scroll-margin-top: 116px; }
  .book-row { padding: 16px 56px 16px 18px; min-height: 64px; }
  .book-row::after { width: 16px; height: 16px; border-width: 4px; right: 24px; }
  .book-row strong { font-size: 18px; }
  .book-row span { font-size: 15px; }
  .book-summary { padding: 10px 88px 10px 16px; column-gap: 0; row-gap: 0; align-items: stretch; }
  .book-summary .cell { display: flex; flex-direction: column; gap: 1px; padding: 2px 16px 2px 0; margin-right: 16px; border-right: 1px solid var(--line); flex-basis: auto; }
  .book-summary .cell:last-of-type { border-right: 0; margin-right: 0; }
  .book-summary .k { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
  .book-summary .with .v::before, .book-summary .addons .v::before, .book-summary .current .v::before { content: none; }
  .book-summary .when .v, .book-summary .addons .v, .book-summary .current .v { font-weight: 700; color: var(--brown); font-size: 16px; }
  .book-summary .change { right: 12px; }
  .book-summary.moving { padding-right: 148px; }
  .book-summary.moving .change { position: absolute; transform: translateY(-50%); flex-basis: auto; min-height: 44px; padding: 0 6px; margin: 0; }
  .book-addon-grid { grid-template-columns: 1fr 1fr; }
  .book-time-grid { grid-template-columns: repeat(4, 1fr); }
  .book-cal { padding: 12px 12px 8px; }
  .book-cal-grid { gap: 4px; }
  .book-day { aspect-ratio: auto; height: 52px; min-height: 0; }
  .book-confirmed-head .book-title { font-size: 36px; }
  .book-ticket { padding: 6px 18px; }
  .book-manage, .book-cal-buttons { flex-direction: row; }
  .book-screen[data-state="canceled"] .book-actions { display: flex; justify-content: center; }
  .book-screen[data-state="canceled"] .book-actions .btn { width: auto; min-width: 320px; }
  .book-modal-card { padding: 24px 24px 22px; }
  .book-modal-card h2 { font-size: 30px; }
  .book-modal-actions { flex-direction: row; }
  .book-modal-actions .btn { flex: 1; }
}

/* ---------- Desktop (1200 and up) and tablet landscape (768–1199 under 900 tall): calendar and times side by side,
   the Date and time screen and the confirmation each fitting one screen ---------- */
@media (min-width: 1200px), (min-width: 768px) and (max-width: 1199px) and (max-height: 899px) {
  /* Left: add-ons over the calendar (same width). Right: summary and the slot-taken notice over the times. */
  .book-wrap-wide {
    max-width: 960px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; align-items: start;
    grid-template-areas: "back back" "title title" "addons summary" "addons notice" "cal times";
  }
  .book-wrap-wide .book-back { grid-area: back; min-height: 36px; margin: 0; }
  .book-wrap-wide .book-title { grid-area: title; margin-bottom: 10px; }
  .book-wrap-wide .book-summary { grid-area: summary; }
  .book-wrap-wide .book-notice { grid-area: notice; }
  .book-wrap-wide .book-addons { grid-area: addons; margin-bottom: 12px; }
  .book-wrap-wide .book-cal { grid-area: cal; margin-bottom: 0; }
  .book-wrap-wide.moving .book-cal { grid-area: addons; }   /* moving: no add-ons, so the calendar takes their place beside the summary */
  .book-wrap-wide .book-times { grid-area: times; min-width: 0; }
  .book-wrap-wide .book-load-error { grid-column: 1 / -1; grid-row: 5; max-width: 560px; justify-self: center; width: 100%; }   /* the row the calendar and times share */
  .book-load-error .btn { width: auto; }
  .book-progress { margin-bottom: 12px; }
  .book-addon-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .book-addon { min-height: 44px; padding: 6px 10px; gap: 10px; }
  .book-addon span { font-size: 14px; line-height: 1.3; }
  .book-addon input { width: 22px; height: 22px; }
  .book-addons { padding: 8px 10px 10px; }
  .book-addons legend { margin-bottom: 6px; }
  .book-cal { padding: 8px 10px 6px; }
  .book-cal-head { margin-bottom: 2px; }
  .book-cal-head h2 { font-size: 14px; }
  .book-cal-nav { width: 34px; height: 34px; font-size: 22px; }
  .book-cal-grid { gap: 3px; }
  .book-cal-dow span { padding: 2px 0; }
  .book-day { aspect-ratio: auto; min-height: 0; height: 32px; font-size: 14px; border-radius: 16px; }
  .book-times h2 { font-size: 16px; margin-bottom: 8px; }
  .book-time-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .book-time { min-height: 40px; font-size: 15px; }
  .book-ticket .tlines { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .book-ticket .tline { padding: 7px 0; }
}
@media (min-width: 1200px) {
  .booking.no-progress { padding-top: 36px; }
  .book-progress { padding: 10px 24px 8px; }
  .book-title { scroll-margin-top: 150px; margin-bottom: 12px; }
  .book-notice, .book-times { scroll-margin-top: 150px; }
  .book-field { scroll-margin-top: 154px; }
  .book-back { margin-bottom: 0; }
  .book-account a { font-size: 15px; }
}
