:root {
  color-scheme: light;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --salon-primary: #a97561;
  --salon-primary-strong: #895746;
  --salon-primary-soft: rgba(169, 117, 97, 0.12);
  --salon-on-primary: #fff;
  --salon-page-background: #f8f4ef;
  --salon-surface: #fffdfc;
  --salon-surface-muted: #f4ece6;
  --salon-text-primary: #191716;
  --salon-text-secondary: #746d68;
  --salon-border: rgba(91, 68, 58, 0.1);
  --salon-radius: 22px;
  --salon-secondary: #c9a99b;
  --booking-safe-top: env(safe-area-inset-top, 0px);
  --booking-safe-bottom: env(safe-area-inset-bottom, 0px);
}

html[data-theme-mode="dark"] {
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
}

body {
  background: var(--salon-page-background);
  color: var(--salon-text-primary);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

.public-booking-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 88% 0%, var(--salon-primary-soft), transparent 34%),
    var(--salon-page-background);
}

.booking-app-shell {
  min-height: 100dvh;
  max-width: 760px;
  margin: 0 auto;
  background: var(--salon-page-background);
}

.booking-app-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  min-height: calc(68px + var(--booking-safe-top));
  padding: calc(10px + var(--booking-safe-top)) 16px 10px;
  border-bottom: 1px solid var(--salon-border);
  background: color-mix(in srgb, var(--salon-page-background) 92%, transparent);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
}

