/* Additive UX/accessibility layer. Does not replace site.css visual identity. */
.skip-link {
  position: absolute;
  left: 16px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  z-index: 10000;
  background: #172033;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  overflow: visible;
}
.ux-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.ux-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #172033;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
  font-size: 14px;
}
.ux-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
:focus-visible {
  outline: 2px solid #2b6cb0;
  outline-offset: 3px;
}
.booking-progress {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f8f8;
  border: 1px solid #e5e7eb;
}
.booking-progress strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .04em;
}
.booking-progress ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.booking-progress li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #667085;
}
.booking-progress li.is-done em {
  color: #172033;
  font-style: normal;
  font-weight: 600;
}
.ux-caps {
  margin: 6px 0 0;
  color: #8d2929;
  font-size: 13px;
}
html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  html *, html *::before, html *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.customer-page {
  display: grid;
  gap: 18px;
}
.customer-hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--app-border, #dce5e3);
  border-radius: 16px;
  background: #f7faf9;
}
.customer-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #5d726e;
}
.customer-hero h3 {
  margin: 0 0 6px;
}
.customer-hero p,
.customer-appt-row p {
  margin: 0;
}
.customer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.customer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.customer-grid h3 {
  margin: 0 0 10px;
}
.next-appointment-card {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(74, 120, 113, .1);
}
.next-appointment-card span {
  font-size: 12px;
  color: #4a7871;
}
.customer-appt-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(40, 54, 79, .08);
}
.customer-appt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media (max-width: 900px) {
  .customer-hero,
  .customer-grid,
  .customer-appt-row {
    grid-template-columns: 1fr;
    display: grid;
  }
}
