/* =========================================================
   Medicine Stop — site styles
   Design tokens mirror the Medicine Drop CSS custom-property
   palette but swap the secondary/accent to the Stop red.
   ========================================================= */

/* Nordique Pro — commercial typeface by Indian Type Foundry.
   Bundled here from medicinedrop.co.uk for preview only — a webfont
   licence is required before this is used on a live production site. */
@font-face {
  font-family: "Nordique Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/NordiquePro-Regular.woff2") format("woff2"),
       url("../assets/fonts/NordiquePro-Regular.woff") format("woff");
}
@font-face {
  font-family: "Nordique Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/NordiquePro-SemiBold.woff2") format("woff2"),
       url("../assets/fonts/NordiquePro-SemiBold.woff") format("woff");
}

:root {
  /* Brand */
  --color-primary: #06253A;        /* deep navy — headings, brand */
  --color-accent:  #B92828;        /* Stop red — CTAs, highlights */
  --color-accent-dark: #8b1d1d;
  --color-ink:     #06253A;        /* body text */
  --color-muted:   #5b6975;
  --color-bg:      #ffffff;
  --color-wash-red:   #FFF3F3;     /* soft red wash */
  --color-wash-blue:  #F4FDFF;     /* soft blue wash */
  --color-wash-mint:  #E5F6F3;     /* nod to Drop palette */
  --color-line:    #e6ecf0;
  --color-nhs:     #005EB8;        /* official NHS blue, used sparingly */

  /* Type */
  --font-head: "Nordique Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Nordique Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-h1: clamp(2rem, 4.5vw + 1rem, 3.75rem);
  --fs-h2: clamp(1.5rem, 2.2vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.2rem, 1.2vw + 1rem, 1.5rem);
  --fs-body: 1.0625rem;
  --lh-tight: 1.15;
  --lh-body: 1.6;

  /* Layout */
  --w-max: 1180px;
  --w-prose: 68ch;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(6,37,58,.06), 0 4px 16px rgba(6,37,58,.06);
  --shadow-2: 0 8px 28px rgba(6,37,58,.12);
  --focus: 0 0 0 3px rgba(185,40,40,.45);

  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink);
  background: var(--color-bg);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-2);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--space-2); }
.lede { font-size: 1.2rem; color: var(--color-muted); max-width: var(--w-prose); }

ul, ol { padding-left: 1.25rem; }
li + li { margin-top: .25rem; }

.container { width: min(100% - 2rem, var(--w-max)); margin-inline: auto; }
.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }
.section--wash-red  { background: var(--color-wash-red); }
.section--wash-blue { background: var(--color-wash-blue); }
.section--wash-mint { background: var(--color-wash-mint); }
.section--navy { background: var(--color-primary); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy a { color: #ffd7d7; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img { height: 56px; width: auto; }
@media (max-width: 880px) { .brand img { height: 44px; } }
.brand__text { font-family: var(--font-head); font-weight: 600; color: var(--color-primary); }

.nav { display: flex; gap: var(--space-3); align-items: center; }
.nav a { color: var(--color-primary); font-weight: 500; }
/* Active state applies only to plain text links — never overrides a button's own colour. */
.nav a.is-active:not(.btn) { color: var(--color-accent); }
.nav a:not(.btn):hover { color: var(--color-accent); text-decoration: none; }

.nav-toggle {
  display: none; background: transparent; border: 0;
  font: inherit; color: var(--color-primary);
  width: 44px; height: 44px; cursor: pointer;
}
.nav-toggle svg { display: block; margin: auto; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 12px 24px rgba(6, 37, 58, .08);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-3);
    gap: var(--space-1);
    /* Cap the panel height and let it scroll inside if there are too many items
       for a short (landscape) viewport. */
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    /* Hidden state — translate fully off-screen AND visibility: hidden so it
       can never be tapped or read out by mistake. */
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .25s ease, visibility 0s linear .25s;
  }
  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .25s ease, visibility 0s linear 0s;
  }
  .nav a {
    width: 100%;
    padding: .65rem .25rem;
    border-radius: 6px;
  }
  .nav a:not(.btn):hover { background: var(--color-wash-red); }
  .nav .btn { width: 100%; text-align: center; padding: .85rem 1rem; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — solid red, the dominant CTA */
.btn--primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn--primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; box-shadow: 0 6px 16px rgba(185, 40, 40, .25); }

/* Ghost — outlined navy on light backgrounds */
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--ghost:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Outline on dark — secondary CTA inside navy sections (replaces inline styles) */
.btn--outline-on-dark { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .65); }
.btn--outline-on-dark:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

.btn--lg { padding: 1rem 1.75rem; font-size: 1.0625rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--color-wash-blue);
  overflow: clip;
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: var(--space-5);
  align-items: center;
  padding-block: var(--space-6) var(--space-7);
}
.hero__copy h1 { margin-bottom: var(--space-3); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.hero__art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }

.hero__badges {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: .9375rem;
}
.hero__badges span { display: inline-flex; align-items: center; gap: .375rem; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: var(--space-5); }
}

