:root {
  --text: #1d2a30;
  --text-soft: #34322d;
  --primary: #3f747c;
  --primary-dark: #075e77;
  --paper: #fbfaf9;
  --sand: #f0ebe5;
  --mist: #f8f8f7;
  --blush: #d99faa;
  --line: rgba(29, 42, 48, 0.14);
  --shadow: 0 18px 44px rgba(29, 42, 48, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 249, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
}

.brand-mark img {
  width: 32px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.topnav {
  display: flex;
  gap: 8px;
}

.topnav a,
.text-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.topnav a {
  padding: 10px 12px;
}

.brand,
.topnav {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.topbar-dog-lane {
  position: relative;
  flex: 1 1 auto;
  min-width: 160px;
  max-width: 520px;
  height: 34px;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
  color: rgba(63, 116, 124, 0.7);
  --dog-body: rgba(63, 116, 124, 0.78);
  --dog-chest: rgba(251, 250, 249, 0.82);
  --dog-ear: rgba(7, 94, 119, 0.78);
  --dog-snout: rgba(240, 235, 229, 0.95);
  --dog-line: rgba(29, 42, 48, 0.62);
  --dog-shadow: rgba(29, 42, 48, 0.1);
}

.topbar-dog-lane::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 116, 124, 0.18), transparent);
}

.topbar-dog-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(-80px, 0, 0);
}

.topbar-dog {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 54px;
  height: 30px;
  color: currentColor;
  pointer-events: none;
}

.topbar-dog-shadow {
  fill: var(--dog-shadow);
}

.topbar-dog-long-shadow {
  fill: var(--dog-long-shadow, var(--dog-shadow));
}

.topbar-dog-chase-shadow {
  fill: var(--dog-chase-shadow, var(--dog-shadow));
}

.topbar-dog-body,
.topbar-dog-head,
.topbar-dog-tail,
.topbar-dog-leg,
.topbar-dog-peek-head,
.topbar-dog-peek-paw {
  fill: var(--dog-body);
}

.topbar-dog-chase-body,
.topbar-dog-chase-head,
.topbar-dog-chase-tail,
.topbar-dog-chase-leg {
  fill: var(--dog-chase-body, var(--dog-body));
}

.topbar-dog-long-body,
.topbar-dog-long-head,
.topbar-dog-long-tail,
.topbar-dog-long-leg,
.topbar-dog-long-neck {
  fill: var(--dog-long-body, var(--dog-body));
  stroke: var(--dog-long-line, var(--dog-line));
  stroke-width: 0.75;
  stroke-linejoin: round;
}

.topbar-dog-chest,
.topbar-dog-snout,
.topbar-dog-peek-muzzle {
  fill: var(--dog-snout);
}

.topbar-dog-chase-chest,
.topbar-dog-chase-snout {
  fill: var(--dog-chase-snout, var(--dog-snout));
}

.topbar-dog-chase-patch {
  fill: var(--dog-chase-patch, var(--dog-ear));
  opacity: 0.58;
}

.topbar-dog-long-snout {
  fill: var(--dog-long-snout, var(--dog-snout));
}

.topbar-dog-long-spot {
  fill: var(--dog-long-spot, var(--dog-ear));
}

.topbar-dog-ear,
.topbar-dog-peek-ear {
  fill: var(--dog-ear);
}

.topbar-dog-chase-ear {
  fill: var(--dog-chase-ear, var(--dog-ear));
}

.topbar-dog-long-ear {
  fill: var(--dog-long-ear, var(--dog-ear));
}

.topbar-dog-eye {
  fill: var(--dog-line);
}

.topbar-dog-nose,
.topbar-dog-chase-eye,
.topbar-dog-chase-nose {
  fill: var(--dog-chase-line, var(--dog-line));
}

.topbar-dog-long-eye {
  fill: var(--dog-long-line, var(--dog-line));
}

.topbar-dog-smile {
  fill: none;
  stroke: var(--dog-line);
  stroke-width: 1.3;
  stroke-linecap: round;
}

.topbar-dog-collar,
.topbar-dog-chase-collar {
  fill: none;
  stroke: var(--dog-chase-collar, var(--dog-ear));
  stroke-width: 1.55;
  stroke-linecap: round;
}

.topbar-dog-long-collar {
  fill: none;
  stroke: var(--dog-long-collar, var(--dog-ear));
  stroke-width: 1.6;
  stroke-linecap: round;
}

.topbar-dog-window {
  fill: none;
  stroke: rgba(63, 116, 124, 0.24);
  stroke-width: 2;
  stroke-linecap: round;
}

.topbar-dog-peek-eye,
.topbar-dog-peek-nose {
  fill: var(--dog-line);
}

.topbar-dog-ball-wrap {
  transform-box: fill-box;
  transform-origin: center;
  animation: topbar-dog-ball-bounce 0.78s ease-in-out infinite;
}

.topbar-dog-ball {
  fill: var(--dog-ball, rgba(217, 159, 170, 0.88));
}

.topbar-dog-ball-mark {
  fill: none;
  stroke: var(--dog-ball-line, rgba(122, 38, 53, 0.58));
  stroke-width: 1.15;
  stroke-linecap: round;
}

.topbar-dog-track-main {
  animation: topbar-dog-run 18s linear infinite;
}

.topbar-dog-track-fast {
  animation: topbar-dog-run-reverse 8s linear infinite;
  animation-delay: -3s;
}

.topbar-dog-track-secondary {
  animation: topbar-dog-run 24s linear infinite;
  animation-delay: -11s;
}

.topbar-dog-track-background {
  animation: topbar-dog-run 34s linear infinite;
  animation-delay: -18s;
}

.topbar-dog-track-chase {
  animation: topbar-dog-run 15s linear infinite;
  animation-delay: -8s;
}

.topbar-dog-track-long {
  animation: topbar-dog-run 27s linear infinite;
  animation-delay: -6s;
}

.topbar-dog-peek-wrap {
  position: absolute;
  right: 22%;
  bottom: -6px;
  width: 56px;
  height: 38px;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(0, 44px, 0);
  animation: topbar-dog-peek 12s ease-in-out infinite;
  animation-delay: -2s;
}

.topbar-dog-main {
  --dog-body: rgba(63, 116, 124, 0.84);
  --dog-ear: rgba(7, 94, 119, 0.86);
  --dog-snout: rgba(251, 250, 249, 0.95);
  --dog-line: rgba(29, 42, 48, 0.7);
  opacity: 0.82;
}

.topbar-dog-fast {
  top: 8px;
  width: 40px;
  height: 23px;
  --dog-body: rgba(217, 159, 170, 0.78);
  --dog-ear: rgba(155, 59, 74, 0.62);
  --dog-snout: rgba(251, 250, 249, 0.9);
  --dog-line: rgba(122, 38, 53, 0.66);
  opacity: 0.64;
}

