@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --ink: #0f1230;
  --navy: #1d224f;
  --navy-2: #2d3470;
  --navy-soft: #4a5085;
  --rose: #af5578;
  --rose-700: #8a3e5d;
  --rose-100: #f5e2ea;
  --rose-50: #fbf2f5;
  --teal: #1fa3b7;
  --teal-100: #d8eff2;
  --teal-50: #ecf7f9;
  --ivory: #f7f2e9;
  --ivory-2: #efe8db;
  --cream: #fbf7ef;
  --paper: #ffffff;
  --line: #e6dccb;
  --line-soft: #f0e8d8;
  --t-1: #0f1230;
  --t-2: #4a4863;
  --t-3: #7b7791;
  --t-4: #a8a4ba;
  --ok: #2f8a6c;
  --warn: #c6792b;
  --err: #b94a48;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-1: 0 1px 0 rgba(29,34,79,0.04), 0 2px 8px rgba(29,34,79,0.05);
  --sh-2: 0 1px 0 rgba(29,34,79,0.04), 0 8px 24px rgba(29,34,79,0.08);
  --sh-3: 0 2px 0 rgba(29,34,79,0.04), 0 22px 48px rgba(29,34,79,0.14);
  --ff-display: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --ff-ui: "Poppins", system-ui, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --beauty-navy: var(--navy);
  --beauty-navy-soft: var(--navy-2);
  --beauty-pink: var(--rose);
  --beauty-pink-dark: var(--rose-700);
  --beauty-pink-soft: var(--rose-50);
  --beauty-teal: var(--teal);
  --beauty-ivory: var(--paper);
  --beauty-ivory-soft: var(--ivory);
  --beauty-surface-soft: var(--cream);
  --beauty-text: var(--t-1);
  --beauty-muted: var(--t-3);
  --beauty-border: var(--line);
  --beauty-border-soft: var(--line-soft);
  --beauty-success: var(--ok);
  --beauty-success-soft: var(--teal-50);
  --beauty-warning: var(--warn);
  --beauty-warning-soft: #fbf0df;
  --beauty-danger: var(--err);
  --beauty-danger-soft: var(--rose-50);
  --beauty-shadow: 0 24px 60px rgba(15, 18, 48, 0.32);
  --beauty-soft-shadow: var(--sh-1);
  --beauty-radius-lg: var(--r-lg);
  --beauty-radius-md: var(--r-md);
  --beauty-radius-sm: var(--r-sm);

  --bs-primary: var(--navy);
  --bs-primary-rgb: 29, 34, 79;
  --bs-secondary: #6f7494;
  --bs-secondary-rgb: 111, 116, 148;
  --bs-success: var(--ok);
  --bs-success-rgb: 47, 138, 108;
  --bs-link-color: var(--rose);
  --bs-link-hover-color: var(--rose-700);
  --bs-border-color: var(--line);
  --bs-body-bg: var(--ivory);
  --bs-body-color: var(--t-1);
}

.theme-default {
  --rose: #af5578; --rose-700: #8a3e5d; --rose-100: #f5e2ea; --rose-50: #fbf2f5;
  --teal: #1fa3b7; --teal-100: #d8eff2; --teal-50: #ecf7f9;
  --ivory: #f7f2e9; --ivory-2: #efe8db; --cream: #fbf7ef;
}

.theme-rose {
  --rose: #c3637f; --rose-700: #94445c; --rose-100: #f7e4ea; --rose-50: #fbf2f5;
  --teal: #b9a08a; --teal-100: #ede2d4; --teal-50: #f5ece1;
  --ivory: #faf3ec; --ivory-2: #f0e6da; --cream: #fdf9f3;
}

.theme-sage {
  --rose: #8a7a9b; --rose-700: #6a5d7a; --rose-100: #e8e2ee; --rose-50: #f4f0f8;
  --teal: #6a9a8b; --teal-100: #d8eae3; --teal-50: #ecf4ef;
  --ivory: #f4f1ea; --ivory-2: #e9e4d7; --cream: #faf7f0;
}

html {
  font-size: 14px;
  min-height: 100%;
  position: relative;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  background:
    radial-gradient(circle at top right, rgba(252, 232, 232, 0.65), transparent 52%),
    radial-gradient(circle at 0% 100%, rgba(31, 163, 183, 0.11), transparent 42%),
    linear-gradient(180deg, #fff 0%, var(--beauty-ivory-soft) 100%);
  color: var(--beauty-text);
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  min-height: 100vh;
}

.bmv,
.bmv * {
  box-sizing: border-box;
}

.bmv {
  background: var(--ivory);
  color: var(--t-1);
  font-family: var(--ff-ui);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--beauty-navy);
  font-family: var(--ff-display);
  letter-spacing: -0.01em;
}

