/**
 * Shree Maatha / SMADH — aligns appointment UI with main site tokens
 * (see service-page :root in Strapi renderers).
 * Load after appointment.min.css
 */
:root {
  --smadh-green: #163020;
  --smadh-ayurveda: #1b5e3f;
  --smadh-btn: #6ca368;
  --smadh-btn-hover: #5d8f59;
  --smadh-btn-border: #86c582;
  --smadh-accent: #c4a45c;
  --smadh-accent-soft: rgba(196, 164, 92, 0.18);
  --smadh-cream: #f7f4ee;
  --smadh-beige: #f6f6f6;
  --smadh-text: #2d3748;
  --smadh-text-muted: #4a5568;
  /* Hero / depth */
  --appt-hero-deep: #112a1c;
  --appt-hero-mid: #1b4d33;
  /* Wider than Tailwind 7xl (80rem) — `appointment.min.css` omits max-w-5xl–7xl so HTML caps were ignored */
  --appt-content-max: min(100%, 100rem);
}

/* Centered main column — real max-width (see :root --appt-content-max) */
#appointment-app-root > main {
  width: 100%;
  max-width: var(--appt-content-max);
  margin-left: auto;
  margin-right: auto;
}

#appointment-app-root main .appt-success-wrap {
  max-width: var(--appt-content-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Selection grids: concerns 1 col → 2 (sm) → 3 (lg); service cards 2 col (mobile) → 4 (lg) */
.appt-grid-concerns,
.appt-grid-departments {
  display: grid;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.appt-grid-concerns {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.appt-grid-departments {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .appt-grid-concerns,
  .appt-grid-departments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .appt-grid-concerns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .appt-grid-departments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* ── Page chrome ── */
.appt-page-bg {
  background: linear-gradient(
    180deg,
    var(--smadh-beige) 0%,
    var(--smadh-cream) 45%,
    #eef4ef 100%
  );
  color: var(--smadh-text);
}

.appt-hero {
  background: linear-gradient(
    135deg,
    var(--appt-hero-deep) 0%,
    var(--smadh-green) 38%,
    var(--smadh-ayurveda) 100%
  );
  position: relative;
  /* Vertical padding for this block (defined here so main-site Tailwind can’t strip utilities) */
  padding: 2.5rem 1rem 5rem;
}

@media (min-width: 640px) {
  .appt-hero {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}

.appt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(196, 164, 92, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(134, 195, 130, 0.12), transparent 50%);
  pointer-events: none;
}

.appt-hero-eyebrow {
  color: rgba(196, 164, 92, 0.95);
  letter-spacing: 0.2em;
}

.appt-hero-sub {
  color: rgba(231, 244, 232, 0.88);
}

.appt-badge-suggested {
  background: linear-gradient(135deg, var(--smadh-accent) 0%, #d4b46a 100%);
  color: var(--smadh-green);
  font-weight: 800;
}

/* Match main-site CTA green (Tailwind `brand` was generic teal) */
.bg-brand {
  background-color: var(--smadh-btn) !important;
}
.text-brand {
  color: var(--smadh-btn) !important;
}
.border-brand {
  border-color: var(--smadh-btn) !important;
}
.bg-brand\/10 {
  background-color: rgba(108, 163, 104, 0.12) !important;
}
.ring-brand\/20 {
  --tw-ring-color: rgba(108, 163, 104, 0.22) !important;
}
.ring-brand\/25 {
  --tw-ring-color: rgba(108, 163, 104, 0.28) !important;
}
.hover\:border-brand:hover {
  border-color: var(--smadh-btn) !important;
}
.focus\:border-brand:focus {
  border-color: var(--smadh-btn) !important;
}
.focus\:ring-brand:focus {
  --tw-ring-color: var(--smadh-btn) !important;
}
.focus-within\:ring-brand:focus-within {
  --tw-ring-color: var(--smadh-btn) !important;
}

/* Softer card lift — forest-tinted shadow (replaces shadow-xl + emerald) */
.appt-card-shadow {
  box-shadow:
    0 20px 25px -5px rgba(22, 48, 32, 0.07),
    0 8px 10px -6px rgba(22, 48, 32, 0.06);
}

.appt-glass {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

/* Main flow panel — white into cream (replaces generic slate-50) */
.appt-flow-surface {
  background: linear-gradient(180deg, #fff 0%, rgba(247, 244, 238, 0.55) 55%, rgba(246, 246, 246, 0.35) 100%);
}

/* Step 7: sit on page gradient — no white shell above confirmation */
.appt-flow-surface--success {
  background: transparent;
}

.appt-summary-chip {
  border-color: rgba(134, 195, 130, 0.35);
  background: linear-gradient(90deg, rgba(108, 163, 104, 0.1) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.appt-total-strip {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: linear-gradient(135deg, var(--smadh-green) 0%, #142a1f 100%);
  border: 1px solid rgba(196, 164, 92, 0.25);
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
  color: #fff;
}
.appt-total-strip__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(196, 164, 92, 0.95);
  font-size: 1.1rem;
}
.appt-total-strip__meta {
  flex: 1;
  min-width: 0;
}
.appt-total-strip .appt-total-label {
  color: rgba(196, 164, 92, 0.95);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}
.appt-total-strip__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0.125rem 0 0;
  line-height: 1.3;
}
.appt-total-strip__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 2.5rem;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 0.25rem;
}
.appt-total-strip__amount {
  flex-shrink: 0;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.appt-total-strip__amount-strike {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
  line-height: 1.2;
}

/* Success step */
.appt-success-ring {
  background: linear-gradient(145deg, var(--smadh-accent-soft), rgba(108, 163, 104, 0.15));
}

.avatar-placeholder {
  background: linear-gradient(135deg, var(--smadh-green) 0%, var(--smadh-btn) 55%, var(--smadh-ayurveda) 100%) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drag-active {
  border-color: var(--smadh-btn) !important;
  background-color: rgba(108, 163, 104, 0.08) !important;
}

/* Progress step labels — deep green instead of teal-800 */
.appt-step-label-active {
  color: var(--smadh-green);
}

/* Sticky bar — brand-tinted lift */
.appt-sticky-actions {
  box-shadow: 0 -10px 36px -14px rgba(22, 48, 32, 0.18);
  border-top-color: rgba(134, 195, 130, 0.35);
}

/* Optional footer strip on raw static page */
.appt-mini-footer {
  border-top: 1px solid rgba(22, 48, 32, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.appt-mini-footer a.text-brand-muted {
  color: var(--smadh-ayurveda);
}
.appt-mini-footer a:hover {
  color: var(--smadh-btn);
}

/* Tone down generic Tailwind “emerald” tints toward SMADH cream + sage */
.from-emerald-50\/80 {
  --tw-gradient-from: rgba(247, 244, 238, 0.92) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(236, 253, 245, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-emerald-50\/90 {
  --tw-gradient-from: rgba(247, 244, 238, 0.96) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(236, 253, 245, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.bg-emerald-50\/70 {
  background-color: rgba(108, 163, 104, 0.1) !important;
}

.bg-emerald-50\/40,
.hover\:bg-emerald-50\/40:hover {
  background-color: rgba(108, 163, 104, 0.07) !important;
}

.bg-emerald-50\/30 {
  background-color: rgba(108, 163, 104, 0.06) !important;
}

.border-emerald-100 {
  border-color: rgba(134, 195, 130, 0.45) !important;
}

.border-emerald-200\/60 {
  border-color: rgba(134, 195, 130, 0.5) !important;
}

.text-emerald-300\/90 {
  color: rgba(196, 164, 92, 0.92) !important;
}

/* Back pill: brand light sage (not deep forest) so it matches site CTAs */
.appt-back-btn {
  color: var(--smadh-btn) !important;
  border-color: rgba(134, 195, 130, 0.9) !important;
}

.appt-back-btn:hover {
  color: var(--smadh-btn-hover) !important;
  background-color: rgba(108, 163, 104, 0.1) !important;
}

/* Step: branch sidebar (left) + doctor grid (right) */
.appt-step-branch-doctor .appt-branch-doctor-split {
  box-shadow:
    0 1px 2px rgba(22, 48, 32, 0.05),
    0 8px 28px rgba(22, 48, 32, 0.06);
}
@media (min-width: 1024px) {
  .appt-step-branch-doctor .appt-doctor-panel {
    background: linear-gradient(
      145deg,
      #ffffff 0%,
      rgba(247, 244, 238, 0.55) 100%
    );
  }
}

.bg-emerald-50\/35 {
  background-color: rgba(108, 163, 104, 0.09) !important;
}

/* Doctor picker cards (step 3 grid) — horizontal layout */
.appt-doctor-card--grid:focus {
  outline: none;
}
.appt-doctor-card--grid:focus-visible {
  outline: 2px solid var(--smadh-btn);
  outline-offset: 2px;
}

/*
 * Injected site header (Strapi renderHeader) uses Tailwind `hidden` + `lg:flex` for desktop nav
 * and `lg:hidden` for the hamburger. appointment.min.css is purged from those utility strings
 * (not scanned from server-rendered header HTML), so .lg:flex / .lg:hidden never ship — desktop
 * nav stayed display:none. Restore the standard lg (1024px) behaviour here.
 */
@media (min-width: 1024px) {
  #main-header nav.lg\:flex {
    display: flex !important;
  }
  #main-header #mobile-menu-btn.lg\:hidden {
    display: none !important;
  }
  #mobile-menu-overlay.lg\:hidden {
    display: none !important;
  }
}

/*
 * Mobile: main site chrome is two fixed strips (topbar + #main-header). On the booking flow that
 * reads as “two headers” and stacks awkwardly with the appointment hero. Use a single nav bar here.
 */
@media (max-width: 1023px) {
  body.appt-page-bg .header-topbar {
    display: none !important;
  }
  body.appt-page-bg #main-header {
    top: 0 !important;
  }
  /* SSR wrapper offset (see appointment-booking-page.ts) — one bar ≈ h-20 */
  body.appt-page-bg .appointment-below-site-header {
    padding-top: 5.25rem !important;
  }
}

/*
 * Department icons: Font Awesome `font-size` must live here — not as Tailwind classes in JS.
 * Otherwise Tailwind purge drops `text-[…rem]` on `<i>` injected via x-html → big empty box, tiny glyph.
 */
.appt-dept-icon-slot {
  line-height: 0;
  margin-bottom: 0.5rem;
}
.appt-dept-icon-slot .appt-dept-fa-icon {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 640px) {
  .appt-dept-icon-slot .appt-dept-fa-icon {
    font-size: clamp(2.25rem, 2.6vw, 3.5rem);
  }
}

/* Focus-area row icons: Font Awesome (alpine `apptFocusIcon`); fixed slot size */
.appt-focus-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.appt-focus-card-icon .appt-focus-fa-icon {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1;
  display: block;
}
@media (min-width: 640px) {
  .appt-focus-card-icon {
    width: 3rem;
    height: 3rem;
  }
  .appt-focus-card-icon .appt-focus-fa-icon {
    font-size: clamp(1.9rem, 2.2vw, 2.5rem);
  }
}

#appointment-app-root button.appt-focus-card {
  min-height: 4.5rem;
}
@media (min-width: 640px) {
  #appointment-app-root button.appt-focus-card {
    min-height: 5.25rem;
  }
}

#appointment-app-root button.appt-dept-card {
  min-height: 11rem;
}
@media (max-width: 639px) {
  #appointment-app-root button.appt-dept-card {
    padding: 0.75rem;
    min-height: 9.25rem;
  }
  .appt-dept-icon-slot .appt-dept-fa-icon {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }
  .appt-dept-card h4 {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
  .appt-dept-doctor-count {
    font-size: 0.75rem;
  }
}
@media (min-width: 640px) {
  #appointment-app-root button.appt-dept-card {
    min-height: 12rem;
  }
}
@media (min-width: 1024px) {
  #appointment-app-root button.appt-dept-card {
    min-height: 11rem;
    padding: 1rem 0.75rem;
  }
}

.appt-dept-doctor-count {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .appt-dept-doctor-count {
    font-size: 1rem;
  }
}

/* ── Details form (step 6) ── */
.appt-details-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.appt-details-head__ornament {
  color: var(--smadh-btn);
  opacity: 0.85;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.appt-details-head__ornament--flip {
  transform: scaleX(-1);
}
.appt-details-head__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.appt-details-form {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.appt-details-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media (min-width: 640px) {
  .appt-details-form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.appt-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.appt-field-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.3;
}
.appt-field-label .appt-req {
  color: #ef4444;
}

.appt-field-control {
  display: flex;
  align-items: stretch;
  min-height: 3rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.appt-field-control:focus-within {
  border-color: var(--smadh-btn);
  box-shadow: 0 0 0 3px rgba(108, 163, 104, 0.18);
}

.appt-field-icon {
  flex-shrink: 0;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 163, 104, 0.1);
  border-right: 1px solid #e2e8f0;
  color: var(--smadh-btn);
  font-size: 0.95rem;
}
@media (min-width: 640px) {
  .appt-field-icon {
    width: 3rem;
    font-size: 1rem;
  }
}

.appt-field-prefix {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}

.appt-field-body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
.appt-field-body--select {
  position: relative;
}
.appt-field-body--select::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.appt-field-input,
.appt-field-select,
.appt-field-textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: #0f172a;
  padding: 0.75rem 0.875rem;
  line-height: 1.4;
  font-family: inherit;
}
.appt-field-input::placeholder,
.appt-field-textarea::placeholder {
  color: #94a3b8;
}
.appt-field-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2rem;
  cursor: pointer;
  color: #0f172a;
}
.appt-field-select:invalid {
  color: #94a3b8;
}
.appt-field-select option[value=""] {
  color: #94a3b8;
}
.appt-field-select option:not([value=""]) {
  color: #0f172a;
}
.appt-field-textarea {
  min-height: 5.5rem;
  resize: vertical;
  align-self: stretch;
}
.appt-field-control--textarea {
  align-items: stretch;
}
.appt-field-control--textarea .appt-field-icon {
  align-self: stretch;
  padding-top: 0.75rem;
}

.appt-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed #cbd5e1;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.appt-upload-zone:hover,
.appt-upload-zone.appt-upload-zone--active {
  border-color: var(--smadh-btn);
  background: rgba(108, 163, 104, 0.06);
}
.appt-upload-zone__icon {
  font-size: 1.75rem;
  color: var(--smadh-btn);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.appt-upload-zone__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--smadh-green);
}
.appt-upload-zone__hint {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}
.appt-upload-zone__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.appt-sticky-pay-btn {
  width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(22, 48, 32, 0.12);
}
@media (min-width: 640px) {
  .appt-sticky-pay-btn {
    width: auto;
    min-width: 11rem;
  }
}
.appt-sticky-pay-btn__arrow {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.95;
}

/* ── Promo, payment, total (step 6 lower) ── */
.appt-field-control--grow {
  flex: 1;
  min-width: 0;
}

.appt-promo-box {
  border: 1px dashed rgba(108, 163, 104, 0.55);
  border-radius: 0.75rem;
  background: rgba(108, 163, 104, 0.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.appt-promo-box__hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #475569;
}
.appt-promo-box__hint i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--smadh-btn);
  font-size: 0.875rem;
}
.appt-promo-box__row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.appt-promo-apply-btn {
  flex-shrink: 0;
  align-self: stretch;
  min-height: 3rem;
  padding: 0 1.125rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--smadh-btn);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.appt-promo-apply-btn:hover:not(:disabled) {
  background: var(--smadh-btn-hover);
}
.appt-promo-apply-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.appt-promo-box__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 1rem;
}
.appt-promo-box__message {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
}
.appt-promo-box__clear {
  flex-shrink: 0;
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  text-decoration: underline;
}
.appt-promo-box__clear:hover {
  color: var(--smadh-green);
}

.appt-pay-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.appt-pay-section__title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #334155;
}
.appt-pay-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.appt-pay-option:hover {
  border-color: rgba(108, 163, 104, 0.45);
}
.appt-pay-option--active {
  border-color: var(--smadh-btn);
  background: rgba(108, 163, 104, 0.07);
}
.appt-pay-option__radio {
  flex-shrink: 0;
  margin-top: 0.65rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--smadh-btn);
}
.appt-pay-option__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(108, 163, 104, 0.12);
  color: var(--smadh-btn);
  font-size: 1rem;
}
.appt-pay-option__text {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}
.appt-pay-option__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.appt-pay-option__sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}