.topbar-dog-secondary {
  top: 13px;
  width: 36px;
  height: 21px;
  --dog-body: rgba(240, 235, 229, 0.92);
  --dog-ear: rgba(63, 116, 124, 0.56);
  --dog-snout: rgba(251, 250, 249, 0.96);
  --dog-line: rgba(29, 42, 48, 0.5);
  opacity: 0.66;
}

.topbar-dog-background {
  top: 0;
  width: 80px;
  height: 43px;
  --dog-body: rgba(63, 116, 124, 0.38);
  --dog-ear: rgba(7, 94, 119, 0.32);
  --dog-snout: rgba(251, 250, 249, 0.62);
  --dog-line: rgba(29, 42, 48, 0.25);
  --dog-shadow: transparent;
  opacity: 0.32;
}

.topbar-dog-long-runner {
  top: 1px;
  width: 72px;
  height: 36px;
  --dog-long-body: rgba(251, 250, 249, 0.86);
  --dog-long-ear: rgba(7, 94, 119, 0.52);
  --dog-long-snout: rgba(240, 235, 229, 0.94);
  --dog-long-spot: rgba(7, 94, 119, 0.42);
  --dog-long-line: rgba(29, 42, 48, 0.42);
  --dog-long-collar: rgba(217, 159, 170, 0.72);
  --dog-long-shadow: rgba(29, 42, 48, 0.08);
  opacity: 0.62;
}

.topbar-dog-chase-runner {
  top: 3px;
  width: 76px;
  height: 30px;
  --dog-chase-body: rgba(63, 116, 124, 0.82);
  --dog-chase-ear: rgba(7, 94, 119, 0.74);
  --dog-chase-snout: rgba(251, 250, 249, 0.94);
  --dog-chase-patch: rgba(7, 94, 119, 0.36);
  --dog-chase-line: rgba(29, 42, 48, 0.62);
  --dog-chase-collar: rgba(217, 159, 170, 0.78);
  --dog-chase-shadow: rgba(29, 42, 48, 0.09);
  --dog-ball: rgba(217, 159, 170, 0.9);
  --dog-ball-line: rgba(122, 38, 53, 0.56);
  opacity: 0.8;
}

.topbar-dog-background .topbar-dog-chest,
.topbar-dog-secondary .topbar-dog-chest {
  opacity: 0.28;
}

.topbar-dog-peek-main {
  top: 0;
  width: 56px;
  height: 38px;
  --dog-body: rgba(63, 116, 124, 0.88);
  --dog-ear: rgba(217, 159, 170, 0.86);
  --dog-snout: rgba(251, 250, 249, 0.96);
  --dog-line: rgba(29, 42, 48, 0.7);
  opacity: 0.88;
}

@keyframes topbar-dog-run {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(calc(100% + 90px), 0, 0);
  }
}

@keyframes topbar-dog-run-reverse {
  0% {
    transform: translate3d(calc(100% + 90px), 0, 0);
  }
  100% {
    transform: translate3d(-90px, 0, 0);
  }
}

@keyframes topbar-dog-peek {
  0%,
  16%,
  100% {
    transform: translate3d(0, 44px, 0);
  }
  24%,
  48% {
    transform: translate3d(0, 8px, 0);
  }
  54% {
    transform: translate3d(0, 11px, 0);
  }
}