.bmv h1,
.bmv h2,
.bmv h3,
.bmv h4 {
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.bmv h1 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.bmv h2 {
  font-size: 30px;
  line-height: 1.15;
}

.bmv h3 {
  font-size: 22px;
  line-height: 1.2;
}

.bmv h4 {
  font-size: 17px;
  line-height: 1.3;
}

.bmv p {
  color: var(--t-2);
  margin: 0;
}

.bmv-eyebrow {
  color: var(--rose);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bmv-eyebrow--muted,
.bmv-eyebrow-mute {
  color: var(--t-3);
}

.bmv-icon {
  display: inline-block;
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 1em;
}

.bmv-icon--fill {
  fill: currentColor;
  stroke: none;
}

.bmv-logo {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.bmv-logo:hover {
  color: var(--ink);
}

.bmv-logo__mark {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  height: 36px;
  justify-content: center;
  letter-spacing: -0.02em;
  width: 36px;
}

.bmv-logo__word {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.bmv-logo__word small {
  color: var(--t-3);
  display: block;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-top: 4px;
  text-transform: uppercase;
}

.bmv-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  padding: 22px 56px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.bmv-header__meta {
  align-items: center;
  color: var(--t-2);
  display: flex;
  font-size: 13px;
  gap: 28px;
}

.bmv-header__meta-item {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.bmv .btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  padding: 12px 20px;
  white-space: nowrap;
}

.bmv .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 16px rgba(29,34,79,0.22);
  color: #fff;
}

.bmv .btn-primary:hover,
.bmv .btn-primary:focus {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: #fff;
}

.bmv .btn-rose {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.bmv .btn-rose:hover,
.bmv .btn-rose:focus {
  background: var(--rose-700);
  border-color: var(--rose-700);
  color: #fff;
}

.bmv .btn-ghost,
.bmv .btn-outline-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.bmv .btn-ghost:hover,
.bmv .btn-outline-secondary:hover {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
}

.bmv .btn-lg {
  font-size: 15px;
  padding: 16px 28px;
}

.bmv .btn-sm {
  font-size: 13px;
  padding: 8px 14px;
}

.bmv .form-label {
  color: var(--t-2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bmv .form-control,
.bmv .form-select,
.bmv textarea.form-control {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--t-1);
  font-family: var(--ff-ui);
  font-size: 14px;
  min-height: auto;
  padding: 13px 14px;
}

.bmv .form-control:focus,
.bmv .form-select:focus,
.bmv .btn:focus,
.bmv .btn:active:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31, 163, 183, 0.18);
}

.bmv .form-control::placeholder {
  color: var(--t-4);
}

.bmv .form-check-input {
  border-color: var(--line);
  border-radius: 5px;
}

.bmv .form-check-input:checked {
  background-color: var(--navy);
  border-color: var(--navy);
}

.bmv .req {
  color: var(--rose);
}

.bmv .card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}

.bmv .card.card-body {
  padding: 22px;
}

.bmv-card-elev {
  box-shadow: var(--sh-2);
}

.pill,
.bmv-pill {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--t-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  gap: 6px;
  padding: 6px 12px;
}

.pill-rose,
.bmv-pill--rose {
  background: var(--rose-50);
  border-color: var(--rose-100);
  color: var(--rose-700);
}

.pill-teal,
.bmv-pill--teal {
  background: var(--teal-50);
  border-color: var(--teal-100);
  color: #0f7787;
}

.pill-navy,
.bmv-pill--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.bmv-steps {
  align-items: center;
  color: var(--t-3);
  display: flex;
  font-size: 12px;
  gap: 14px;
}

.bmv-step {
  align-items: center;
  display: flex;
  gap: 10px;
}

.bmv-step__num {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--t-3);
  display: inline-flex;
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.bmv-step--active .bmv-step__num {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.bmv-step--active .bmv-step__label {
  color: var(--t-1);
  font-weight: 500;
}

.bmv-step--done .bmv-step__num {
  background: var(--teal-100);
  border-color: var(--teal-100);
  color: #0f7787;
}

.bmv-step__sep {
  background: var(--line);
  height: 1px;
  width: 24px;
}

.bmv-slot,
.bmv .availability-slot {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--navy);
  display: inline-flex;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  justify-content: center;
  min-width: 76px;
  padding: 10px 12px;
}

.bmv-slot:hover,
.bmv .availability-slot:hover {
  border-color: var(--navy);
}

.btn-check:checked + .availability-slot,
.bmv-slot.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.bmv-order-summary {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.bmv-order-summary--compact {
  padding: 18px;
}

.bmv-order-summary__header,
.bmv-order-summary__price-row {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.bmv-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bmv-summary-line {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.bmv-summary-line__icon {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xs);
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.bmv-summary-line__icon.is-highlight {
  background: var(--rose-50);
  border-color: var(--rose-100);
  color: var(--rose-700);
}

.bmv-summary-line__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bmv-summary-line__label {
  color: var(--t-3);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bmv-summary-line__value {
  color: var(--t-1);
  font-size: 14px;
  font-weight: 500;
}

.bmv-order-summary__price-row span {
  color: var(--t-2);
  font-size: 13px;
}

.bmv-order-summary__price-row strong {
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.bmv-order-summary__fine {
  color: var(--t-3);
  font-size: 11.5px;
  line-height: 1.5;
}

.bmv-quiet-summary {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}

.bmv-quiet-summary__section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bmv-quiet-summary__service {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.bmv-quiet-summary__meta {
  color: var(--t-3);
  font-size: 13px;
}

.bmv-quiet-summary__date,
.bmv-quiet-summary__time {
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.bmv-quiet-summary__price-row {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.bmv-quiet-summary__price-row span {
  color: var(--t-3);
  font-size: 13px;
}

.bmv-quiet-summary__price-row strong {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.bmv-div {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

a {
  color: var(--bs-link-color);
}

a:hover {
  color: var(--bs-link-hover-color);
}

.text-muted,
.form-text {
  color: var(--beauty-muted) !important;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(29, 34, 79, 0.24);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--beauty-border) !important;
  box-shadow: 0 1px 0 rgba(29, 34, 79, 0.08);
}

.nav-link {
  color: var(--beauty-navy) !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--beauty-pink) !important;
}

.navbar-toggler {
  border-color: rgba(175, 85, 120, 0.42);
}

.booking-navbar {
  padding: 0;
}

.card {
  background: #fff;
  border: 1px solid var(--beauty-border);
  border-radius: var(--beauty-radius-lg);
  box-shadow: var(--beauty-soft-shadow);
}

.card.card-body {
  padding: 1.35rem;
}

.shadow-sm {
  box-shadow: var(--beauty-soft-shadow) !important;
}

.form-label {
  color: #2f3360;
  font-weight: 600;
}

.form-control,
.form-select {
  background-color: #fff;
  border: 1px solid var(--beauty-border);
  border-radius: var(--beauty-radius-sm);
  color: var(--beauty-text);
  min-height: 2.7rem;
}

.form-control::placeholder {
  color: #969bb4;
}

.form-check-input {
  border-color: #9ea4c5;
}

.form-check-input:checked {
  background-color: var(--beauty-pink);
  border-color: var(--beauty-pink);
}

.btn {
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 2.45rem;
  padding: 0.55rem 1.15rem;
}

.btn-sm {
  min-height: auto;
  padding: 0.35rem 0.85rem;
}

.btn-primary {
  background: var(--beauty-navy);
  border: 2px solid var(--beauty-navy);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--beauty-navy-soft);
  border-color: var(--beauty-navy-soft);
  color: #fff;
}

.btn-outline-primary {
  border: 2px solid var(--beauty-pink);
  color: var(--beauty-pink);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--beauty-pink);
  border-color: var(--beauty-pink);
  color: #fff;
}

.btn-outline-secondary {
  border: 2px solid var(--beauty-navy);
  color: var(--beauty-navy);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--beauty-surface-soft);
  border-color: var(--beauty-navy);
  color: var(--beauty-navy-soft);
}

.btn-success {
  background: var(--beauty-success);
  border-color: var(--beauty-success);
  color: #173b32;
}

.btn-success:hover,
.btn-success:focus {
  background: #4db896;
  border-color: #4db896;
  color: #173b32;
}

.alert {
  border: 1px solid transparent;
  border-radius: var(--beauty-radius-md);
}

.alert-success {
  background: #eefbf7;
  border-color: #c9efdf;
  color: #1d6e59;
}

.alert-danger {
  background: var(--beauty-pink-soft);
  border-color: #efc9d6;
  color: #8f4662;
}

.alert-info {
  background: #eef7fd;
  border-color: #cfe3f4;
  color: #1f6a7b;
}

.modal-content {
  background-color: #fff;
  border: 1px solid var(--beauty-border);
  border-radius: var(--beauty-radius-lg);
  box-shadow: var(--beauty-shadow);
}

.modal-header,
.modal-footer {
  border-color: var(--beauty-border-soft);
}

.booking-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.booking-main {
  flex: 1 0 auto;
  padding: 40px 80px 56px;
}

.booking-footer {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--line-soft) !important;
  color: var(--t-3) !important;
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 1rem 0;
}

.booking-shell.is-embedded {
  min-height: auto;
}

.booking-shell.is-embedded .booking-main {
  padding: 24px;
}

.booking-page {
  margin: 0 auto;
  max-width: 1280px;
}

.booking-page__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.booking-page__head {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

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

.booking-summary-rail {
  position: sticky;
  top: 116px;
}

.bmv-mobile-progress,
.bmv-mobile-cta {
  display: none;
}

.bmv-mobile-progress {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  padding: 14px;
}

.bmv-mobile-progress__meta {
  align-items: center;
  color: var(--t-3);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bmv-mobile-progress__meta b {
  color: var(--t-1);
  font-weight: 500;
}

.bmv-mobile-progress__bar {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, 1fr);
}

.bmv-mobile-progress__bar span {
  background: var(--line-soft);
  border-radius: 999px;
  height: 4px;
}

.bmv-mobile-progress__bar span.is-done,
.bmv-mobile-progress__bar span.is-active {
  background: var(--navy);
}

.bmv-mobile-cta {
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  bottom: 0;
  gap: 14px;
  justify-content: space-between;
  left: 0;
  padding: 14px 18px 22px;
  position: fixed;
  right: 0;
  z-index: 30;
}

.bmv-mobile-cta span {
  color: var(--t-3);
  display: block;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bmv-mobile-cta strong {
  color: var(--t-1);
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.booking-flow-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-section-head {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.booking-section-head p {
  color: var(--t-3);
  font-size: 13px;
  max-width: 380px;
}

.booking-section-head--inline {
  align-items: end;
}

.booking-section-head--slots {
  align-items: center;
  justify-content: space-between;
}

.booking-section-head--slots .booking-step__title {
  margin-bottom: 0;
}

.specialist-picker {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.specialist-any-card {
  align-items: center;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  cursor: pointer;
  display: flex;
  gap: 16px;
  order: 2;
  padding: 22px;
  text-align: left;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.specialist-any-card:hover {
  border-color: var(--teal);
  box-shadow: var(--sh-2);
}

.btn-check:checked + .specialist-any-card,
.specialist-any-card.is-selected {
  border-color: var(--navy);
  border-style: solid;
  box-shadow: 0 0 0 2px var(--navy), var(--sh-2);
}

.specialist-any-card__icon {
  align-items: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 12px;
  color: #0f7787;
  display: inline-flex;
  flex: 0 0 auto;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.specialist-any-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.specialist-any-card__body strong {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
}

.specialist-any-card__body span {
  color: var(--t-2);
  font-size: 13px;
  line-height: 1.45;
}

.specialist-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.specialist-card:hover {
  border-color: var(--line);
  box-shadow: var(--sh-2);
  transform: translateY(-1px);
}

.specialist-card.is-selected,
.btn-check:checked + .specialist-card {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px var(--navy), var(--sh-2);
}

.specialist-card__avatar {
  align-items: center;
  background: repeating-linear-gradient(135deg, var(--ivory-2) 0 8px, var(--cream) 8px 16px);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.specialist-card__header {
  align-items: center;
  display: flex;
  gap: 14px;
}

.specialist-card__identity strong {
  color: var(--ink);
  display: block;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.specialist-card__identity small {
  color: var(--t-3);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.specialist-card__footer {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.specialist-card__footer span {
  color: var(--t-3);
}

.specialist-card__footer strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-row {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  cursor: pointer;
  display: grid;
  gap: 16px;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  padding: 18px;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.service-row:hover {
  border-color: var(--line);
  box-shadow: var(--sh-2);
  transform: translateY(-1px);
}

.service-row.is-selected,
.btn-check:checked + .service-row {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px var(--navy), var(--sh-2);
}

.service-row__glyph {
  align-items: center;
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-md);
  color: var(--rose-700);
  display: inline-flex;
  font-family: var(--ff-display);
  font-size: 28px;
  font-style: italic;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.service-row__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.service-row__content strong {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
}

.service-row__content span,
.service-row__content small {
  color: var(--t-3);
  font-size: 12px;
}

.service-row__side {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row__side > strong {
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.booking-empty-card {
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  color: var(--t-3);
  padding: 22px;
}

.slot-date-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.slot-date-nav__range {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.slot-date-nav__actions {
  align-items: center;
  display: flex;
  gap: 6px;
}

.slot-date-nav__icon {
  height: 36px;
  padding: 0;
  width: 36px;
}

.booking-brand-compact {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
}

.booking-brand-compact__logo {
  border-radius: 999px;
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
}

.booking-brand-compact__name {
  color: var(--beauty-navy);
  font-family: "Source Serif 4", "Georgia", "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.booking-brand-hero {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
}

.booking-brand-hero__logo {
  border-radius: var(--r-sm);
  max-height: 72px;
  max-width: 220px;
  object-fit: contain;
}

.booking-brand-hero__mark {
  height: 56px;
  width: 56px;
}

.booking-brand-hero__content {
  min-width: 0;
}

.booking-brand-hero__eyebrow {
  color: var(--beauty-teal);
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.booking-brand-hero__title {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin: 0;
}

.booking-brand-hero__subtitle {
  color: var(--t-2);
  margin: 8px 0 0;
}

.booking-modal-logo {
  border-radius: 0.4rem;
  max-height: 28px;
  max-width: 110px;
  object-fit: contain;
}

.booking-journey {
  margin-top: 0;
}

.booking-step {
  border-bottom: 1px dashed var(--line);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.booking-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.booking-step__title {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.booking-action-row {
  margin-top: 0.2rem;
}

.availability-grid {
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow-x: auto;
}

.availability-day {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 400px;
  min-width: 0;
  padding: 20px 14px;
}

.availability-date {
  margin-bottom: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.availability-date strong {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
}

.availability-date span {
  color: var(--t-3);
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.availability-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.availability-empty {
  align-items: flex-start;
  color: var(--t-4);
  display: flex;
  flex: 1;
  justify-content: center;
  padding-top: 28px;
  text-align: center;
}

.availability-empty span {
  font-size: 12px;
}

.availability-empty p {
  font-size: 12px;
  margin: 0;
}

.availability-slot {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--navy);
  display: flex;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  justify-content: center;
  line-height: 1.2;
  min-height: auto;
  min-width: 0;
  padding: 10px 12px;
  text-align: center;
  width: 100%;
}

.btn-check:checked + .availability-slot,
.availability-slot:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.booking-modal-summary {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  color: var(--t-2);
  font-size: 13px;
  padding: 12px 14px;
}

.booking-modal-actions {
  gap: 0.5rem;
}

.booking-modal-actions .btn {
  flex: 1 1 auto;
}

.bmv-booking-modal .modal-dialog {
  max-width: 920px;
}

.bmv-booking-modal .modal-backdrop,
.modal-backdrop.show {
  opacity: .45;
}

.bmv-modal-card {
  border: 0;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 18, 48, .32);
  overflow: hidden;
}

.bmv-details-modal {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.bmv-details-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 40px;
  position: relative;
}

.bmv-details-modal__form > p,
.bmv-otp-modal > p {
  color: var(--t-2);
}

.bmv-modal-close {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 38px;
  z-index: 2;
}

.booking-modal-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-modal-field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.bmv-div--dotted {
  border-top-style: dashed;
}

.booking-consents {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bmv-check {
  align-items: flex-start;
  color: var(--t-2);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.5;
}

.bmv-check input {
  opacity: 0;
  position: absolute;
}

.bmv-check__box {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  flex: 0 0 auto;
  height: 18px;
  margin-top: 1px;
  position: relative;
  transition: background .15s, border-color .15s;
  width: 18px;
}

.bmv-check input:checked + .bmv-check__box {
  background: var(--navy);
  border-color: var(--navy);
}

.bmv-check input:checked + .bmv-check__box::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  height: 9px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 5px;
}

.bmv-check input:focus + .bmv-check__box {
  box-shadow: 0 0 0 3px rgba(31, 163, 183, .18);
}

.bmv-check b {
  color: var(--t-1);
  font-weight: 500;
}

.bmv-modal-footer {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.bmv-modal-rodo,
.bmv-otp-fine {
  align-items: center;
  color: var(--t-3);
  display: inline-flex;
  font-size: 11.5px;
  gap: 8px;
  line-height: 1.45;
}

.bmv-details-modal__summary {
  background: var(--cream);
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px;
}

.bmv-details-modal__summary .bmv-order-summary {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.bmv-modal-info-box {
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-md);
  color: var(--rose-700);
  font-size: 13px;
  line-height: 1.5;
  padding: 14px;
}

.bmv-modal-info-box strong {
  display: block;
  font-weight: 600;
}

.bmv-modal-address {
  align-items: center;
  color: var(--t-3);
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  margin-top: auto;
}

.bmv-otp-modal {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  max-width: 520px;
  padding: 42px;
  position: relative;
  text-align: center;
}

.bmv-otp-modal__icon {
  align-items: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  color: #0f7787;
  display: inline-flex;
  font-size: 28px;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.bmv-otp-modal .btn-link {
  border: 0;
  color: var(--navy);
  min-height: auto;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bmv-otp-cells {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 52px);
  justify-content: center;
}

.bmv-otp-cell {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 28px;
  height: 60px;
  text-align: center;
  transition: border .16s, box-shadow .16s, background .16s;
  width: 52px;
}

.bmv-otp-cell:not(:placeholder-shown),
.bmv-otp-cell.has-value {
  background: #fff;
  border-color: var(--line);
}

.bmv-otp-cell:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31, 163, 183, .22);
  outline: 0;
}

.bmv-otp-submit {
  width: 100%;
}

.bmv-success-screen {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 760px;
  padding: 20px 0 40px;
  text-align: center;
}

.bmv-success-hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bmv-success-icon {
  align-items: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  color: #0f7787;
  display: inline-flex;
  font-size: 42px;
  height: 96px;
  justify-content: center;
  position: relative;
  width: 96px;
}

.bmv-success-spark {
  color: var(--rose);
  font-family: var(--ff-display);
  font-size: 28px;
  font-style: italic;
  position: absolute;
}

.bmv-success-spark--top {
  right: -10px;
  top: 4px;
}

.bmv-success-spark--bottom {
  bottom: -4px;
  left: -8px;
}

.bmv-success-hero h1 {
  font-size: clamp(38px, 6vw, 48px);
  line-height: 1.05;
}

.bmv-success-hero h1 em {
  color: var(--rose);
  font-style: italic;
  font-weight: 400;
}

.bmv-success-hero p {
  color: var(--t-2);
  font-size: 15px;
  max-width: 620px;
}

.bmv-success-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  text-align: left;
  width: 100%;
}

.bmv-success-card__header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.bmv-success-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.bmv-success-stats div {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 16px;
}

.bmv-success-stats span {
  color: var(--t-3);
  display: block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bmv-success-stats strong {
  color: var(--navy);
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  margin-top: 4px;
}

.bmv-success-stats small {
  color: var(--t-3);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.bmv-success-address {
  align-items: center;
  color: var(--navy);
  display: flex;
  gap: 12px;
}

.bmv-success-address > .bmv-icon {
  flex: 0 0 auto;
  font-size: 22px;
}

.bmv-success-address span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bmv-success-address small {
  color: var(--navy);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bmv-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.bmv-success-note {
  color: var(--t-3);
  font-size: 12px;
  max-width: 620px;
}

.admin-auth-page {
  background: var(--ivory);
}

.admin-auth {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 100vh;
}

.admin-auth__brand {
  background:
    radial-gradient(circle at 14% 12%, rgba(175, 85, 120, .35), transparent 34%),
    linear-gradient(145deg, var(--navy) 0%, var(--ink) 58%, var(--rose-700) 120%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.admin-auth__brand::after {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  bottom: -180px;
  content: "";
  height: 420px;
  position: absolute;
  right: -130px;
  width: 420px;
}

.admin-auth__logo {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.admin-auth__logo:hover {
  color: #fff;
}

.admin-auth__mark,
.admin-panel-nav__mark {
  align-items: center;
  background: var(--rose);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--ff-display);
  font-size: 17px;
  font-style: italic;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.admin-auth__logo span:last-child,
.admin-panel-nav__brand span:last-child {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.admin-auth__logo small,
.admin-panel-nav__brand small {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  margin-top: 5px;
  text-transform: uppercase;
}

.admin-auth__claim {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.admin-auth__claim .bmv-eyebrow {
  color: var(--rose-100);
}

.admin-auth__claim h1 {
  color: #fff;
  font-family: var(--ff-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: .98;
  margin: 18px 0;
}

.admin-auth__claim h1 em {
  color: var(--rose-100);
  font-style: italic;
  font-weight: 400;
}

.admin-auth__claim p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  max-width: 460px;
}

.admin-auth__version {
  color: rgba(255,255,255,.52);
  font-family: var(--ff-mono);
  font-size: 11px;
  position: relative;
  z-index: 1;
}

.admin-auth__panel {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 48px;
}

.admin-auth__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  width: 100%;
}

.admin-auth__form-wrap--otp {
  align-items: center;
  text-align: center;
}

.admin-auth__form-wrap h2 {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.admin-auth__form-wrap > p {
  color: var(--t-2);
  margin: 0;
}

.admin-auth-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  width: 100%;
}

.admin-auth__label-row {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-auth__label-row a {
  color: var(--navy);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-auth__remember {
  margin-top: 2px;
}

.admin-auth__info {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  color: var(--t-3);
  display: flex;
  font-size: 12px;
  gap: 10px;
  padding: 14px;
}

.admin-auth-card--success {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-auth__info--success {
  background: var(--teal-50, #ecf7f9);
  border-color: rgba(31, 163, 183, .25);
  color: var(--t-2);
}

.admin-auth__resend {
  width: 100%;
}

.admin-auth__resend .btn {
  width: 100%;
}

.admin-otp-cells {
  grid-template-columns: repeat(6, 56px);
}

.admin-panel-nav {
  background: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px;
}

.admin-panel-nav__brand {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: inline-flex;
  gap: 12px;
  margin-right: 0;
  min-width: 0;
  padding: 4px 8px 14px;
  width: 100%;
}

.admin-panel-nav__brand small {
  color: rgba(255,255,255,.45);
}

.admin-panel-nav__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.admin-panel-nav__section > span {
  color: rgba(255,255,255,.42);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.admin-panel-nav__item {
  align-items: center;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  justify-content: space-between;
  padding: 9px 12px;
  text-decoration: none;
}

.admin-panel-nav__item:hover,
.admin-panel-nav__item.is-active {
  background: rgba(255,255,255,.10);
  color: #fff;
}

.admin-panel-nav__item b {
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  min-width: 24px;
  padding: 2px 7px;
  text-align: center;
}

.admin-panel-nav__item.is-active b {
  background: var(--rose);
}

.bmv-embed-settings .booking-section-head {
  margin-bottom: 18px;
}

.bmv-embed-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.bmv-embed-grid article {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.bmv-embed-grid pre {
  background: var(--ink);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 11px;
  margin: 0;
  overflow-x: auto;
  padding: 14px;
  white-space: pre-wrap;
}

.admin-calendar {
  display: grid;
  gap: 1rem;
}

.admin-panel-page {
  background: var(--ivory);
}

.admin-panel-root {
  max-width: none;
  padding: 0;
  width: 100%;
}

.admin-panel-main {
  min-height: 100vh;
  padding: 0;
}

.admin-page-shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-page-shell .admin-panel-nav {
  align-content: start;
  border-radius: 0;
  box-shadow: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 22px;
  margin: 0;
  min-height: 100vh;
  padding: 22px 18px 18px;
  width: 252px;
}

.admin-workspace {
  min-width: 0;
  padding: 24px 28px 32px;
}

.admin-topbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 4px 0 8px;
}

.admin-topbar__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-search {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--t-3);
  display: flex;
  gap: 8px;
  padding: 9px 12px;
  width: 280px;
}

.admin-search span {
  font-size: 0;
}

.admin-search input {
  border: 0;
  flex: 1;
  font: 13px var(--ff-ui);
  min-width: 0;
  outline: 0;
}

.admin-search kbd {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--t-3);
  font: 10px var(--ff-mono);
  padding: 3px 6px;
}

.admin-calendar-toolbar {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 16px;
}

.admin-calendar-nav,
.admin-calendar-toolbar__right,
.admin-specialist-pills,
.admin-view-switch {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-calendar-nav strong {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  margin-left: 8px;
}

.admin-specialist-pills > span:first-child {
  color: var(--t-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-spec-pill {
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  color: var(--rose-700);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
}

.admin-view-switch {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.admin-view-switch a,
.admin-view-switch span {
  border-radius: 999px;
  color: var(--t-2);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  text-decoration: none;
}

.admin-view-switch .is-active {
  background: var(--navy);
  color: #fff;
}

.calendar-day-panel,
.calendar-week-panel {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: 18px;
}

.calendar-day-title {
  margin-bottom: 0.75rem;
}

.calendar-grid-head {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 64px 1fr;
  margin-bottom: 0.5rem;
}

.calendar-time-head {
  color: var(--t-3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-specialist-heads {
  display: grid;
  gap: 0.5rem;
  min-width: min-content;
}

.calendar-specialist-head {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.42rem 0.52rem;
  text-align: center;
}

.calendar-day-heads {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: grid;
  gap: 0;
  min-width: min-content;
  overflow: hidden;
}

.calendar-day-head {
  background: var(--cream);
  border-left: 1px solid var(--line);
  color: var(--navy);
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.4rem 0.5rem;
  text-align: center;
  text-decoration: none;
}

.calendar-day-head:first-child {
  border-left: none;
}

.calendar-day-head.is-selected {
  background: var(--rose-50);
}

.calendar-day-head.is-today {
  color: var(--teal);
}

.calendar-grid-body {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 64px 1fr;
}

.calendar-time-axis {
  position: relative;
}

.calendar-hour-label {
  color: var(--t-3);
  font: 10px var(--ff-mono);
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}

.calendar-hour-line {
  border-top: 1px solid var(--line-soft);
  left: 0;
  position: absolute;
  right: 0;
}

.calendar-lanes-scroll,
.calendar-week-columns-scroll {
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.calendar-lanes {
  display: grid;
  gap: 0.5rem;
  min-width: min-content;
}

.calendar-week-columns {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: grid;
  gap: 0;
  min-width: min-content;
  overflow: hidden;
}

.calendar-lane {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  min-width: 180px;
  position: relative;
}

.calendar-week-column {
  border-left: 1px solid var(--line-soft);
  min-width: 150px;
  position: relative;
}

.calendar-week-column:first-child {
  border-left: none;
}

.calendar-week-column.is-selected {
  background: rgba(245, 226, 234, .35);
}

.calendar-appointment-tile {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(29, 34, 79, 0.10);
  color: var(--beauty-text);
  display: block;
  left: 4px;
  overflow: hidden;
  padding: 0.26rem 0.43rem;
  position: absolute;
  right: 4px;
  text-decoration: none;
  z-index: 3;
}

.calendar-slot-hit {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  text-decoration: none;
  z-index: 1;
}

.calendar-slot-hit:hover,
.calendar-slot-hit:focus-visible {
  background: rgba(175, 85, 120, 0.08);
  outline: 2px solid rgba(175, 85, 120, 0.35);
  outline-offset: -2px;
}

.calendar-time-off-tile {
  background: repeating-linear-gradient(
    135deg,
    transparent 0 6px,
    rgba(15, 18, 48, 0.04) 6px 12px
  );
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--t-3);
  display: block;
  font-size: 0.68rem;
  left: 4px;
  line-height: 1.15;
  overflow: hidden;
  padding: 0.26rem 0.43rem;
  position: absolute;
  right: 4px;
  text-decoration: none;
  z-index: 2;
}

.calendar-time-off-tile .tile-time {
  font-size: 0.7rem;
  font-weight: 700;
}

.calendar-time-off-tile .tile-label {
  font-style: italic;
}

.admin-drawer-tabs {
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  gap: 0;
  padding: 0 28px;
}

.admin-drawer-tab {
  border-bottom: 2px solid transparent;
  color: var(--t-3);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: -1px;
  padding: 12px 16px;
  text-decoration: none;
}

.admin-drawer-tab.is-active {
  border-bottom-color: var(--rose);
  color: var(--ink);
}

.calendar-appointment-tile .tile-time {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.calendar-appointment-tile .tile-customer {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.calendar-appointment-tile .tile-service,
.calendar-appointment-tile .tile-specialist {
  font-size: 0.68rem;
  line-height: 1.15;
}

.calendar-appointment-tile.is-confirmed {
  background: rgba(175, 85, 120, .14);
  border: 1px solid rgba(175, 85, 120, .55);
  border-left: 3px solid var(--rose);
  color: var(--rose-700);
}

.calendar-appointment-tile.is-pending {
  background: rgba(31, 163, 183, .14);
  border: 1.5px dashed rgba(31, 163, 183, .55);
  border-left: 3px solid var(--teal);
  color: #0f7787;
}

.calendar-appointment-tile.is-cancelled {
  background: transparent;
  border-left: 3px solid var(--err);
  opacity: .55;
  text-decoration: line-through;
}

.calendar-appointment-tile.is-attended {
  box-shadow: inset 0 0 0 1px rgba(31, 163, 183, .45);
}

.calendar-appointment-tile.is-no-show {
  box-shadow: inset 0 0 0 1px rgba(220, 53, 69, .45);
  opacity: .85;
}

.calendar-appointment-tile.is-outcome-pending {
  outline: 1px dashed rgba(15, 18, 48, .25);
  outline-offset: -1px;
}

.calendar-appointment-tile.is-auto-outcome {
  border-right: 3px solid var(--teal);
}

.calendar-appt-outcome-badge {
  background: rgba(15, 18, 48, .08);
  border-radius: 999px;
  display: inline-block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: .15rem;
  padding: .1rem .35rem;
  text-transform: uppercase;
}

.calendar-appt-outcome-badge.is-auto {
  background: rgba(31, 163, 183, .15);
  color: #0f7787;
}

.admin-pending-outcomes__summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: .5rem;
  list-style: none;
}

.admin-pending-outcomes__summary::-webkit-details-marker {
  display: none;
}

.admin-outcome-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: .75rem;
}

.admin-outcome-option {
  align-items: center;
  display: flex;
  gap: .5rem;
}

.admin-customer-outcome-stats {
  color: var(--ink-muted);
  font-size: .85rem;
}

.reminder-status-badge {
  border-radius: 999px;
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  margin: 0;
  padding: .35rem .75rem;
}

.reminder-pending {
  background: rgba(59, 130, 246, .12);
  color: #1d4ed8;
}

.reminder-sent {
  background: rgba(34, 197, 94, .12);
  color: #15803d;
}

.reminder-skipped {
  background: rgba(148, 163, 184, .18);
  color: #475569;
}

.reminder-failed {
  background: rgba(239, 68, 68, .12);
  color: #b91c1c;
}

.reminder-cancelled {
  background: rgba(148, 163, 184, .12);
  color: #64748b;
}

.admin-drawer-backdrop {
  background: rgba(15,18,48,.40);
  backdrop-filter: blur(2px);
  inset: 0;
  position: fixed;
  z-index: 1040;
}

.admin-appt-drawer {
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(15,18,48,.32);
  display: flex;
  flex-direction: column;
  inset: 0 0 0 auto;
  max-width: 100%;
  position: fixed;
  width: 520px;
  z-index: 1041;
}

.admin-appt-drawer__header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 28px 30px 22px;
}

.admin-appt-drawer__header h2 {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 6px 0 12px;
}

.admin-appt-drawer__header .bmv-modal-close {
  position: static;
  text-decoration: none;
}

.admin-drawer-pills,
.admin-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-drawer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 30px 0;
}

.admin-drawer-section > span {
  color: var(--t-3);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.admin-client-card {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  display: flex;
  gap: 12px;
  padding: 14px;
}

.admin-client-card strong,
.admin-client-card small,
.admin-client-card a {
  display: block;
}

.admin-client-card small {
  color: var(--t-3);
  font-size: 12px;
  margin: 2px 0 4px;
}

.admin-client-card a {
  color: var(--navy);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-drawer-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 92px;
}

.admin-drawer-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.admin-drawer-footer {
  align-items: center;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  bottom: 0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px;
  position: absolute;
  right: 0;
  width: 100%;
}

.admin-danger-btn {
  color: var(--err) !important;
  margin-right: auto;
}

@media (min-width: 1100px) {
  .specialist-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .admin-auth__brand {
    min-height: 420px;
  }

  .bmv-header {
    align-items: flex-start;
    gap: 16px;
    padding: 18px 24px;
  }

  .bmv-header__meta {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }

  .booking-main {
    padding: 28px 24px 44px;
  }

  .booking-page__head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .specialist-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary-rail {
    position: static;
  }

  .availability-grid {
    grid-template-columns: repeat(7, 148px);
  }

  .calendar-grid-head {
    background: #fff;
    border-bottom: 1px solid var(--beauty-border-soft);
    padding-bottom: 0.35rem;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .calendar-specialist-heads,
  .calendar-day-heads {
    min-width: max-content;
  }

  .calendar-appointment-tile {
    min-height: 52px;
  }

  .booking-modal-actions .btn {
    flex: 1 0 100%;
  }

  .bmv-booking-modal .modal-dialog {
    max-width: calc(100% - 24px);
  }

  .bmv-details-modal {
    grid-template-columns: 1fr;
  }

  .bmv-details-modal__summary {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 767.98px) {
  .bmv h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .bmv-header {
    padding: 12px 18px;
  }

  .bmv-header__meta {
    display: none;
  }

  .bmv-logo__mark {
    height: 28px;
    width: 28px;
  }

  .bmv-logo__word {
    font-size: 16px;
  }

  .bmv-steps {
    gap: 8px;
    overflow-x: auto;
    width: 100%;
  }

  .bmv-step__label {
    display: none;
  }

  .bmv-step__sep {
    flex: 1 0 32px;
  }

  .booking-section-head,
  .booking-section-head--inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-date-control {
    width: 100%;
  }

  .booking-page__head .bmv-steps {
    display: none;
  }

  .bmv-mobile-progress,
  .bmv-mobile-cta {
    display: flex;
  }

  .bmv-mobile-progress {
    display: block;
  }

  .booking-page {
    padding-bottom: 98px;
  }

  .service-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .service-row__glyph {
    border-radius: var(--r-sm);
    height: 56px;
    width: 56px;
  }

  .service-row__side {
    align-items: flex-start;
    grid-column: 1 / -1;
  }

  .slot-date-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .specialist-any-card {
    order: 0;
  }

  .specialist-grid {
    order: 1;
  }

  .bmv-booking-modal .modal-dialog {
    align-items: flex-end;
    margin: 0;
    max-width: 100%;
    min-height: 100%;
  }

  .bmv-modal-card {
    border-radius: 28px 28px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    width: 100%;
  }

  .bmv-details-modal__form,
  .bmv-details-modal__summary,
  .bmv-otp-modal {
    padding: 28px 22px;
  }

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

  .bmv-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .bmv-modal-footer .btn {
    width: 100%;
  }

  .bmv-otp-cells {
    gap: 8px;
    grid-template-columns: repeat(6, minmax(38px, 1fr));
    width: 100%;
  }

  .bmv-otp-cell {
    height: 54px;
    width: 100%;
  }

  .admin-auth__panel,
  .admin-auth__brand {
    padding: 28px 22px;
  }

  .admin-otp-cells {
    grid-template-columns: repeat(6, minmax(38px, 1fr));
  }

  .admin-panel-nav {
    border-radius: var(--r-md);
    flex-direction: column;
  }

  .admin-panel-nav__brand,
  .admin-panel-nav__section {
    min-width: 0;
    width: 100%;
  }

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

  .admin-page-shell .admin-panel-nav {
    margin: 0;
    min-height: auto;
    width: 100%;
  }

  .admin-workspace {
    padding: 18px 16px 28px;
  }

  .admin-topbar,
  .admin-calendar-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar__actions,
  .admin-calendar-toolbar__right {
    justify-content: flex-start;
    width: 100%;
  }

  .admin-search {
    width: 100%;
  }

  .bmv-embed-grid {
    grid-template-columns: 1fr;
  }

  .bmv-success-stats {
    grid-template-columns: 1fr 1fr;
  }

  .bmv-success-card__header,
  .bmv-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bmv-success-actions .btn {
    width: 100%;
  }

  .card.card-body {
    padding: 1rem;
  }

  .booking-main {
    padding: 22px 18px 34px;
  }

  .booking-step__title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .admin-appt-drawer {
    width: 100%;
  }

  .admin-drawer-grid {
    grid-template-columns: 1fr;
  }

  .admin-drawer-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-danger-btn {
    margin-right: 0;
  }

  .bmv-success-stats {
    grid-template-columns: 1fr;
  }

  .booking-brand-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem;
  }

  .booking-brand-hero__logo {
    max-height: 64px;
  }

  .booking-action-row .btn {
    width: 100%;
  }
}