/* =========================================================
   Info strip (under hero) — hours, phone, address
   ========================================================= */
.info-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-top: calc(-1 * var(--space-5));
  position: relative; z-index: 2;
  box-shadow: var(--shadow-1);
}
.info-strip__item h4 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-accent); margin-bottom: .25rem; }
.info-strip__item p { margin: 0; font-size: 1rem; }
@media (max-width: 720px) { .info-strip { grid-template-columns: 1fr; } }

/* =========================================================
   Service cards grid
   ========================================================= */
.grid-services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.grid-services > * {
  flex: 1 1 280px;
  max-width: calc(33.333% - 1rem);
}
@media (max-width: 880px) {
  .grid-services > * { max-width: calc(50% - .75rem); flex-basis: 240px; }
}
@media (max-width: 560px) {
  .grid-services > * { max-width: 100%; flex-basis: 100%; }
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); border-color: #d9c0c0; }
.service-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--color-wash-red); color: var(--color-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.service-card h3 { margin-bottom: .35rem; font-size: 1.125rem; }
.service-card p { color: var(--color-muted); font-size: .9375rem; margin: 0; }
.service-card a.cover { position: absolute; inset: 0; text-indent: -9999px; }

/* =========================================================
   Two-up section (text + image)
   ========================================================= */
.two-up {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-5); align-items: center;
}
.two-up--flip > :first-child { order: 2; }
.two-up__art { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); aspect-ratio: 4/3; }
.two-up__art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .two-up { grid-template-columns: 1fr; }
  .two-up--flip > :first-child { order: 0; }
}

/* =========================================================
   FAQ — accessible <details>
   ========================================================= */
.faq { display: grid; gap: var(--space-2); max-width: var(--w-prose); }
.faq details {
  background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); padding: var(--space-2) var(--space-3);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-weight: 600; color: var(--color-primary);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.25rem; color: var(--color-accent); }
.faq details[open] summary::after { content: "–"; }
.faq details > p { margin-top: var(--space-2); color: var(--color-muted); }

/* =========================================================
   Hours table
   ========================================================= */
.hours {
  width: 100%; border-collapse: collapse; max-width: 420px;
}
.hours th, .hours td {
  text-align: left; padding: .55rem .5rem;
  border-bottom: 1px solid var(--color-line);
}
.hours th { font-weight: 600; color: var(--color-primary); width: 9rem; }
.hours td.closed { color: var(--color-muted); }
.hours tr.today th, .hours tr.today td { background: var(--color-wash-red); }
.hours--compact { font-size: .875rem; margin: 0; }
.hours--compact th, .hours--compact td { padding: .3rem .25rem; }
.hours--compact th { width: 3.25rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-primary); color: #cfd8df;
  padding-block: var(--space-5) var(--space-3);
}
.site-footer a { color: #ffd7d7; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--space-2); }
.footer-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: .25rem; }
.footer-brand img { height: 96px; width: auto; margin-bottom: var(--space-3); }
.footer-brand p { color: #cfd8df; max-width: 38ch; }
.footer-legal {
  margin-top: var(--space-4); padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
  font-size: .875rem; color: #9eb1bd;
}

/* =========================================================
   Booking embed
   ========================================================= */
.book {
  /* Tweak --book-height if Semble's content sits short or runs long.
     This is the only knob to adjust for the iframe size. */
  --book-height: 640px;
  max-width: 880px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.book iframe {
  display: block;
  width: 100%;
  border: 0;
  height: var(--book-height);
  background: #fff;
}
.book__fallback {
  max-width: 880px;
  margin: var(--space-3) auto 0;
  text-align: center;
  color: var(--color-muted);
  font-size: .9375rem;
}
.book__placeholder {
  display: grid; place-items: center; text-align: center;
  padding: var(--space-6) var(--space-3);
  background: var(--color-wash-red);
  color: var(--color-primary);
}
.book__placeholder code {
  background: #fff; padding: .15rem .4rem; border-radius: 4px;
  font-size: .9375em;
}

/* =========================================================
   Map / iframe wrapper
   ========================================================= */
.embed-16x9 { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.embed-16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =========================================================
   Misc / utilities
   ========================================================= */
.center { text-align: center; }
.prose { max-width: var(--w-prose); }
.prose p, .prose li { color: var(--color-ink); }
.divider { height: 1px; background: var(--color-line); border: 0; margin-block: var(--space-4); }

.callout {
  border-left: 4px solid var(--color-accent);
  background: var(--color-wash-red);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  margin-block: var(--space-3);
}
.callout strong { color: var(--color-primary); }

.tag {
  display: inline-block;
  background: var(--color-wash-red);
  color: var(--color-accent);
  font-size: .8125rem; font-weight: 600;
  padding: .15rem .55rem; border-radius: 999px;
}

.price-line {
  display: flex; justify-content: space-between; gap: var(--space-2);
  padding: .55rem 0; border-bottom: 1px solid var(--color-line);
}
.price-line:last-child { border-bottom: 0; }
.price-line__name { font-weight: 500; color: var(--color-primary); }
.price-line__cost { color: var(--color-muted); white-space: nowrap; }

/* Skip link — visible only when focused via keyboard (Tab key).
   Uses the standard "screen-reader only" clip pattern so it can't
   accidentally appear for sighted users. */
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: .75rem; left: .75rem;
  width: auto; height: auto;
  padding: .6rem 1rem; margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
}

/* =========================================================
   Mobile safety — final layer to prevent any horizontal scroll
   on narrow viewports, and to let grid/flex children shrink
   below their intrinsic content width.
   ========================================================= */
body {
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/* Grid/flex children: by default they refuse to shrink below the size of
   their largest unbreakable content (URL, long word). Setting min-width: 0
   tells them they may. Stops content from forcing the layout wider than
   the viewport. */
.hero__copy, .hero__art,
.two-up > *,
.footer-grid > *,
.info-strip__item,
.grid-services > *,
.hero__ctas > * {
  min-width: 0;
}

/* Force any media (img/iframe/svg) inside content to behave on narrow screens */
.prose img, .prose iframe { max-width: 100%; }

/* Small phones (≤ 480px) — shrink the brand mark so it fits alongside the
   hamburger button on 320–375px screens, and dial down a couple of sizes
   that feel oversized at this width. */
@media (max-width: 480px) {
  .brand img { height: 38px; }
  .footer-brand img { height: 72px; }
  .lede { font-size: 1.0625rem; }
  .section { padding-block: var(--space-5); }
  .hero__inner { padding-block: var(--space-4) var(--space-5); gap: var(--space-4); }
  .info-strip { padding: var(--space-2); margin-top: calc(-1 * var(--space-4)); }
  /* Long button text wraps inside the pill rather than overflowing */
  .btn--lg { padding: .85rem 1.25rem; font-size: 1rem; }
  /* Tag pills sit naturally on the price line on phones */
  .price-line { flex-wrap: wrap; }
}

/* =========================================================
   Forms (register page)
   ========================================================= */
.form {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-1);
}
.form-field { display: block; margin-bottom: var(--space-3); }
.form-label { display: block; font-weight: 500; color: var(--color-primary); margin-bottom: .3rem; font-size: .9375rem; }
.form .required { color: var(--color-accent); }
.form-help { display: block; font-size: .8125rem; color: var(--color-muted); margin-top: .25rem; }

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="date"],
.form select,
.form textarea {
  display: block;
  width: 100%;
  padding: .7rem .9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 37, 58, .12);
}
.form input[type="radio"],
.form input[type="checkbox"] {
  accent-color: var(--color-accent);
  margin-top: .2rem;
  flex-shrink: 0;
}