@keyframes topbar-dog-ball-bounce {
  0%,
  42%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  18% {
    transform: translate3d(0, -7px, 0);
  }
  62% {
    transform: translate3d(0, -4px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-dog-track {
    animation: none;
  }

  .topbar-dog-ball-wrap {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .topbar-dog-peek-wrap {
    animation: none;
    transform: translate3d(0, 44px, 0);
  }

  .topbar-dog-track-main {
    transform: translate3d(30%, 0, 0);
  }

  .topbar-dog-track-background {
    transform: translate3d(64%, 0, 0);
  }

  .topbar-dog-track-long {
    transform: translate3d(48%, 0, 0);
  }

  .topbar-dog-track-chase {
    transform: translate3d(42%, 0, 0);
  }

  .topbar-dog-track-fast,
  .topbar-dog-track-secondary {
    display: none;
  }
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(18px, 2.4vw, 34px);
  width: min(1360px, calc(100% - 32px));
  margin: 24px auto 54px;
}

.intro-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: clamp(22px, 3vw, 34px);
  border-left: 5px solid var(--blush);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 4px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.lede {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.status-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.status-strip span {
  padding: 10px 0;
  border-top: 1px solid rgba(29, 42, 48, 0.16);
  color: var(--text-soft);
  font-weight: 700;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
  gap: 14px 18px;
}

.booking-form > .alert,
.booking-form > .form-section,
.booking-form > .wizard-steps {
  grid-column: 1;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  background: white;
}

.wizard-step-button {
  min-height: 36px;
  border-radius: 5px;
  padding: 0 8px;
  color: var(--text-soft);
  background: var(--mist);
  font-size: 0.78rem;
}

.wizard-step-button.is-active {
  color: white;
  background: var(--primary);
}

.wizard-step-button.is-complete:not(.is-active) {
  color: var(--primary-dark);
  background: rgba(63, 116, 124, 0.12);
}

.form-section,
.summary-panel,
.confirmation,
.admin-shell {
  background: var(--mist);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-section {
  padding: clamp(18px, 2.4vw, 26px);
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.section-heading {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.section-heading > span {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  font-weight: 800;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid.weight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  width: 100%;
  appearance: none;
  font: inherit;
  position: relative;
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 112px;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 8px;
  padding: 13px;
  color: var(--text);
  background: white;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
}

.control-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.choice-card strong {
  font-size: 1rem;
}

.choice-card span {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.choice-card small {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  color: var(--primary-dark);
  font-weight: 800;
}

.choice-card small span:last-child {
  color: var(--primary-dark);
}

.choice-card em {
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 900;
}

.choice-card.compact {
  min-height: 78px;
}

.choice-card:hover,
.choice-card:focus-within,
.choice-card.is-selected,
.check-field:hover,
.check-field:focus-within,
.check-field.is-selected,
.slot-chip:hover,
.slot-chip:focus-visible,
.slot-chip.is-selected {
  border-color: rgba(63, 116, 124, 0.55);
  border-left-color: var(--primary);
  background: #fff;
  transform: translateY(-1px);
}

.choice-card.is-selected,
.check-field.is-selected,
.slot-chip.is-selected {
  outline: 3px solid rgba(63, 116, 124, 0.18);
}

.selection-insight {
  border-left: 4px solid var(--primary);
  background: white;
  padding: 11px 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(29, 42, 48, 0.22);
  border-radius: 6px;
  color: var(--text);
  background: white;
  font: inherit;
  padding: 11px 12px;
}

.slot-select {
  border-color: rgba(63, 116, 124, 0.42);
  background: #fff;
  font-weight: 800;
}

.slot-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text);
  background: white;
  font-size: 0.88rem;
}

.selected-time {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(63, 116, 124, 0.42);
  border-radius: 6px;
  background: white;
  padding: 11px 12px;
  color: var(--primary-dark);
  font-weight: 800;
}

.slot-empty {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(63, 116, 124, 0.22);
  border-color: var(--primary);
}

button:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.availability-message {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.summary-panel {
  position: sticky;
  top: 92px;
  grid-column: 2;
  grid-row: 1 / span 8;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 12px;
  max-height: calc(100svh - 116px);
  overflow: auto;
  padding: 18px;
  border-top: 3px solid var(--primary);
}

.summary-panel h2 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.summary-panel p {
  margin-bottom: 0;
}

.summary-heading p:last-child {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

dl {
  margin: 0;
}

.summary-panel dl,
.summary-list {
  display: grid;
  gap: 0;
}

.summary-list {
  align-self: stretch;
  border: 1px solid var(--line);
  background: white;
}

.summary-list div {
  display: grid;
  grid-template-columns: minmax(68px, 0.8fr) minmax(0, 1.3fr) auto;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.summary-list div:first-child {
  border-top: 0;
}

.summary-list dd {
  text-align: right;
  font-size: 0.92rem;
}

.summary-list button {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 8px;
  color: var(--primary-dark);
  background: white;
  font-size: 0.72rem;
}

.summary-list button:hover {
  color: white;
  background: var(--primary-dark);
}

.money-row {
  background: var(--paper);
}

.money-total dd {
  color: var(--primary-dark);
  font-size: 1.24rem;
}

.discount-row {
  border-color: rgba(63, 116, 124, 0.24);
  background: rgba(63, 116, 124, 0.08);
}

.discount-row dd {
  color: var(--primary-dark);
}

.hold-note {
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--blush);
  background: white;
  padding: 11px 12px;
}

.hold-note strong {
  color: var(--primary-dark);
}

.hold-note span {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

dt {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 800;
}

button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: white;
  background: var(--primary);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.secondary-button {
  color: var(--primary-dark);
  background: white;
  border: 1px solid var(--line);
}

.secondary-button:hover {
  color: white;
  background: var(--primary-dark);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

button:hover,
.button-link:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.choice-card,
.slot-chip,
.wizard-step-button,
.summary-list button {
  color: var(--text);
  background: white;
}

.choice-card {
  width: 100%;
  appearance: none;
  font: inherit;
  position: relative;
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 112px;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 8px;
  padding: 13px;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
}

.choice-card.compact {
  min-height: 78px;
}

.wizard-step-button {
  min-height: 36px;
  border-radius: 5px;
  padding: 0 8px;
  color: var(--text-soft);
  background: var(--mist);
  font-size: 0.78rem;
}

.slot-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.slot-discount-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 7px;
  color: white;
  background: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.wizard-step-button.is-active {
  color: white;
  background: var(--primary);
}

.wizard-step-button.is-complete:not(.is-active) {
  color: var(--primary-dark);
  background: rgba(63, 116, 124, 0.12);
}

.choice-card:hover,
.choice-card:focus-within,
.choice-card.is-selected,
.check-field:hover,
.check-field:focus-within,
.check-field.is-selected,
.slot-chip:hover,
.slot-chip:focus-visible,
.slot-chip.is-selected {
  color: var(--text);
  border-color: rgba(63, 116, 124, 0.55);
  border-left-color: var(--primary);
  background: white;
}

.summary-list button {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 8px;
  color: var(--primary-dark);
  font-size: 0.72rem;
}

.summary-list button:hover {
  color: white;
  background: var(--primary-dark);
}

.summary-panel > button[type="submit"] {
  width: 100%;
  min-width: 0;
}

.fineprint {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.alert {
  border-left: 5px solid var(--blush);
  background: #fff;
  padding: 14px 16px;
  color: #7a2635;
  font-weight: 800;
}

.next-step {
  margin: 22px 0 6px;
  border-left: 5px solid var(--primary);
  background: white;
  padding: 16px;
}

.whatsapp-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.next-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.next-step p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  color: white;
  background: #25d366;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-cta:hover {
  background: #1fb45a;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
}

.whatsapp-cta-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.whatsapp-cta svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-cta strong,
.whatsapp-cta small {
  display: block;
  color: white;
  line-height: 1.15;
}

.whatsapp-cta small {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.88;
}

.payment-note,
.price-breakdown-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 16px;
}

.payment-note {
  display: grid;
  gap: 4px;
  border-left: 5px solid var(--primary);
}

.payment-note strong,
.price-breakdown-panel h2 {
  color: var(--primary-dark);
}

.payment-note span {
  color: var(--text-soft);
  font-weight: 750;
}

.price-breakdown-panel h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.price-breakdown-list {
  display: grid;
  gap: 0;
}

.price-breakdown-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.price-breakdown-list div:first-child {
  border-top: 0;
}

.price-breakdown-list dd {
  color: var(--text);
}

.price-breakdown-list .money-total {
  margin-top: 4px;
  padding-top: 14px;
  border-top-color: rgba(7, 94, 119, 0.32);
}

.price-breakdown-list .money-total dt,
.price-breakdown-list .money-total dd {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.admin-warning {
  margin: 18px 0;
  border-left: 5px solid var(--blush);
  background: white;
  padding: 12px 14px;
  color: #7a2635;
  font-weight: 800;
}

.worker-shell {
  width: min(100%, calc(100vw - 206px));
  margin: 24px auto 48px;
  padding: 16px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 0;
  width: 100%;
  margin: 0 auto;
}

.admin-main {
  min-width: 0;
}

.admin-workspace .admin-main {
  font-size: 0.84rem;
}

.admin-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
  min-height: calc(100svh - 108px);
  border-right: 1px solid var(--line);
  background: #fbfaf9;
  padding: 16px 10px;
}

.admin-sidebar-brand {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--text);
}

.admin-sidebar-brand span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar a {
  border-radius: 8px;
  color: var(--text-soft);
  padding: 7px 9px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-sidebar a:hover,
.admin-sidebar a.is-active {
  color: var(--primary-dark);
  background: rgba(63, 116, 124, 0.12);
}

.worker-heading {
  align-items: flex-end;
}

.worker-heading .lede {
  max-width: 720px;
  margin: 5px 0 0;
  color: var(--text-soft);
}

.worker-heading h1 {
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.worker-heading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-new-booking .booking-shell {
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  width: 100%;
  margin: 14px 0 0;
  gap: 14px;
}

.admin-new-booking .legacy-intro {
  position: static;
  top: auto;
  border-left-color: var(--primary);
  padding: 18px;
}

.admin-new-booking .legacy-logo {
  width: 118px;
  filter: none;
}

.admin-new-booking .legacy-intro h1 {
  font-size: 1.65rem;
  line-height: 1.05;
}

.admin-new-booking .legacy-intro .lede {
  font-size: 0.9rem;
}

.admin-new-booking .legacy-booking-form {
  display: block;
}

.admin-new-booking .legacy-stepper {
  margin-bottom: 10px;
}

.admin-new-booking .booking-card {
  min-height: 360px;
  border-color: var(--line);
  background: white;
  box-shadow: none;
  padding: 18px;
}

.admin-new-booking .form-section {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.admin-new-booking .summary-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.worker-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0;
}

.worker-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(9px, 1vw, 14px);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 0.98rem;
}

.panel-heading span {
  color: var(--primary-dark);
  font-weight: 900;
}

.worker-card-stack,
.schedule-slot-grid,
.inbox-list,
.profile-card-list {
  display: grid;
  gap: 10px;
}

.inbox-panel {
  margin: 10px 0;
}

.inbox-heading {
  align-items: flex-start;
}

.inbox-heading p {
  margin: 2px 0 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 750;
}

.inbox-list {
  gap: 8px;
}

.pending-request-list,
.upcoming-day-list,
.upcoming-list {
  display: grid;
  gap: 7px;
}

.pending-requests-panel {
  border-color: rgba(63, 116, 124, 0.26);
  box-shadow: 0 10px 22px rgba(29, 42, 48, 0.06);
}

.pending-request-card {
  display: grid;
  grid-template-columns: minmax(128px, 0.58fr) minmax(190px, 1.2fr) minmax(145px, 0.8fr) minmax(120px, 0.62fr) minmax(210px, auto);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(63, 116, 124, 0.16);
  border-left: 5px solid var(--primary);
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.pending-request-when {
  display: grid;
  gap: 3px;
}

.pending-request-when strong {
  color: var(--text);
  font-size: 0.84rem;
}

.pending-request-when span {
  color: var(--primary-dark);
  font-weight: 950;
}

.pending-request-when small {
  color: var(--text-soft);
  font-weight: 760;
}

.agenda-day-list,
.agenda-day-slots,
.agenda-slot-bookings,
.history-group-list {
  display: grid;
  gap: 7px;
}

.agenda-day {
  border: 1px solid rgba(63, 116, 124, 0.16);
  border-radius: 10px;
  background: #fbfaf9;
  overflow: hidden;
}

.agenda-day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 9px 11px;
}

.agenda-day-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
}

.agenda-day-heading span {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.agenda-day-slots {
  padding: 7px;
}

.agenda-slot-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(63, 116, 124, 0.12);
  border-radius: 10px;
  background: white;
  padding: 8px;
}

.agenda-slot-row.is-empty {
  background: rgba(248, 248, 247, 0.82);
}

.agenda-slot-row.is-occupied {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
}

.agenda-time,
.agenda-empty,
.agenda-contact,
.agenda-state {
  display: grid;
  gap: 3px;
}

.agenda-time strong,
.agenda-empty strong,
.agenda-contact strong {
  color: var(--text);
}

.agenda-time span,
.agenda-empty span,
.agenda-contact span,
.agenda-state span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 760;
}

.agenda-booking-card {
  display: grid;
  grid-template-columns: minmax(176px, 1.28fr) minmax(130px, 0.82fr) minmax(108px, 0.62fr) minmax(184px, auto);
  align-items: center;
  gap: 8px;
  border-left: 3px solid rgba(63, 116, 124, 0.24);
  border-radius: 8px;
  background: #f8f8f7;
  padding: 7px 8px;
}

.agenda-booking-card.is-pending {
  border-left-color: var(--primary);
  background: #fff;
}

.agenda-booking-card.is-history {
  opacity: 0.92;
}

.agenda-booking-card.is-compact {
  grid-template-columns: minmax(176px, 1.35fr) minmax(132px, 0.85fr) minmax(108px, 0.62fr) minmax(172px, auto);
  padding: 7px 8px;
}

.agenda-pet {
  display: flex;
  align-items: center;
  gap: 7px;
}

.agenda-pet strong {
  display: block;
  color: var(--text);
}

.agenda-pet span {
  display: block;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 760;
}

.agenda-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.agenda-overlap-action {
  display: flex;
  justify-content: flex-end;
  padding: 2px 4px 0;
}

.agenda-overlap-action .text-link {
  border-radius: 999px;
  background: rgba(63, 116, 124, 0.1);
  color: var(--primary-dark);
  padding: 5px 8px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 900;
}

.agenda-overlap-action .text-link:hover {
  background: rgba(63, 116, 124, 0.18);
}

.agenda-action-panel {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.agenda-primary-actions,
.agenda-secondary-actions,
.agenda-link-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.agenda-primary-actions .action-button {
  min-width: 102px;
}

.agenda-secondary-actions .action-button {
  min-height: 26px;
  padding: 0 7px;
  font-size: 0.72rem;
}

.agenda-link-row .text-link {
  font-size: 0.76rem;
}

.upcoming-day {
  border: 1px solid rgba(63, 116, 124, 0.14);
  border-radius: 10px;
  background: #fbfaf9;
  overflow: hidden;
}

.upcoming-day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 8px 10px;
}

.upcoming-day-heading strong {
  color: var(--text);
}

.upcoming-day-heading span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.upcoming-list {
  padding: 7px;
}

.compact-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.history-group {
  border: 1px solid rgba(63, 116, 124, 0.14);
  border-radius: 10px;
  background: white;
}

.history-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 8px 10px;
  color: var(--text);
  font-weight: 900;
}

.history-group summary strong {
  color: var(--primary-dark);
}

.history-group-list {
  border-top: 1px solid var(--line);
  padding: 7px;
}

.admin-overlap-notice,
.admin-overlap-reason {
  margin-top: 14px;
  border: 1px solid rgba(217, 159, 170, 0.6);
  border-radius: 10px;
  background: #fff7f8;
  padding: 12px;
}

.admin-overlap-notice {
  display: grid;
  gap: 4px;
  color: var(--text-soft);
  font-weight: 760;
}

.admin-overlap-notice strong {
  color: #7a2635;
}

.admin-slot-context {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  border: 1px solid rgba(63, 116, 124, 0.2);
  border-radius: 10px;
  background: rgba(63, 116, 124, 0.1);
  color: var(--text-soft);
  padding: 11px 13px;
  font-weight: 780;
}

.admin-slot-context strong {
  color: var(--primary-dark);
}

.admin-slot-context.is-overlap {
  border-color: rgba(217, 159, 170, 0.58);
  background: #fff7f8;
}

.admin-slot-context.is-overlap strong {
  color: #7a2635;
}

.slot-chip.is-override {
  border-color: rgba(217, 159, 170, 0.85);
}

.slot-override-badge {
  color: #7a2635;
  font-size: 0.76rem;
  font-weight: 900;
}

.inbox-booking-row {
  display: grid;
  grid-template-columns: 122px minmax(178px, 1.22fr) minmax(136px, 0.82fr) 104px 112px minmax(168px, auto);
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(63, 116, 124, 0.16);
  border-left: 5px solid transparent;
  border-radius: 10px;
  background: #fbfaf9;
  padding: 10px 11px;
}

.inbox-booking-row.is-pending {
  border-left-color: var(--primary);
  background: white;
}

.inbox-booking-row.is-history {
  border-left-color: rgba(52, 50, 45, 0.18);
  background: #f8f8f7;
  opacity: 0.92;
}

.history-panel {
  margin-top: 10px;
  background: rgba(248, 248, 247, 0.94);
}

.history-panel .panel-heading span {
  color: var(--text-soft);
}

.inbox-date,
.inbox-pet,
.inbox-tutor,
.inbox-money,
.inbox-actions {
  display: grid;
  gap: 3px;
}

.inbox-pet {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inbox-date strong,
.inbox-pet strong,
.inbox-tutor strong,
.inbox-money strong {
  color: var(--text);
}

.inbox-date span,
.inbox-pet span,
.inbox-tutor span,
.inbox-money span {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 760;
}

.inbox-actions {
  justify-items: end;
}

.inbox-actions .action-row {
  justify-content: flex-end;
}

.inbox-actions .text-link {
  font-size: 0.82rem;
}

.requests-panel .worker-card-stack {
  gap: 8px;
}

.schedule-slot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.worker-booking-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 9px;
  border: 1px solid rgba(63, 116, 124, 0.18);
  border-radius: 10px;
  background: #fbfaf9;
  padding: 12px;
}

.request-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(150px, 0.8fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(63, 116, 124, 0.16);
  border-radius: 10px;
  background: #fbfaf9;
  padding: 10px 12px;
}

.worker-booking-main,
.worker-booking-meta,
.worker-card-actions,
.request-row-main,
.request-row-contact,
.request-row-actions,
.pet-inline,
.profile-card-link,
.pet-profile-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.worker-booking-main strong,
.request-row-main strong,
.profile-card-link strong {
  display: block;
  color: var(--text);
}

.worker-booking-main span,
.request-row-main span,
.profile-card-link small {
  display: block;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.request-row-contact {
  display: grid;
  gap: 2px;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.request-row-contact small {
  color: var(--primary-dark);
  font-size: 0.78rem;
}

.request-row-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.request-row-actions .action-row {
  justify-content: flex-end;
}

.worker-booking-meta {
  justify-content: space-between;
  color: var(--text-soft);
  font-weight: 850;
}

.worker-card-actions {
  flex-wrap: wrap;
  justify-content: space-between;
}

.worker-card-actions .action-row {
  margin-left: auto;
}

.schedule-slot-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f8f7;
  padding: 12px;
}

.schedule-slot-card > time {
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 950;
}

.schedule-slot-card.is-booked {
  background: white;
}

.empty-panel {
  margin: 0;
  color: var(--text-soft);
  font-weight: 750;
}

.pet-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  font-weight: 950;
}

.pet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-avatar-large {
  width: 88px;
  height: 88px;
  font-size: 2rem;
}

.pet-avatar-small {
  width: 42px;
  height: 42px;
}

.pet-avatar-tiny {
  width: 28px;
  height: 28px;
  font-size: 0.82rem;
}

.profile-card-link {
  min-height: 64px;
  border: 1px solid rgba(63, 116, 124, 0.18);
  border-radius: 10px;
  background: #fbfaf9;
  padding: 10px;
  text-decoration: none;
}

.inline-admin-form,
.stacked-admin-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.inline-admin-form {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: end;
}

.stacked-admin-form textarea {
  min-height: 120px;
}

.upload-form input[type="file"] {
  min-height: auto;
  padding: 12px;
  background: #f8f8f7;
}

.dog-photo-upload-card {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dog-photo-upload-card h3 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.dog-photo-upload-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

.dog-photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-photo-form {
  display: grid;
  gap: 10px;
  margin: 0;
}

.photo-input-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 14px;
  border: 1px solid rgba(63, 116, 124, 0.28);
  border-radius: 12px;
  background: #f8f8f7;
}

.photo-input-card strong {
  color: var(--primary-dark);
  font-size: 1rem;
}

.photo-input-card small {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.photo-input-card input[type="file"] {
  width: 100%;
  min-height: 44px;
  padding: 9px;
  border-color: rgba(63, 116, 124, 0.22);
  background: white;
}

.secondary-photo-input {
  background: #fbfaf9;
}

.mobile-photo-form button {
  min-height: 44px;
}

.danger-button {
  background: #9b3b4a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 12px;
}

.stat-tile {
  border: 1px solid var(--line);
  background: white;
  padding: 9px 10px;
}

.stat-tile span {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.stat-tile strong {
  display: block;
  margin-top: 3px;
  color: var(--primary-dark);
  font-size: 1.18rem;
  line-height: 1;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto auto;
  align-items: end;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 10px;
  border: 1px solid var(--line);
  background: white;
}

.history-filter-bar {
  grid-template-columns: minmax(138px, 170px) minmax(260px, 1fr) auto auto;
  align-items: end;
  gap: 8px;
  padding: 8px;
}

.history-filter-bar .wide {
  grid-column: auto;
}

.history-filter-bar label {
  gap: 5px;
  font-size: 0.78rem;
}

.history-filter-bar input,
.history-filter-bar select {
  min-height: 38px;
  padding: 8px 10px;
}

.history-filter-bar button,
.history-filter-bar .text-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.extras-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--text);
  transition: border-color 160ms ease, transform 160ms ease;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.check-field small {
  display: block;
  color: var(--text-soft);
  font-weight: 600;
}

.confirmation,
.admin-shell {
  width: min(1040px, calc(100% - 36px));
  margin: 42px auto 72px;
  padding: clamp(24px, 4vw, 44px);
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.details-list div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.actions,
.admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-heading h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: white;
}

table {
  width: 100%;
  min-width: 1760px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--text-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--primary-dark);
  background: rgba(63, 116, 124, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
}

.badge-confirmed {
  color: #175d35;
  background: rgba(23, 93, 53, 0.13);
}

.badge-completed {
  color: #22545d;
  background: rgba(63, 116, 124, 0.18);
}

.badge-hold-pending-payment {
  color: var(--primary-dark);
  background: rgba(63, 116, 124, 0.13);
}

.badge-cancelled {
  color: #7a2635;
  background: rgba(217, 159, 170, 0.28);
}

.badge-rejected {
  color: #7a2635;
  background: rgba(217, 159, 170, 0.22);
}

.badge-no-show {
  color: #5b4a23;
  background: rgba(240, 235, 229, 0.95);
}

.badge-expired {
  color: #5b4a23;
  background: rgba(240, 235, 229, 0.95);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.action-row form {
  margin: 0;
}

.action-button {
  min-height: 30px;
  padding: 0 8px;
  font-size: 0.76rem;
}

.action-button.muted {
  color: var(--text);
  background: var(--sand);
}

.action-button.danger {
  background: #9b3b4a;
}

.action-button.muted:hover {
  color: white;
  background: var(--primary-dark);
}

.action-button.danger:hover {
  background: #7a2635;
}

.muted-text {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0;
}

.detail-panel {
  border: 1px solid var(--line);
  background: white;
  padding: clamp(18px, 3vw, 26px);
}

.detail-panel h2 {
  margin-bottom: 16px;
}

.detail-panel .details-list {
  margin: 0 0 20px;
}

.detail-panel .wide {
  grid-column: 1 / -1;
}

.profile-shell {
  display: grid;
  gap: 12px;
}

.profile-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(63, 116, 124, 0.18);
  background: #fff;
  padding: 14px;
}

.profile-identity,
.profile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-identity h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.profile-identity p {
  margin: 2px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.profile-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.profile-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.profile-metric {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
}

.profile-metric span {
  display: block;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 850;
}

.profile-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.profile-operational-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
}

.profile-panel {
  padding: 14px;
}

.profile-contact-list {
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
}

.profile-contact-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}

.profile-contact-list dt {
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 850;
}

.profile-contact-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  word-break: break-word;
}

.profile-mini-card {
  justify-content: space-between;
  border: 1px solid rgba(63, 116, 124, 0.14);
  background: #fbfaf9;
  padding: 9px 10px;
}

.profile-mini-card > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.profile-alert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.profile-alert-strip span {
  border-radius: 999px;
  background: rgba(217, 159, 170, 0.22);
  color: #7a2635;
  padding: 5px 8px;
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-timeline {
  display: grid;
  gap: 7px;
}

.profile-timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(63, 116, 124, 0.14);
  background: #fbfaf9;
  padding: 8px 10px;
}

.profile-timeline-date,
.profile-timeline-main {
  display: grid;
  gap: 2px;
}

.profile-timeline-date strong,
.profile-timeline-main strong {
  color: var(--text);
  font-size: 0.84rem;
}

.profile-timeline-date span,
.profile-timeline-main span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.rejected-request-list {
  display: grid;
  gap: 8px;
}

.rejected-request-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(180px, 1fr) minmax(160px, 0.9fr) minmax(150px, 0.8fr) minmax(190px, auto);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(217, 159, 170, 0.36);
  border-left: 5px solid #d99faa;
  background: #fff;
  padding: 9px;
}

.rejected-request-when,
.rejected-request-main,
.rejected-request-contact,
.rejected-request-state {
  display: grid;
  gap: 2px;
}

.rejected-request-card strong {
  color: var(--text);
  font-size: 0.84rem;
}

.rejected-request-card span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.compact table {
  min-width: 760px;
}

code {
  color: var(--text-soft);
  white-space: normal;
}

.empty {
  color: var(--text-soft);
  text-align: center;
}

@media (max-width: 900px) {
  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .worker-shell {
    width: min(100%, calc(100% - 24px));
  }

  .admin-sidebar {
    position: static;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
  }

  .admin-sidebar nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-sidebar a {
    white-space: nowrap;
  }

  .booking-shell {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .admin-new-booking .booking-shell {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    position: static;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .wizard-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-panel {
    position: static;
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .summary-panel > button[type="submit"] {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }

  .stats-grid,
  .detail-layout,
  .worker-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .schedule-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inbox-booking-row {
    grid-template-columns: minmax(120px, 0.7fr) minmax(220px, 1.3fr) minmax(160px, 1fr);
  }

  .agenda-slot-row,
  .agenda-booking-card,
  .pending-request-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .agenda-actions {
    justify-content: flex-start;
  }

  .agenda-action-panel,
  .agenda-primary-actions,
  .agenda-secondary-actions,
  .agenda-link-row,
  .agenda-overlap-action {
    justify-content: flex-start;
    justify-items: start;
  }

  .inbox-money,
  .inbox-status,
  .inbox-actions {
    grid-column: span 1;
  }

  .request-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar,
  .actions,
  .admin-heading,
  .worker-heading-actions,
  .whatsapp-next-step {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-next-step {
    grid-template-columns: 1fr;
  }

  .whatsapp-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .field-grid,
  .choice-grid,
  .choice-grid.weight-grid,
  .extras-list,
  .details-list,
  .stats-grid,
  .detail-layout,
  .profile-operational-grid,
  .worker-dashboard-grid,
  .schedule-slot-grid,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .profile-hero,
  .profile-identity,
  .profile-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-timeline-item,
  .rejected-request-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .inbox-booking-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .inbox-actions {
    justify-items: start;
  }

  h1 {
    font-size: 2.45rem;
  }
}

body.public-booking-page {
  min-height: 100svh;
  color: white;
  background: #075e77;
}

.public-booking-page main {
  min-height: calc(100svh - 72px);
}

.public-booking-page .topbar {
  position: static;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: white;
  backdrop-filter: none;
}

.public-booking-page .brand small,
.public-booking-page .topnav a {
  color: rgba(255, 255, 255, 0.78);
}

.public-booking-page .topbar-dog-lane {
  color: rgba(255, 255, 255, 0.72);
  --dog-body: rgba(255, 255, 255, 0.74);
  --dog-chest: rgba(255, 255, 255, 0.86);
  --dog-ear: rgba(217, 159, 170, 0.72);
  --dog-snout: rgba(255, 255, 255, 0.92);
  --dog-line: rgba(7, 94, 119, 0.76);
  --dog-shadow: rgba(255, 255, 255, 0.12);
}

.public-booking-page .topbar-dog-lane::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.public-booking-page .topbar-dog-window {
  stroke: rgba(255, 255, 255, 0.28);
}

.public-booking-page .topbar-dog-main {
  --dog-body: rgba(255, 255, 255, 0.82);
  --dog-ear: rgba(217, 159, 170, 0.76);
  --dog-snout: rgba(255, 255, 255, 0.95);
  --dog-line: rgba(7, 94, 119, 0.78);
}

.public-booking-page .topbar-dog-fast {
  --dog-body: rgba(217, 159, 170, 0.82);
  --dog-ear: rgba(255, 255, 255, 0.7);
  --dog-snout: rgba(255, 255, 255, 0.92);
  --dog-line: rgba(122, 38, 53, 0.7);
}

.public-booking-page .topbar-dog-long-runner {
  --dog-long-body: rgba(255, 255, 255, 0.82);
  --dog-long-ear: rgba(217, 159, 170, 0.72);
  --dog-long-snout: rgba(251, 250, 249, 0.95);
  --dog-long-spot: rgba(217, 159, 170, 0.58);
  --dog-long-line: rgba(7, 94, 119, 0.58);
  --dog-long-collar: rgba(255, 255, 255, 0.74);
  --dog-long-shadow: rgba(255, 255, 255, 0.1);
}

.public-booking-page .topbar-dog-chase-runner {
  --dog-chase-body: rgba(255, 255, 255, 0.82);
  --dog-chase-ear: rgba(217, 159, 170, 0.76);
  --dog-chase-snout: rgba(251, 250, 249, 0.96);
  --dog-chase-patch: rgba(217, 159, 170, 0.5);
  --dog-chase-line: rgba(7, 94, 119, 0.68);
  --dog-chase-collar: rgba(255, 255, 255, 0.78);
  --dog-chase-shadow: rgba(255, 255, 255, 0.12);
  --dog-ball: rgba(217, 159, 170, 0.92);
  --dog-ball-line: rgba(122, 38, 53, 0.64);
}

.public-booking-page .topbar-dog-peek-main {
  --dog-body: rgba(255, 255, 255, 0.88);
  --dog-ear: rgba(217, 159, 170, 0.88);
  --dog-snout: rgba(251, 250, 249, 0.96);
  --dog-line: rgba(7, 94, 119, 0.78);
}

.public-booking-page .brand-mark {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.94);
}

.public-booking-page .brand-mark img {
  width: 36px;
}

.public-booking-page .legacy-booking-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(960px, calc(100% - 32px));
  margin: 12px auto 40px;
}

.public-booking-page .legacy-intro {
  position: static;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 4px 16px 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.legacy-logo {
  width: min(168px, 44vw);
  height: auto;
  margin-bottom: 2px;
  filter: brightness(0) invert(1);
}

.public-booking-page .legacy-intro .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.public-booking-page .legacy-intro h1 {
  margin-bottom: 2px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.public-booking-page .legacy-intro .lede {
  width: min(620px, 100%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.public-booking-page .legacy-booking-form {
  display: block;
}

.public-booking-page .legacy-booking-form > .alert {
  margin-bottom: 12px;
  border-radius: 10px;
}

.public-booking-page .legacy-stepper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.public-booking-page .wizard-step-button {
  min-height: 44px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.09);
}

.public-booking-page .wizard-step-button span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
}

.public-booking-page .wizard-step-button.is-active {
  color: var(--primary-dark);
  background: white;
}

.public-booking-page .wizard-step-button.is-complete:not(.is-active) {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.public-booking-page .wizard-step-button:disabled {
  opacity: 0.48;
}

.booking-card {
  display: grid;
  gap: 14px;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(3, 45, 58, 0.24);
  padding: clamp(16px, 2.4vw, 24px);
}

.public-booking-page .wizard-step {
  display: block;
}

.public-booking-page .booking-form.is-enhanced .wizard-step {
  display: none;
}

.public-booking-page .booking-form.is-enhanced .wizard-step.is-active {
  display: block;
}

.public-booking-page .booking-form.is-enhanced .fallback-submit {
  display: none;
}

.public-booking-page .form-section {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.public-booking-page .section-heading {
  align-items: center;
  margin-bottom: 16px;
}

.public-booking-page .section-heading > span {
  background: var(--primary-dark);
}

.public-booking-page .section-heading h2 {
  color: var(--text);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.public-booking-page .section-heading p,
.public-booking-page label,
.public-booking-page .muted-text {
  color: var(--text-soft);
}

.public-booking-page .choice-grid {
  gap: 10px;
}

.public-booking-page .weight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-booking-page .choice-card {
  min-height: 96px;
  border: 2px solid rgba(29, 42, 48, 0.12);
  border-left-width: 2px;
  border-radius: 10px;
  padding: 14px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.public-booking-page .service-card {
  justify-items: center;
  min-height: 224px;
  padding: 20px 18px;
  text-align: center;
}

.public-booking-page .service-card::after,
.public-booking-page .weight-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(29, 42, 48, 0.22);
  border-radius: 50%;
  background: white;
}

.public-booking-page .service-card.is-selected::after,
.public-booking-page .weight-card.is-selected::after {
  border-color: var(--primary-dark);
  background: radial-gradient(circle, var(--primary-dark) 0 42%, white 46%);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 1px solid rgba(7, 94, 119, 0.18);
  color: var(--primary-dark);
  background: #eaf2f1;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.62);
  line-height: 1;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.public-booking-page .service-card.is-selected .service-icon {
  color: white;
  background: var(--primary-dark);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.public-booking-page .service-card strong {
  font-size: 1.2rem;
}

.public-booking-page .service-card span:not(.service-icon) {
  max-width: 26ch;
  margin-inline: auto;
}

.public-booking-page .service-card small {
  justify-items: center;
  color: var(--text-soft);
}

.public-booking-page .service-card em {
  margin-top: 4px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.public-booking-page .choice-card:hover,
.public-booking-page .choice-card:focus-within,
.public-booking-page .choice-card.is-selected,
.public-booking-page .optional-extra:hover,
.public-booking-page .optional-extra:focus-within,
.public-booking-page .optional-extra.is-selected,
.public-booking-page .slot-chip:hover,
.public-booking-page .slot-chip:focus-visible,
.public-booking-page .slot-chip.is-selected {
  border-color: var(--primary-dark);
  border-left-color: var(--primary-dark);
  background: #fbfaf9;
}

.public-booking-page .selection-insight {
  border-radius: 8px;
  border-left-color: var(--blush);
  background: var(--paper);
  font-size: 0.9rem;
}

.service-extras,
.extras-step-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(63, 116, 124, 0.16);
  border-radius: 12px;
  background: rgba(63, 116, 124, 0.06);
}

.service-extras h3,
.service-extras p,
.extras-step-panel h3,
.extras-step-panel p {
  margin: 0;
}

.service-extras h3,
.extras-step-panel h3 {
  color: var(--text);
  font-size: 1rem;
}

.service-extras p,
.extras-step-panel p {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.public-booking-page .extras-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.optional-extra {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 204px;
  padding: 20px 16px 16px;
  border: 2px solid rgba(29, 42, 48, 0.12);
  border-radius: 10px;
  background: white;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.optional-extra input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.optional-extra .extra-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(29, 42, 48, 0.22);
  border-radius: 50%;
  background: white;
}

.optional-extra.is-selected .extra-toggle {
  border-color: var(--primary-dark);
  background: radial-gradient(circle, var(--primary-dark) 0 42%, white 46%);
}

.optional-extra.is-disabled {
  color: rgba(29, 42, 48, 0.56);
  background: rgba(255, 255, 255, 0.62);
  cursor: not-allowed;
}

.extra-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(7, 94, 119, 0.18);
  color: var(--primary-dark);
  background: #eaf2f1;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.62);
}

.extra-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.optional-extra.is-selected .extra-icon {
  color: white;
  background: var(--primary-dark);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.optional-extra.is-disabled .extra-toggle {
  background: #f0ebe5;
}

.optional-extra .extra-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  width: 100%;
  line-height: 1.25;
  text-align: center;
}

.optional-extra strong {
  font-size: 1.04rem;
}

.optional-extra small {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.optional-extra .extra-price {
  color: var(--primary-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

.optional-extra .transport-rule {
  display: grid;
  gap: 4px;
  justify-self: center;
  width: min(100%, 30ch);
  max-width: 30ch;
  color: var(--primary-dark);
  font-weight: 800;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.optional-extra .transport-rule span {
  display: block;
  width: 100%;
  text-align: center;
}

.optional-extra .transport-rule span::before {
  content: "- ";
}

.optional-extra.is-disabled .transport-lead-rule {
  color: #9b3b4a;
}

.evaluation-note {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(63, 116, 124, 0.18);
  border-left: 4px solid var(--primary-dark);
  border-radius: 10px;
  background: rgba(63, 116, 124, 0.07);
}

.evaluation-note strong {
  color: var(--primary-dark);
  font-size: 0.96rem;
}

.evaluation-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.evaluation-note span {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.iti {
  width: 100%;
}

.iti .phone-input {
  width: 100%;
}

.iti__selected-country {
  min-height: 46px;
  border-right: 1px solid rgba(29, 42, 48, 0.14);
  background: rgba(63, 116, 124, 0.08);
}

.iti__dropdown-content {
  color: var(--text);
  border-color: rgba(29, 42, 48, 0.16);
  box-shadow: 0 16px 40px rgba(29, 42, 48, 0.14);
}

.iti__country-list {
  color: var(--text);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
}

.date-card,
.time-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(63, 116, 124, 0.18);
  border-radius: 12px;
  background: var(--paper);
}

.date-card {
  align-content: start;
}

.date-card > label,
.field-title {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.booking-form.is-enhanced .date-card input[type="date"] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.mini-calendar {
  display: grid;
  gap: 10px;
}

.calendar-header {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
}

.calendar-header strong {
  color: var(--text);
  text-align: center;
  text-transform: capitalize;
}

.calendar-nav {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 0;
  border-radius: 999px;
  font-size: 1.2rem;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  color: var(--text-soft);
  text-align: center;
  font-size: 0.74rem;
  font-weight: 900;
}

.calendar-empty,
.calendar-day {
  min-height: 34px;
}

.calendar-day {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.calendar-day:hover,
.calendar-day:focus-visible,
.calendar-day.is-selected {
  border-color: var(--primary-dark);
  color: white;
  background: var(--primary-dark);
}

.calendar-day:disabled {
  color: rgba(52, 50, 45, 0.32);
  background: transparent;
  cursor: not-allowed;
}

.calendar-day.is-loading:disabled {
  color: rgba(63, 116, 124, 0.5);
  background: rgba(255, 255, 255, 0.52);
}

.calendar-day.is-unavailable:disabled {
  color: rgba(52, 50, 45, 0.24);
  text-decoration: line-through;
}

.selected-date-title {
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.time-card .selected-time {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(7, 94, 119, 0.2);
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.public-booking-page .slot-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.public-booking-page .slot-chip {
  display: grid;
  gap: 5px;
  min-height: 68px;
  justify-content: center;
  border: 2px solid rgba(29, 42, 48, 0.12);
  border-left-width: 2px;
  border-radius: 12px;
  background: white;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.public-booking-page .slot-discount-badge {
  justify-self: center;
  color: white;
  background: var(--primary-dark);
}

.public-booking-page .slot-chip.is-selected {
  color: var(--primary-dark);
  background: #f8f8f7;
}

.time-card .availability-message {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.transport-details-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(63, 116, 124, 0.18);
  border-radius: 12px;
  background: rgba(63, 116, 124, 0.06);
}

.transport-details-panel[hidden] {
  display: none;
}

.transport-details-panel > div {
  grid-column: 1 / -1;
}

.transport-details-panel h3,
.transport-details-panel p {
  margin: 0;
}

.transport-details-panel h3 {
  color: var(--text);
  font-size: 1rem;
}

.transport-details-panel p {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.public-booking-page .summary-panel {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  max-height: none;
  overflow: visible;
  border: 1px solid rgba(63, 116, 124, 0.16);
  border-top: 0;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: none;
  padding: 14px;
}

.public-booking-page .summary-panel[hidden] {
  display: none;
}

.public-booking-page .summary-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.public-booking-page .summary-heading .eyebrow {
  margin: 0;
}

.public-booking-page .summary-heading h2 {
  margin: 0;
  color: var(--text);
}

.public-booking-page .summary-heading p:last-child {
  max-width: 360px;
  text-align: right;
}

.public-booking-page .summary-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0;
  background: transparent;
  gap: 8px;
}

.public-booking-page .summary-list div {
  grid-template-columns: minmax(74px, 0.8fr) minmax(0, 1.2fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 9px 10px;
}

.public-booking-page .summary-list dt,
.public-booking-page .summary-list dd {
  color: var(--text);
}

.public-booking-page .summary-list dd {
  overflow-wrap: anywhere;
}

.public-booking-page .summary-list .money-row {
  background: white;
}

.public-booking-page .summary-list .money-total {
  border-color: rgba(7, 94, 119, 0.3);
  background: rgba(63, 116, 124, 0.08);
}

.public-booking-page .hold-note {
  border-radius: 8px;
}

.public-booking-page .summary-panel > button[type="submit"] {
  width: 100%;
}

.public-booking-page .fallback-submit {
  width: 100%;
}

.public-booking-page .fineprint {
  text-align: center;
}

@media (min-width: 1180px) and (min-height: 720px) {
  .public-booking-page .legacy-booking-shell {
    margin-top: 8px;
  }

  .booking-card {
    min-height: 410px;
  }
}

@media (max-width: 900px) {
  .public-booking-page .legacy-stepper {
    grid-template-columns: repeat(6, minmax(72px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .public-booking-page .wizard-step-button {
    white-space: nowrap;
  }

  .public-booking-page .summary-heading {
    display: block;
  }

  .public-booking-page .summary-heading p:last-child {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .topbar-dog-lane {
    display: none;
  }

  .public-booking-page .legacy-booking-shell {
    width: min(100% - 20px, 960px);
    margin-top: 8px;
  }

  .public-booking-page .topbar {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 12px;
  }

  .public-booking-page .topnav {
    margin-left: auto;
  }

  .public-booking-page .brand span:not(.brand-mark) {
    display: none;
  }

  .booking-card {
    border-radius: 12px;
    padding: 14px;
  }

  .public-booking-page .weight-grid,
  .public-booking-page .choice-grid,
  .public-booking-page .extras-list,
  .public-booking-page .details-grid,
  .public-booking-page .slot-chip-grid,
  .public-booking-page .summary-list {
    grid-template-columns: 1fr;
  }

  .service-extras,
  .extras-step-panel,
  .public-booking-page .extras-list {
    align-items: stretch;
    flex-direction: column;
  }

  .optional-extra {
    width: 100%;
    border-radius: 12px;
    min-height: 176px;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .transport-details-panel {
    grid-template-columns: 1fr;
  }

  .dog-photo-upload-grid {
    grid-template-columns: 1fr;
  }

  .photo-input-card {
    min-height: 128px;
  }

  .public-booking-page .legacy-intro h1 {
    font-size: 2rem;
  }
}