.booking-icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--salon-border);
  border-radius: 15px;
  background: var(--salon-surface);
  color: var(--salon-text-primary);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(37, 24, 19, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.booking-icon-button:active {
  transform: scale(0.96);
}

.booking-header-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.booking-header-brand > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.booking-header-brand small {
  color: var(--salon-text-secondary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.booking-header-brand strong {
  overflow: hidden;
  color: var(--salon-text-primary);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-salon-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--salon-border);
  border-radius: 13px;
  background: color-mix(in srgb, var(--salon-secondary) 20%, var(--salon-surface));
  color: var(--salon-primary-strong);
  font-size: 14px;
  font-weight: 800;
}

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

.booking-stepper {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 560px;
  margin: 0 auto;
  padding: 17px 12px 12px;
}

.booking-stepper::before {
  position: absolute;
  top: 33px;
  right: calc(12.5% + 13px);
  left: calc(12.5% + 13px);
  height: 1px;
  background: var(--salon-border);
  content: "";
}

.booking-stepper-item {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 50px;
  place-items: start center;
  gap: 6px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: var(--salon-text-secondary);
  cursor: default;
}

.booking-stepper-item > span {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--salon-border);
  border-radius: 50%;
  background: var(--salon-surface);
  color: var(--salon-text-secondary);
  font-size: 12px;
  font-weight: 750;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.booking-stepper-item small {
  overflow: hidden;
  max-width: 100%;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-stepper-item.is-complete {
  cursor: pointer;
}

.booking-stepper-item.is-active,
.booking-stepper-item.is-complete {
  color: var(--salon-text-primary);
}

.booking-stepper-item.is-active > span,
.booking-stepper-item.is-complete > span {
  border-color: var(--salon-primary);
  background: var(--salon-primary);
  color: var(--salon-on-primary);
}

.booking-stepper-item.is-active > span {
  transform: scale(1.08);
  box-shadow: 0 7px 18px var(--salon-primary-soft);
}

.booking-main {
  width: 100%;
  padding: 6px 16px calc(112px + var(--booking-safe-bottom));
}

.booking-step-pane {
  width: 100%;
  animation: booking-pane-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking-section-heading {
  margin: 5px 0 22px;
}

.booking-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--salon-primary-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-section-heading h1,
.booking-success h1 {
  margin: 0;
  color: var(--salon-text-primary);
  font-size: clamp(24px, 7vw, 31px);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.booking-section-heading p,
.booking-success > p {
  margin: 8px 0 0;
  color: var(--salon-text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.booking-global-alert {
  margin: 0 0 16px;
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, #cf425d 28%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, #cf425d 10%, var(--salon-surface));
  color: #b72f49;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

html[data-theme-mode="dark"] .booking-global-alert {
  color: #ff9caf;
}

.booking-choice-list {
  display: grid;
  gap: 11px;
}

.booking-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--salon-border);
  border-radius: var(--salon-radius);
  background: var(--salon-surface);
  color: var(--salon-text-primary);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(46, 30, 23, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-choice-card:hover {
  border-color: color-mix(in srgb, var(--salon-primary) 36%, var(--salon-border));
}

.booking-choice-card:active {
  transform: scale(0.985);
}

.booking-choice-card.is-selected {
  border-color: var(--salon-primary);
  background: color-mix(in srgb, var(--salon-primary-soft) 62%, var(--salon-surface));
  box-shadow: 0 10px 30px var(--salon-primary-soft);
}

.booking-choice-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.booking-choice-copy strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.booking-choice-copy small {
  color: var(--salon-text-secondary);
  font-size: 12px;
  line-height: 1.35;
}

.booking-choice-meta {
  display: grid;
  min-width: 80px;
  justify-items: end;
  gap: 7px;
}

.booking-choice-meta strong {
  color: var(--salon-text-primary);
  font-size: 15px;
  font-weight: 780;
  white-space: nowrap;
}

.booking-radio-mark {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1.5px solid color-mix(in srgb, var(--salon-text-secondary) 45%, transparent);
  border-radius: 50%;
  background: var(--salon-surface);
}

.booking-radio-mark::after {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: transparent;
  content: "";
}

.booking-choice-card.is-selected .booking-radio-mark {
  border-color: var(--salon-primary);
}

.booking-choice-card.is-selected .booking-radio-mark::after {
  background: var(--salon-primary);
}

.booking-specialist-card {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.booking-specialist-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--salon-primary-soft);
  color: var(--salon-primary-strong);
  font-size: 15px;
  font-weight: 800;
}

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

.booking-skeleton-card {
  height: 92px;
  border: 1px solid var(--salon-border);
  border-radius: var(--salon-radius);
  background: linear-gradient(100deg, var(--salon-surface) 20%, var(--salon-surface-muted) 42%, var(--salon-surface) 64%);
  background-size: 300% 100%;
  animation: booking-skeleton 1.35s ease infinite;
}

.booking-empty-state {
  display: grid;
  width: 100%;
  min-height: 150px;
  flex: 1 0 100%;
  place-items: center;
  padding: 24px;
  border: 1px dashed color-mix(in srgb, var(--salon-text-secondary) 25%, transparent);
  border-radius: var(--salon-radius);
  color: var(--salon-text-secondary);
  text-align: center;
}

.booking-empty-state strong {
  display: block;
  margin-bottom: 6px;
  color: var(--salon-text-primary);
  font-size: 15px;
}

.booking-empty-state p {
  max-width: 310px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.booking-empty-state button {
  min-height: 44px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid var(--salon-border);
  border-radius: 14px;
  background: var(--salon-surface);
  color: var(--salon-primary-strong);
  font-weight: 700;
  cursor: pointer;
}

.booking-date-toolbar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.booking-date-toolbar > div {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 2px;
  text-align: center;
}

.booking-date-toolbar strong {
  font-size: 14px;
  font-weight: 750;
}

.booking-date-toolbar small {
  color: var(--salon-text-secondary);
  font-size: 11px;
}

.booking-date-tabs {
  display: flex;
  width: calc(100% + 32px);
  min-height: 78px;
  gap: 9px;
  margin: 0 -16px 22px;
  padding: 2px 16px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 16px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.booking-date-tabs::-webkit-scrollbar {
  display: none;
}

.booking-date-chip {
  display: grid;
  min-width: 66px;
  min-height: 70px;
  flex: 0 0 66px;
  place-items: center;
  gap: 1px;
  padding: 8px 6px;
  border: 1px solid var(--salon-border);
  border-radius: 18px;
  background: var(--salon-surface);
  color: var(--salon-text-primary);
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 6px 20px rgba(46, 30, 23, 0.035);
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.booking-date-chip:active {
  transform: scale(0.96);
}

.booking-date-chip span {
  color: var(--salon-text-secondary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-date-chip strong {
  font-size: 18px;
  line-height: 1.15;
}

.booking-date-chip small {
  color: var(--salon-text-secondary);
  font-size: 9px;
}

.booking-date-chip.is-selected {
  border-color: var(--salon-primary);
  background: var(--salon-primary);
  color: var(--salon-on-primary);
  box-shadow: 0 9px 25px var(--salon-primary-soft);
}

.booking-date-chip.is-selected span,
.booking-date-chip.is-selected small {
  color: currentColor;
  opacity: 0.84;
}

.booking-date-loading {
  display: grid;
  width: 100%;
  min-height: 70px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(100deg, var(--salon-surface) 20%, var(--salon-surface-muted) 42%, var(--salon-surface) 64%);
  background-size: 300% 100%;
  color: var(--salon-text-secondary);
  font-size: 12px;
  animation: booking-skeleton 1.35s ease infinite;
}

.booking-slots {
  display: grid;
  gap: 21px;
}

.booking-slot-group {
  display: grid;
  gap: 10px;
}

.booking-slot-group h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--salon-text-secondary);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.booking-slot-group h2::after {
  height: 1px;
  flex: 1;
  background: var(--salon-border);
  content: "";
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.booking-slot-button {
  display: grid;
  min-width: 0;
  min-height: 58px;
  place-items: center;
  gap: 2px;
  padding: 7px 5px;
  border: 1px solid var(--salon-border);
  border-radius: 15px;
  background: var(--salon-surface);
  color: var(--salon-text-primary);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.booking-slot-button:active {
  transform: scale(0.96);
}

.booking-slot-button strong {
  font-size: 14px;
  font-weight: 750;
}

.booking-slot-button small {
  overflow: hidden;
  width: 100%;
  color: var(--salon-text-secondary);
  font-size: 9px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-slot-button.is-selected {
  border-color: var(--salon-primary);
  background: var(--salon-primary);
  color: var(--salon-on-primary);
}

.booking-slot-button.is-selected small {
  color: currentColor;
  opacity: 0.82;
}

.booking-summary-card {
  display: grid;
  gap: 0;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--salon-border);
  border-radius: var(--salon-radius);
  background: var(--salon-surface);
  box-shadow: 0 10px 32px rgba(46, 30, 23, 0.045);
}

.booking-summary-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--salon-border);
}

.booking-summary-row:last-child {
  border-bottom: 0;
}

.booking-summary-row.is-payment {
  background: color-mix(in srgb, var(--salon-primary-soft) 58%, var(--salon-surface));
}

.booking-summary-row.is-payment .booking-summary-value {
  color: var(--salon-primary-strong);
  font-weight: 800;
}

.booking-summary-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: var(--salon-primary-soft);
  color: var(--salon-primary-strong);
}

.booking-summary-icon svg {
  width: 17px;
  height: 17px;
}

.booking-summary-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.booking-summary-copy small {
  color: var(--salon-text-secondary);
  font-size: 10px;
}

.booking-summary-copy strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.booking-summary-value {
  color: var(--salon-text-primary);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.booking-auth-card,
.booking-payment-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  padding: 15px;
  border: 1px solid var(--salon-border);
  border-radius: 18px;
  background: var(--salon-surface-muted);
}

.booking-auth-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--salon-surface);
  color: var(--salon-primary-strong);
}

.booking-auth-card strong,
.booking-payment-note strong {
  font-size: 13px;
}

.booking-auth-card p,
.booking-payment-note p {
  margin: 4px 0 0;
  color: var(--salon-text-secondary);
  font-size: 11px;
  line-height: 1.45;
}

.booking-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
}

.booking-auth-actions a {
  min-height: 24px;
  color: var(--salon-primary-strong);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.booking-fields {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.booking-field {
  display: grid;
  gap: 7px;
}

.booking-field > span {
  color: var(--salon-text-primary);
  font-size: 12px;
  font-weight: 700;
}

.booking-field b,
.booking-check b {
  color: var(--salon-primary-strong);
}

.booking-field input {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--salon-border);
  border-radius: 16px;
  outline: 0;
  background: var(--salon-surface);
  color: var(--salon-text-primary);
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-field input::placeholder {
  color: color-mix(in srgb, var(--salon-text-secondary) 72%, transparent);
}

.booking-field input:focus {
  border-color: var(--salon-primary);
  box-shadow: 0 0 0 4px var(--salon-primary-soft);
}

.booking-field input[aria-invalid="true"] {
  border-color: #cf425d;
}

.booking-field > small {
  color: var(--salon-text-secondary);
  font-size: 10px;
  line-height: 1.4;
}

.booking-consents {
  display: grid;
  gap: 12px;
  margin-top: 19px;
}

.booking-check {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--salon-text-secondary);
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}

.booking-check input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--salon-primary);
}

.booking-payment-note {
  margin-top: 19px;
  background: color-mix(in srgb, var(--salon-primary-soft) 62%, var(--salon-surface));
}

.booking-payment-preview {
  margin: 0 0 16px;
}

.booking-payment-preview[hidden],
.booking-payment-note[hidden] {
  display: none;
}

.booking-payment-note > svg {
  width: 28px;
  height: 28px;
  margin: 5px auto 0;
  color: var(--salon-primary-strong);
}

.booking-payment-note.is-error {
  border-color: color-mix(in srgb, #cf425d 30%, transparent);
  background: color-mix(in srgb, #cf425d 9%, var(--salon-surface));
}

.booking-action-bar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  max-width: 760px;
  min-height: calc(76px + var(--booking-safe-bottom));
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto;
  padding: 12px 16px calc(12px + var(--booking-safe-bottom));
  border-top: 1px solid var(--salon-border);
  background: color-mix(in srgb, var(--salon-page-background) 92%, transparent);
  backdrop-filter: saturate(150%) blur(20px);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
}

.booking-primary-button,
.booking-secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 18px;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.booking-primary-button {
  flex: 1;
  border: 1px solid var(--salon-primary);
  background: var(--salon-primary);
  color: var(--salon-on-primary);
  box-shadow: 0 10px 24px var(--salon-primary-soft);
}

.booking-secondary-button {
  border: 1px solid var(--salon-border);
  background: var(--salon-surface);
  color: var(--salon-text-primary);
}

.booking-back-button {
  flex: 0 0 auto;
  padding-inline: 14px;
}

.booking-primary-button:active,
.booking-secondary-button:active {
  transform: scale(0.975);
}

.booking-primary-button:disabled,
.booking-secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.booking-success {
  display: grid;
  min-height: calc(100dvh - 190px);
  align-content: center;
  justify-items: center;
  padding: 24px 0;
  text-align: center;
}

.booking-success-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 25px;
  background: color-mix(in srgb, #2f7a44 13%, var(--salon-surface));
  color: #2f7a44;
  box-shadow: 0 14px 38px rgba(47, 122, 68, 0.12);
}

.booking-success-mark svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.2;
}

.booking-success-summary {
  width: 100%;
  max-width: 440px;
  margin-top: 24px;
  text-align: left;
}

.booking-success-actions {
  display: grid;
  width: 100%;
  max-width: 440px;
  gap: 9px;
  margin-top: 18px;
}

.booking-error-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
  background: #f8f4ef;
  color: #191716;
}

.booking-error-card {
  width: min(100%, 420px);
  padding: 34px 26px;
  border: 1px solid rgba(91, 68, 58, 0.1);
  border-radius: 24px;
  background: #fffdfc;
  text-align: center;
  box-shadow: 0 18px 50px rgba(46, 30, 23, 0.07);
}

.booking-error-card > span {
  color: #a97561;
  font-size: 34px;
}

.booking-error-card h1 {
  margin: 14px 0 8px;
  font-size: 25px;
}

.booking-error-card p {
  margin: 0;
  color: #746d68;
  line-height: 1.55;
}

.booking-error-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 16px;
  background: #a97561;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

:where(button, a, input):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--salon-primary) 58%, transparent);
  outline-offset: 3px;
}

@keyframes booking-pane-in {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes booking-skeleton {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (max-width: 374px) {
  .booking-main {
    padding-inline: 13px;
  }

  .booking-app-header,
  .booking-action-bar {
    padding-right: 13px;
    padding-left: 13px;
  }

  .booking-header-brand .booking-salon-avatar {
    display: none;
  }

  .booking-stepper-item small {
    font-size: 9px;
  }

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

  .booking-summary-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .booking-summary-value {
    grid-column: 2;
    justify-self: start;
  }
}

@media (min-width: 620px) {
  .booking-main {
    padding-right: 30px;
    padding-left: 30px;
  }

  .booking-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-choice-card.booking-specialist-card:first-child {
    grid-column: 1 / -1;
  }

  .booking-date-tabs {
    width: calc(100% + 60px);
    margin-right: -30px;
    margin-left: -30px;
    padding-right: 30px;
    padding-left: 30px;
  }

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

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

  .booking-field:first-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