.form fieldset {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin: 0 0 var(--space-3) 0;
}
.form fieldset legend {
  font-weight: 600;
  color: var(--color-primary);
  padding: 0 .5rem;
  font-size: .9375rem;
}
.form-radio,
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .35rem 0;
  font-weight: 400;
  cursor: pointer;
}
.form-check span { flex: 1; }
.form-check small { color: var(--color-muted); }

.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 560px) {
  .form-row--2 { grid-template-columns: 1fr; }
}

/* =========================================================
   Inline booking widget (Semble-backed)
   ========================================================= */
.booking {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-top: var(--space-3);
  box-shadow: var(--shadow-1);
}
.booking__step + .booking__step {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-line);
}
.booking__step h4 {
  font-size: 1rem;
  margin: 0 0 var(--space-2);
  color: var(--color-primary);
  font-weight: 600;
}
.booking__variants { border: 0; padding: 0; margin: 0 0 var(--space-3); }
.booking__variants legend { font-weight: 600; color: var(--color-primary); padding: 0; margin-bottom: .5rem; }

.booking__dates {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
}
.booking__date {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  padding: .65rem .85rem;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  min-width: 5rem;
  scroll-snap-align: start;
  transition: border-color .15s, background .15s, color .15s;
}
.booking__date:hover { border-color: var(--color-primary); }
.booking__date.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.booking__date-day { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.booking__date-num { font-size: 1.5rem; font-weight: 600; line-height: 1; }
.booking__date-month { font-size: .8125rem; opacity: .85; }
.booking__date-count { font-size: .7rem; opacity: .65; margin-top: .15rem; }

.booking__slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .5rem;
}
.booking__slot {
  padding: .55rem .35rem;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: .9375rem;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
}
.booking__slot:hover { border-color: var(--color-primary); }
.booking__slot.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.booking__summary {
  padding: .65rem .85rem;
  background: var(--color-wash-blue);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  font-size: .9375rem;
}
.booking__error {
  padding: .65rem .85rem;
  background: var(--color-wash-red);
  border-radius: var(--radius-sm);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
  font-size: .9375rem;
}
.booking__loading { color: var(--color-muted); font-size: .9375rem; }

@media (max-width: 560px) {
  .booking__slots { grid-template-columns: repeat(3, 1fr); }
}
