:root {
  --primary: #0f766e;
  --primary-hover: #0d9488;
  --secondary: #3b82f6;
  --accent: #10b981;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --glass: rgba(255, 255, 255, 0.8);
  --border: rgba(226, 232, 240, 0.8);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  transition: all 0.3s;
}

nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #0f172a 0%, #0f766e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background: radial-gradient(circle at 100% 0%, #f0fdfa 0%, #ffffff 50%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-mockup {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-mockup:hover {
  transform: translateY(-5px);
}

.hero-mockup img {
  width: 100%;
  display: block;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.stat-item {
  padding: 15px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #f0fdfa;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 20px 0;
  color: var(--text-main);
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.pricing-features li i {
  color: var(--accent);
}

/* Footer */
footer {
  background: #0f172a;
  color: white;
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 25px;
}

.footer-brand p {
  color: #94a3b8;
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 40px;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive fixes */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-header h2 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* SSR portal additions */
.lang-menu { position: relative; }
.lang-menu summary { list-style: none; }
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  z-index: 1002;
}
.lang-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-main);
}
.lang-dropdown a:hover { background: #f1f5f9; }
.social-links { margin-top: 20px; display: flex; gap: 15px; font-size: 1.2rem; }
.social-links a { color: #94a3b8; }
.feature-image {
  width: 100%;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}
.security-badge {
  margin-top: 20px;
  padding: 40px;
  border-radius: 12px;
  background: #f1f5f9;
  color: var(--primary);
  text-align: center;
}
.security-badge i { font-size: 3rem; }
.security-badge div { margin-top: 10px; font-size: .8rem; font-weight: 700; }
.solution-showcase { background: white; }
.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.solution-row.reverse > div { order: 2; }
.solution-row.reverse > img { order: 1; }
.solution-row h2 { margin-bottom: 20px; font-size: 2rem; }
.solution-row p { margin-bottom: 30px; color: var(--text-muted); }
.solution-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.1);
}
.check-list { list-style: none; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--accent); }
.process-section { background: #f8fafc; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.step span {
  display: flex;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
}
.step p { color: var(--text-muted); }
.clinic-public-page {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .13), transparent 34rem),
    linear-gradient(180deg, #f8fafc 0%, #eef6f5 100%);
  color: #0f172a;
}
.clinic-shell {
  width: min(912px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.6rem 0 4rem;
}
.clinic-public-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 7.45rem;
  padding: 1.45rem 1.75rem;
  margin-bottom: 1.8rem;
  border: 1px solid #dbeafe;
  border-left: 6px solid var(--primary);
  border-radius: 1.65rem;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}
.clinic-public-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-width: 0;
  color: #0f172a;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 800;
  text-decoration: none;
}
.clinic-public-brand small {
  display: block;
  margin-top: .18rem;
  color: #64748b;
  font: 600 .92rem Inter, sans-serif;
}
.clinic-public-logo,
.clinic-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  font-family: Outfit, sans-serif;
  font-weight: 800;
}
.clinic-public-logo {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(15,118,110,.2);
}
.clinic-public-nav {
  position: static;
  top: auto;
  width: auto;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .75rem;
}
.clinic-public-nav a,
.clinic-mini-links a {
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
}
.clinic-public-nav a {
  padding: .65rem .9rem;
  border-radius: 999px;
}
.clinic-public-nav a:hover { background: #e8f5f3; }
.clinic-public-nav .clinic-nav-primary {
  color: white;
  background: #0f766e;
  box-shadow: 0 12px 25px rgba(15,118,110,.18);
}
.clinic-public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 1.5rem;
  align-items: start;
}
.clinic-main-column,
.clinic-side-column {
  display: grid;
  gap: 1.35rem;
}
.clinic-about-card,
.clinic-content-section,
.clinic-side-card,
.clinic-book-card,
.clinic-empty-card {
  border: 1px solid #dbe8e7;
  border-radius: .75rem;
  background: rgba(255,255,255,.94);
  box-shadow: 0 2px 5px rgba(15, 23, 42, .16);
}
.clinic-about-card,
.clinic-content-section,
.clinic-side-card,
.clinic-book-card,
.clinic-empty-card {
  padding: 1.25rem;
}
.clinic-eyebrow {
  margin: 0 0 .35rem;
  color: #0f766e;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.clinic-about-card h1,
.clinic-content-section h2,
.clinic-side-card h2,
.clinic-book-card h2 {
  margin: 0 0 .8rem;
  font-family: Outfit, sans-serif;
  color: #0f172a;
}
.clinic-content-section h2 {
  font-size: 1.25rem;
}
.clinic-about-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  line-height: 1.08;
}
.clinic-lead {
  max-width: 58ch;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}
.clinic-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}
.clinic-book-button,
.clinic-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .85rem 1.2rem;
  border-radius: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.clinic-book-button {
  color: white;
  background: #0f766e;
  box-shadow: 0 16px 30px rgba(15,118,110,.25);
}
.clinic-book-button.full { width: 100%; }
.clinic-call-button {
  color: #0f766e;
  border: 1px solid #b7d9d5;
  background: white;
}
.clinic-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.clinic-team-card,
.clinic-service-row {
  border: 1px solid #dcebea;
  border-radius: .65rem;
  background: #f8fcfb;
}
.clinic-team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem;
}
.clinic-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 1.35rem;
}
.clinic-team-card h3,
.clinic-service-row h3 {
  margin: 0;
  font-size: .96rem;
}
.clinic-team-card p,
.clinic-empty-card {
  margin: 0;
  color: #64748b;
}
.clinic-service-list {
  display: grid;
  gap: .55rem;
}
.clinic-service-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .62rem .9rem;
}
.clinic-side-card h2,
.clinic-book-card h2 {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.25rem;
}
.clinic-side-card p {
  display: grid;
  gap: .25rem;
  margin: 0 0 1rem;
}

.confirm-page-shell {
  width: min(920px, calc(100% - 2rem));
  margin: 8rem auto 5rem;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.confirm-card {
  width: 100%;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid #dbe8e7;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(15, 118, 110, .10), transparent 36%),
    rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
  text-align: center;
}

.confirm-card.failed {
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 68, 68, .12), transparent 36%),
    rgba(255, 255, 255, .96);
}

.confirm-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0f766e;
  background: #ecfdf5;
  font-size: 2.1rem;
}

.confirm-card.failed .confirm-icon {
  color: #dc2626;
  background: #fef2f2;
}

.confirm-card h1 {
  margin: .25rem 0 .75rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 6vw, 2.9rem);
  line-height: 1.08;
}

.confirm-message {
  margin: 0 auto;
  max-width: 42rem;
  color: #475569;
  font-size: clamp(.98rem, 2.5vw, 1.08rem);
  line-height: 1.7;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}
.register-resend-form {
  margin-top: 1.2rem;
}
.booking-lite-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 1.2rem;
  align-items: start;
}
.booking-lite-panel,
.booking-lite-success {
  padding: 1.35rem;
  border: 1px solid #dbe8e7;
  border-radius: .9rem;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}
.booking-lite-panel h1,
.booking-lite-panel h2,
.booking-lite-success h1,
.booking-lite-empty h1 {
  margin: 0 0 1rem;
  color: #0f172a;
}
.booking-lite-form {
  display: grid;
  gap: .9rem;
}
.booking-lite-form label {
  display: grid;
  gap: .35rem;
  color: #475569;
  font-weight: 700;
}
.booking-lite-form input,
.booking-lite-form select,
.booking-lite-form textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: .72rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: .7rem;
  background: white;
  color: #0f172a;
  font: inherit;
}
.booking-lite-form textarea {
  resize: vertical;
}
.booking-lite-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.booking-lite-slots {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid #e2e8f0;
}
.booking-lite-slots h2 {
  font-size: 1rem;
}
.booking-lite-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: .6rem;
}
.booking-lite-slot {
  display: block;
  cursor: pointer;
}
.booking-lite-slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-lite-slot span {
  display: flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #a7f3d0;
  border-radius: .75rem;
  background: #ecfdf5;
  color: #0f766e;
  font-weight: 800;
}
.booking-lite-slot input:checked + span {
  background: #0f766e;
  color: white;
  border-color: #0f766e;
}
.booking-lite-alert {
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  border-radius: .75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 700;
}
.booking-lite-success {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.booking-lite-summary {
  display: grid;
  gap: .25rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border-radius: .8rem;
  background: #f8fafc;
  color: #475569;
}
.booking-lite-summary strong {
  color: #0f172a;
}
.booking-lite-empty {
  display: grid;
  gap: .85rem;
  max-width: 38rem;
  margin: 0 auto;
}
.clinic-book-button[disabled] {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}
.clinic-side-card p span {
  color: #0f766e;
  font-weight: 800;
}
.clinic-side-card p strong,
.clinic-side-card a {
  color: #334155;
}
.clinic-hours {
  display: grid;
  gap: .55rem;
}
.clinic-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #334155;
}
.clinic-mini-links {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1rem;
  color: #94a3b8;
  font-size: .92rem;
}
.clinic-not-found {
  margin: 6rem auto;
  max-width: 40rem;
  padding: clamp(1.5rem, 5vw, 2.6rem);
  border: 1px solid #dbe8e7;
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at 85% 5%, rgba(15, 118, 110, .12), transparent 34%),
    white;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
  text-align: center;
}
.clinic-not-found-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecfdf5;
  color: #0f766e;
  font-size: 1.8rem;
}
.clinic-not-found h1 {
  margin: .3rem 0 .8rem;
  font-family: Outfit, sans-serif;
  color: #0f172a;
  font-size: clamp(1.8rem, 5vw, 2.55rem);
  line-height: 1.05;
}
.clinic-not-found p {
  margin: 0 auto;
  max-width: 34rem;
  color: #475569;
  line-height: 1.7;
}
.clinic-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 1.4rem;
}
.clinic-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .85rem 1.2rem;
  border: 1px solid #b7d9d5;
  border-radius: .9rem;
  color: #0f766e;
  background: white;
  font-weight: 800;
  text-decoration: none;
}
.clinic-footer {
  display: grid;
  grid-template-columns: 1.2fr .9fr .7fr;
  gap: 2.8rem;
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid #dbe8e7;
  border-radius: .9rem .9rem 0 0;
  background: #eef4f7;
  color: #0f172a;
}
.clinic-footer h2,
.clinic-footer h3 {
  margin: 0 0 .85rem;
  color: #0f766e;
  font-size: 1rem;
}
.clinic-footer p {
  margin: 0 0 .45rem;
  color: #475569;
  font-size: .9rem;
}
.clinic-footer a {
  color: #0f766e;
  text-decoration: none;
}

/* Compact public clinic home */
.clinic-public-page {
  background: #f6f3eb;
  color: #213329;
}

.clinic-public-page .clinic-shell {
  width: min(1180px, calc(100% - 2rem));
  padding: 0 0 2rem;
}

.clinic-home-header {
  min-height: 4.6rem;
  margin: 0 calc(50% - 50vw) 2.7rem;
  padding: .85rem max(1rem, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid #dedacf;
  border-radius: 0;
  background: rgba(250, 248, 242, .96);
  box-shadow: none;
}

.clinic-home-header .clinic-public-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
}

.clinic-home-header .clinic-public-logo {
  width: 2.65rem;
  height: 2.65rem;
  background: #3d7358;
  box-shadow: 0 4px 12px rgba(47, 87, 67, .18);
}

.clinic-home-header .clinic-public-nav {
  gap: .5rem;
}

.clinic-home-header .clinic-public-nav a,
.clinic-home-header .clinic-nav-icon {
  min-height: 2.05rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  color: #22352b;
  font-size: .9rem;
}

.clinic-home-header .clinic-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clinic-home-header .clinic-nav-primary {
  color: white;
  background: #3d7358;
  box-shadow: none;
}

.clinic-home-header .clinic-nav-secondary {
  border: 1px solid #d8d1c2;
  background: #fbfaf6;
}

.clinic-home-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(22rem, .9fr);
  gap: 4rem;
  align-items: center;
  padding: 2.6rem 0 3.5rem;
}

.clinic-home-copy {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.clinic-home-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .45rem;
  padding: .28rem .75rem;
  border: 1px solid #bdd2bf;
  border-radius: 999px;
  color: #2f6a4d;
  background: #e5f1e4;
  font-size: .82rem;
  font-weight: 700;
}

.clinic-home-copy h1 {
  max-width: 9.4ch;
  margin: 0;
  color: #213329;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
}

.clinic-home-copy p {
  max-width: 32rem;
  margin: 0;
  color: #536257;
  font-size: 1.05rem;
  line-height: 1.7;
}

.clinic-home-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 1.4rem;
  margin-top: .35rem;
}

.clinic-home-stats div {
  padding-right: 1.4rem;
  border-right: 1px solid #dedacf;
}

.clinic-home-stats div:last-child {
  border-right: 0;
  padding-right: 0;
}

.clinic-home-stats strong {
  display: block;
  color: #10221a;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
  line-height: 1;
}

.clinic-home-stats span {
  color: #607066;
  font-size: .9rem;
}

.clinic-home-visual {
  position: relative;
  min-height: 29rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(33, 51, 41, .04), rgba(33, 51, 41, .02)),
    url('/images/spa-hero.png') center / cover no-repeat;
  box-shadow: 0 16px 35px rgba(49, 53, 39, .18);
  overflow: hidden;
}

.clinic-home-visual::before {
  content: none;
}

.clinic-treatment-room span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: #f7efe2;
  box-shadow: 0 5px 12px rgba(57, 47, 30, .15);
}

.clinic-treatment-room span:nth-child(1) {
  width: 9rem;
  height: 2.4rem;
  right: 16%;
  bottom: 25%;
}

.clinic-treatment-room span:nth-child(2) {
  width: 7.3rem;
  height: 2rem;
  right: 23%;
  bottom: 32%;
}

.clinic-treatment-room span:nth-child(3) {
  width: 5.8rem;
  height: 1.6rem;
  right: 30%;
  bottom: 38%;
}

.clinic-opening-card {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  display: grid;
  gap: .2rem;
  min-width: 12rem;
  padding: 1rem;
  border-radius: 1.15rem;
  background: #fffefa;
  box-shadow: 0 10px 24px rgba(42, 47, 37, .18);
}

.clinic-opening-card strong {
  color: #213329;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
}

.clinic-opening-card span {
  color: #536257;
  font-size: .85rem;
}

.clinic-home-section {
  padding: 2.8rem 0 1.5rem;
}

.clinic-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.clinic-section-head h2,
.clinic-home-about-card h2,
.clinic-home-cta h2 {
  margin: 0;
  color: #10221a;
  font-family: Georgia, 'Times New Roman', serif;
}

.clinic-section-head h2 {
  font-size: clamp(2rem, 4vw, 2.65rem);
}

.clinic-section-head a {
  color: #2f6a4d;
  font-weight: 800;
  text-decoration: none;
}

.clinic-home-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.clinic-home-service-card {
  display: grid;
  grid-template-rows: minmax(3.5rem, auto) auto;
  gap: 1.2rem;
  min-height: 8.2rem;
  padding: 1.35rem;
  border: 1px solid #d8d1c2;
  border-radius: 1.35rem;
  color: #213329;
  background: #fffefa;
  text-decoration: none;
}

.clinic-home-service-card strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.22rem;
}

.clinic-home-service-card span {
  display: flex;
  justify-content: flex-end;
  gap: .45rem;
  padding-top: .8rem;
  border-top: 1px solid #dedacf;
  color: #7e9d81;
  font-weight: 800;
}

.clinic-home-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  padding: 2.6rem 0 1.7rem;
  border-top: 1px solid #dedacf;
}

.clinic-home-about-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(18rem, .9fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.clinic-home-photo,
.clinic-home-about-card,
.clinic-home-info-grid .clinic-side-card {
  border: 1px solid #d8d1c2;
  border-radius: 1.35rem;
  background: #fffefa;
}

.clinic-home-photo {
  min-height: 17rem;
  background: url('/images/spa-detail.png') center / cover no-repeat;
}

.clinic-home-about-card {
  padding: 0;
  overflow: hidden;
}

.clinic-home-about-card > div:last-child {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.clinic-home-about-card h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.05;
}

.clinic-home-about-card p {
  margin: 1rem 0;
  color: #536257;
  line-height: 1.65;
}

.clinic-home-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: .8rem;
  align-items: stretch;
}

.clinic-home-info-grid .clinic-side-card {
  box-shadow: none;
}

.clinic-home-info-grid .clinic-side-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
}

.clinic-home-info-grid .clinic-side-card p {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.clinic-home-info-grid .clinic-side-card p i,
.clinic-home-info-grid .clinic-side-card h2 i {
  color: #3d7358;
}

.clinic-home-hours div {
  padding: .35rem .65rem;
  border-radius: 999px;
}

.clinic-home-hours div:nth-child(odd) {
  background: #f2f0e9;
}

.clinic-home-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin: 1.5rem 0 2.2rem;
  padding: 3.4rem 1.2rem;
  border-radius: 1.8rem;
  color: white;
  text-align: center;
  background: #3d7358;
}

.clinic-home-cta h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.clinic-home-cta p {
  margin: 0;
  color: #edf6ed;
}

.clinic-home-cta .clinic-book-button {
  color: #2f6a4d;
  background: #fffefa;
  box-shadow: none;
}

.clinic-public-page .clinic-footer {
  margin: 0 calc(50% - 50vw);
  padding: 2rem max(1rem, calc((100vw - 1180px) / 2));
  border: 0;
  border-top: 1px solid #dedacf;
  border-radius: 0;
  background: #fbfaf6;
}

@media (max-width: 900px) {
  .clinic-home-hero,
  .clinic-home-about-card,
  .clinic-home-info-grid {
    grid-template-columns: 1fr;
  }

  .clinic-home-about-card > div:last-child {
    padding: 0 1.25rem 1.25rem;
  }

  .clinic-home-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .clinic-home-header {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 1.3rem;
  }

  .clinic-home-header .clinic-public-brand {
    font-size: .98rem;
  }

  .clinic-home-header .clinic-public-logo {
    width: 2.05rem;
    height: 2.05rem;
  }

  .clinic-home-header .clinic-public-nav a:not(.clinic-nav-primary),
  .clinic-home-header .clinic-nav-icon {
    display: none;
  }

  .clinic-home-hero {
    gap: 1.5rem;
    padding: 1.2rem 0 2rem;
  }

  .clinic-home-copy h1 {
    font-size: 3rem;
  }

  .clinic-home-stats,
  .clinic-home-services,
  .clinic-home-team {
    grid-template-columns: 1fr;
  }

  .clinic-home-stats div {
    padding: 0 0 .8rem;
    border-right: 0;
    border-bottom: 1px solid #dedacf;
  }

  .clinic-home-visual {
    min-height: 19rem;
  }
}
@media (max-width: 860px) {
  .solution-row, .clinic-public-grid, .clinic-team-grid, .clinic-footer, .booking-lite-grid { grid-template-columns: 1fr; }
  .clinic-public-header { grid-template-columns: 1fr; align-items: flex-start; }
  .clinic-public-nav { justify-content: flex-start; }
  .solution-row.reverse > div, .solution-row.reverse > img { order: initial; }
}
@media (max-width: 520px) {
  .booking-lite-two { grid-template-columns: 1fr; }
  .booking-lite-slot-list { grid-template-columns: 1fr 1fr; }
}

/* Public subpage alignment */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row h2 { margin-bottom: 20px; font-size: 2rem; }
.feature-row p { margin-bottom: 30px; color: var(--text-muted); }
.feature-row.reverse > img { order: 1; }
.feature-row.reverse > div { order: 2; }
.industry-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.cta-section { background: white; text-align: center; }
.plan-icon { margin-bottom: 20px; text-align: center; font-size: 2rem; color: var(--accent); }
.featured-icon { color: var(--primary); }
.featured-tag {
  display: inline-flex;
  align-self: center;
  margin: -20px auto 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0fdfa;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.faq-section { background: white; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.faq-grid h4 { margin-bottom: 10px; }
.faq-grid p { color: var(--text-muted); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.contact-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
}
.contact-card h3 { margin-bottom: 25px; }
.contact-card p { color: var(--text-muted); }
.contact-item { display: flex; gap: 20px; margin-bottom: 30px; }
.contact-item > i { color: var(--primary); font-size: 1.5rem; }
.contact-item h4 { margin-bottom: 5px; }
.contact-actions { justify-content: flex-start; margin: 30px 0 0; }
@media (max-width: 860px) {
  .feature-row, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse > img, .feature-row.reverse > div { order: initial; }
}

/* Public booking v2 */
.booking-public-header { margin-bottom: 1.15rem; }
.booking-v2-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}
.booking-v2-progress div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: .7rem;
  row-gap: .18rem;
  align-items: center;
  min-height: 4.4rem;
  padding: .75rem .9rem;
  border: 1px solid #dbe8e7;
  border-radius: .85rem;
  background: rgba(255,255,255,.82);
  color: #64748b;
}
.booking-v2-progress div.active {
  border-color: #99f6e4;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  color: #0f172a;
}
.booking-v2-progress span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-weight: 900;
}
.booking-v2-progress div.active span {
  background: #0f766e;
  color: white;
}
.booking-v2-progress strong {
  min-width: 0;
  color: inherit;
  font-size: .94rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-v2-progress small {
  min-width: 0;
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clinic-public-logo-img {
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 auto;
  border-radius: .9rem;
  object-fit: cover;
  border: 1px solid #dbe8e7;
  background: white;
  box-shadow: 0 16px 35px rgba(15,118,110,.14);
}
.booking-v2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.15rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #dbe8e7;
  border-radius: .95rem;
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(240,253,250,.92));
  box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}
.booking-v2-hero h1 {
  max-width: 18ch;
  margin: 0 0 .8rem;
  color: #0f172a;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.05;
}
.booking-v2-hero p {
  max-width: 42rem;
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
}
.booking-v2-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
}
.booking-v2-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.25rem;
  padding: .4rem .7rem;
  border: 1px solid #cde8e4;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #0f766e;
  font-size: .86rem;
  font-weight: 800;
}
.booking-v2-clinic-card {
  display: grid;
  gap: .7rem;
  align-content: center;
  padding: 1rem;
  border: 1px solid #cde8e4;
  border-radius: .8rem;
  background: rgba(255,255,255,.78);
}
.booking-v2-clinic-card strong {
  color: #0f172a;
  font-family: Outfit, sans-serif;
  font-size: 1.15rem;
}
.booking-v2-clinic-card span {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: #475569;
  font-size: .94rem;
}
.booking-v2-clinic-card i {
  width: 1rem;
  padding-top: .18rem;
  color: #0f766e;
}
.booking-v2-clinic-card a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 700;
}
.booking-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .82fr);
  gap: 1.15rem;
  align-items: start;
}
.booking-v2-side { display: grid; gap: 1rem; }
.booking-v2-panel,
.booking-v2-summary,
.booking-v2-success {
  border: 1px solid #dbe8e7;
  border-radius: .9rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}
.booking-v2-panel { padding: 1.25rem; }
.booking-v2-panel-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.booking-v2-panel-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.35rem;
}
.booking-v2-guidance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: 1rem;
}
.booking-v2-guidance div {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  min-height: 3.5rem;
  padding: .75rem;
  border: 1px solid #e2e8f0;
  border-radius: .75rem;
  background: #f8fcfb;
  color: #475569;
  font-size: .88rem;
  line-height: 1.35;
}
.booking-v2-guidance i {
  color: #0f766e;
  padding-top: .15rem;
}
.booking-v2-step {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: #0f766e;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(15,118,110,.18);
}
.booking-v2-form { display: grid; gap: .9rem; }
.booking-v2-picker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-v2-find-button {
  align-self: end;
  min-height: 2.95rem;
  border: 0;
}
.booking-v2-form label {
  display: grid;
  gap: .35rem;
  color: #475569;
  font-weight: 800;
}
.booking-v2-form label span { font-size: .9rem; }
.booking-v2-form input,
.booking-v2-form select,
.booking-v2-form textarea {
  width: 100%;
  min-height: 2.95rem;
  padding: .72rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: .7rem;
  background: white;
  color: #0f172a;
  font: inherit;
}
.booking-v2-form input:focus,
.booking-v2-form select:focus,
.booking-v2-form textarea:focus {
  outline: 2px solid rgba(15,118,110,.18);
  border-color: #0f766e;
}
.booking-v2-form textarea { resize: vertical; }
.booking-v2-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: .7rem;
  color: #475569;
  font-weight: 600;
}
.booking-v2-checkbox input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  margin-top: .2rem;
  accent-color: #0f766e;
}
.booking-v2-checkbox span {
  display: block;
  line-height: 1.55;
}
.booking-v2-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.booking-v2-slots {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.booking-v2-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.booking-v2-section-title h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}
.booking-v2-section-title span {
  color: #64748b;
  font-size: .92rem;
  font-weight: 700;
}
.booking-v2-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.4rem, 1fr));
  gap: .6rem;
}
.booking-v2-slot { display: block; cursor: pointer; }
.booking-v2-slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-v2-slot span {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #99f6e4;
  border-radius: .72rem;
  background: #ecfdf5;
  color: #0f766e;
  font-weight: 900;
}
.booking-v2-slot input:checked + span {
  background: #0f766e;
  color: white;
  border-color: #0f766e;
  box-shadow: 0 14px 28px rgba(15,118,110,.2);
}
.booking-v2-empty-state {
  display: grid;
  place-items: center;
  gap: .7rem;
  min-height: 11rem;
  padding: 1rem;
  border: 1px dashed #b7d9d5;
  border-radius: .8rem;
  background: #f8fcfb;
  color: #64748b;
  text-align: center;
}
.booking-v2-empty-state i {
  color: #0f766e;
  font-size: 1.8rem;
}
.booking-v2-alert {
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  border-radius: .75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 800;
}
.booking-v2-summary { padding: 1rem; }
.booking-v2-summary dl {
  display: grid;
  gap: .75rem;
  margin: .8rem 0 0;
}
.booking-v2-summary dl div {
  display: grid;
  gap: .2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #e2e8f0;
}
.booking-v2-summary dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.booking-v2-summary dt {
  color: #64748b;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.booking-v2-summary dd {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}
.booking-v2-help-card {
  padding: 1rem;
  border: 1px solid #dbe8e7;
  border-radius: .9rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}
.booking-v2-help-card h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .75rem;
  color: #0f172a;
  font-size: 1rem;
}
.booking-v2-help-card h3 i {
  color: #0f766e;
}
.booking-v2-help-card ol {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.25rem;
  color: #475569;
  font-size: .9rem;
  line-height: 1.45;
}
.booking-v2-success {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  text-align: center;
}
.booking-v2-summary-card {
  display: grid;
  gap: .3rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border-radius: .8rem;
  background: #f8fafc;
  color: #475569;
}
.booking-v2-summary-card strong { color: #0f172a; }
.booking-v2-empty {
  display: grid;
  gap: .85rem;
  max-width: 38rem;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .booking-v2-progress {
    grid-template-columns: 1fr;
  }
  .booking-v2-hero,
  .booking-v2-grid {
    grid-template-columns: 1fr;
  }
  .booking-v2-hero h1 { max-width: 18ch; }
  .booking-v2-guidance {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .booking-v2-two,
  .booking-v2-picker-grid {
    grid-template-columns: 1fr;
  }
  .booking-v2-slot-list {
    grid-template-columns: 1fr 1fr;
  }
  .booking-v2-panel-head {
    align-items: flex-start;
  }
}

/* App-style public booking surface */
.booking-app-page {
  background: #f5f7f9;
}
.booking-app-page .clinic-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 1rem auto 2rem;
}
.booking-app-header {
  margin-bottom: .9rem;
  padding: .85rem 1rem;
  border: 0;
  border-radius: 0;
  background: #0f766e;
  box-shadow: 0 2px 8px rgba(15,23,42,.18);
}
.booking-app-header .clinic-public-brand,
.booking-app-header .clinic-public-nav a {
  color: white;
}
.booking-app-header .clinic-public-brand small {
  color: rgba(255,255,255,.78);
}
.booking-app-header .clinic-public-logo,
.booking-app-header .clinic-public-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .45rem;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.16);
  color: white;
  box-shadow: none;
}
.booking-app-header .clinic-nav-primary {
  background: rgba(255,255,255,.18);
  box-shadow: none;
}
.booking-app-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: .85rem;
  padding: .85rem 1rem;
  border: 1px solid #e0e5ea;
  border-radius: .45rem;
  background: white;
  box-shadow: 0 1px 3px rgba(15,23,42,.08);
}
.booking-app-toolbar h1 {
  margin: 0;
  color: #111827;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}
.booking-app-toolbar p {
  margin: .25rem 0 0;
  color: #667085;
}
.booking-app-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .45rem;
  max-width: 44rem;
}
.booking-app-toolbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2rem;
  padding: .35rem .55rem;
  border: 1px solid #d9e3e2;
  border-radius: .35rem;
  background: #f8fafc;
  color: #334155;
  font-size: .86rem;
  font-weight: 700;
}
.booking-app-toolbar-meta i {
  color: #0f766e;
}
.booking-app-page .booking-v2-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .82fr);
  gap: .9rem;
}
.booking-app-page .booking-v2-panel,
.booking-app-page .booking-v2-summary,
.booking-app-page .booking-v2-success {
  border: 1px solid #e0e5ea;
  border-radius: .45rem;
  background: white;
  box-shadow: 0 1px 3px rgba(15,23,42,.08);
}
.booking-app-page .booking-v2-panel {
  padding: 1rem;
}
.booking-app-page .booking-v2-panel-head {
  margin-bottom: .75rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid #edf0f2;
}
.booking-app-page .booking-v2-panel-head h2 {
  font-size: 1.12rem;
}
.booking-app-page .booking-v2-form {
  gap: .75rem;
}
.booking-app-page .booking-step-form {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(220px, .8fr) minmax(220px, .8fr);
  gap: .85rem;
  align-items: stretch;
}
.booking-step-card {
  display: grid;
  gap: .8rem;
  align-content: start;
  padding: .9rem;
  border: 1px solid #e0e5ea;
  border-radius: .45rem;
  background: #fbfcfd;
}
.booking-step-grid {
  grid-template-rows: auto 1fr auto;
}
.booking-step-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
}
.booking-step-title > span {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #0f766e;
  color: white;
  font-size: .85rem;
  font-weight: 900;
}
.booking-step-title h3 {
  margin: 0;
  color: #111827;
  font-size: .98rem;
}
.booking-step-title p {
  margin: .15rem 0 0;
  color: #667085;
  font-size: .8rem;
  line-height: 1.35;
}
.booking-therapist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: .55rem;
}
.booking-therapist-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: .65rem;
  row-gap: .12rem;
  align-items: center;
  min-height: 4rem;
  padding: .65rem;
  border: 1px solid #d9e3e2;
  border-radius: .4rem;
  background: white;
  color: #1f2937;
  cursor: pointer;
}
.booking-therapist-card:hover {
  border-color: #0f766e;
  background: #f0fdfa;
}
.booking-therapist-card:has(input:checked) {
  border-color: #0f766e;
  background: #ecfdf5;
  box-shadow: 0 0 0 1px #0f766e;
}
.booking-therapist-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-therapist-card img,
.booking-therapist-avatar {
  grid-row: span 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}
.booking-therapist-card img {
  object-fit: cover;
}
.booking-therapist-avatar {
  display: grid;
  place-items: center;
  background: #0f766e;
  color: white;
  font-weight: 900;
}
.booking-therapist-name {
  min-width: 0;
  color: #111827;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-therapist-card small {
  min-width: 0;
  color: #667085;
  font-size: .76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-app-page .booking-v2-picker-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 13.5rem 12.5rem;
  align-items: end;
}
.booking-app-page .booking-v2-form label {
  gap: .25rem;
  color: #344054;
  font-weight: 700;
}
.booking-app-page .booking-v2-form label span {
  font-size: .83rem;
}
.booking-app-page .booking-v2-form input,
.booking-app-page .booking-v2-form select,
.booking-app-page .booking-v2-form textarea {
  min-height: 2.7rem;
  border-color: #cfd8e3;
  border-radius: .35rem;
  box-shadow: none;
}
.booking-app-page .booking-v2-find-button,
.booking-app-page .clinic-book-button {
  min-height: 2.7rem;
  border-radius: .35rem;
  box-shadow: none;
}
.booking-app-page .booking-v2-slots {
  margin-top: 1rem;
  padding-top: .85rem;
}
.booking-app-page .booking-v2-slot-list {
  grid-template-columns: repeat(auto-fit, minmax(6.8rem, 1fr));
}
.booking-app-page .booking-v2-slot span {
  min-height: 2.45rem;
  border-radius: .35rem;
}
.booking-app-page .booking-v2-empty-state {
  min-height: 9rem;
  border-radius: .35rem;
  background: #fbfcfd;
}
.booking-app-page .booking-v2-side {
  gap: .9rem;
}
.booking-app-page .booking-v2-summary {
  padding: 1rem;
}
.booking-app-page .booking-v2-summary dl {
  gap: .6rem;
}
.booking-app-page .booking-v2-summary dl div {
  padding-bottom: .6rem;
}
.booking-app-page .clinic-footer {
  display: none;
}
@media (max-width: 980px) {
  .booking-app-page .booking-v2-grid,
  .booking-app-toolbar,
  .booking-app-page .booking-v2-picker-grid,
  .booking-app-page .booking-step-form {
    grid-template-columns: 1fr;
  }
  .booking-app-toolbar-meta {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .booking-app-page .clinic-shell {
    width: min(100% - 1rem, 1280px);
    margin-top: .5rem;
  }
  .booking-app-header {
    border-radius: .45rem;
  }
  .booking-app-header .clinic-public-brand span span,
  .booking-app-toolbar-meta span:nth-child(n+3) {
    display: none;
  }
  .booking-app-page .booking-v2-panel,
  .booking-app-page .booking-v2-summary {
    border-radius: .55rem;
  }
}

/* Public booking wizard */
.booking-wizard-progress {
  display: grid;
  grid-template-columns: auto minmax(4rem, 1fr) auto;
  align-items: center;
  gap: .85rem;
  margin: 2.2rem 1.5rem 2rem;
  color: #64748b;
  font-weight: 600;
}

.booking-wizard-progress span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  white-space: nowrap;
}

.booking-wizard-progress strong {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #a3aab3;
  color: #fff;
  font-size: .8rem;
}

.booking-wizard-progress .active {
  color: #0f172a;
}

.booking-wizard-progress .active strong {
  background: #0f766e;
}

.booking-wizard-progress .line {
  height: 1px;
  background: #cbd5e1;
}

.booking-wizard-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 25rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.booking-wizard-sidebar,
.booking-wizard-picker {
  display: grid;
  gap: 1rem;
}

.booking-wizard-card,
.booking-pending-card,
.booking-calendar-panel,
.booking-information-card {
  border: 1px solid #dbe8e7;
  border-radius: .65rem;
  background: rgba(255,255,255,.93);
  box-shadow: 0 1px 4px rgba(15, 23, 42, .08);
}

.booking-wizard-card {
  padding: 1rem;
}

.booking-wizard-card h2 {
  margin: 0 0 .9rem;
  font-size: 1.05rem;
}

.booking-picker-list {
  display: grid;
  gap: .55rem;
}

.booking-picker-list.service-list {
  max-height: 20rem;
  overflow: auto;
  padding-right: .25rem;
}

.booking-service-family {
  display: grid;
  gap: .5rem;
}

.booking-service-family > strong {
  padding: .2rem .1rem;
  color: #1e293b;
  font-size: .95rem;
}

.booking-duration-list {
  display: grid;
  gap: .5rem;
}

.booking-option-card {
  position: relative;
  display: grid;
  min-height: 3rem;
  align-items: center;
  gap: .7rem;
  padding: .75rem .85rem;
  border: 1px solid #d8e2e9;
  border-radius: .55rem;
  background: #fff;
  color: #1e293b;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.booking-provider-option {
  grid-template-columns: auto minmax(0, 1fr);
}

.booking-service-option {
  grid-template-columns: minmax(0, 1fr);
  min-height: 2.75rem;
  padding: .6rem .75rem;
}

.booking-service-option span {
  color: #1d4ed8;
  font-weight: 800;
}

.booking-option-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.booking-option-card strong {
  font-size: .95rem;
  line-height: 1.25;
}

.booking-option-card small {
  display: block;
  margin-top: .15rem;
  color: #64748b;
  font-weight: 700;
}

.booking-option-card:hover,
.booking-option-card:has(input:focus-visible) {
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}

.booking-option-card:has(input:checked) {
  border-color: #0f766e;
  background: #ecfdf7;
  box-shadow: inset 3px 0 0 #0f766e;
}

.booking-option-card.selected {
  border-color: #0f766e;
  background: #ecfdf7;
  box-shadow: inset 3px 0 0 #0f766e;
}

.booking-duration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.booking-duration-header h2 {
  margin: 0;
}

.booking-duration-header a {
  color: #1e293b;
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
}

.compact-submit {
  padding: .75rem;
}

.booking-date-field {
  display: grid;
  gap: .4rem;
  margin-bottom: .75rem;
  color: #475569;
  font-size: .85rem;
  font-weight: 700;
}

.booking-date-field input {
  min-height: 3rem;
  padding: .8rem .9rem;
  border: 1px solid #cad8e5;
  border-radius: .55rem;
  color: #0f172a;
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.booking-pending-card {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  color: white;
  background: #0f766e;
  box-shadow: 0 12px 30px rgba(15, 118, 110, .18);
}

.booking-pending-card span,
.booking-pending-card small {
  color: #b7efe8;
  font-weight: 800;
}

.booking-pending-card strong {
  font-family: Outfit, sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.booking-calendar-panel {
  display: grid;
  gap: 1rem;
  min-height: 25rem;
  padding: 1rem;
  overflow: hidden;
}

.booking-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.booking-calendar-toolbar h2 {
  margin: 0;
  font-size: 1.1rem;
}

.booking-calendar-toolbar > div {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.booking-calendar-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: .35rem .65rem;
  border-radius: .45rem;
  color: #0f766e;
  font-weight: 800;
  text-decoration: none;
}

.booking-calendar-toolbar a:hover,
.booking-calendar-toolbar a.today {
  background: #e8f5f3;
}

.booking-calendar-empty {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 25rem;
  padding: 2rem;
  border: 2px dashed #dbe4ee;
  border-radius: .75rem;
  color: #2563eb;
  text-align: center;
  background: #f8fbff;
}

.booking-calendar-empty i {
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 3rem;
}

.booking-calendar-table {
  display: grid;
  grid-template-columns: 5.25rem repeat(7, minmax(6.25rem, 1fr));
  overflow: auto;
  border: 1px solid #e2e8f0;
  border-radius: .55rem;
  background: white;
}

.time-head,
.day-head,
.time-cell,
.slot-cell {
  min-height: 3rem;
  border-right: 1px solid #e9eef5;
  border-bottom: 1px solid #e9eef5;
}

.day-head {
  display: grid;
  place-items: center;
  padding: .35rem;
  color: #1e293b;
  background: #fff;
  text-align: center;
}

.day-head span {
  color: #64748b;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.day-head strong {
  font-size: .9rem;
}

.day-head.selected {
  background: #eef6ff;
}

.time-cell {
  display: flex;
  align-items: center;
  padding: 0 .75rem;
  color: #64748b;
  background: #f8fafc;
  font-size: .85rem;
  font-weight: 800;
}

.slot-cell {
  display: grid;
  align-items: center;
  padding: .4rem;
  min-width: 6.25rem;
}

.booking-calendar-slot {
  position: relative;
  display: grid;
  place-items: center;
  gap: .05rem;
  min-height: 2.1rem;
  border-radius: .45rem;
  background: #73d10b;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.booking-calendar-slot small {
  color: rgba(255,255,255,.9);
  font-size: .68rem;
  line-height: 1;
}

.booking-calendar-slot input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.booking-calendar-slot:has(input:checked) {
  outline: 3px solid rgba(15, 118, 110, .28);
  background: #0f766e;
}

.booking-information-card {
  width: min(100%, 35rem);
  margin: 1rem auto 0;
  padding: 1.8rem;
}

.booking-info-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking-info-heading i {
  color: #64748b;
  font-size: 1.2rem;
}

.booking-info-heading h2 {
  margin: 0;
  font-size: 1.45rem;
}

.booking-information-card .booking-v2-summary-card {
  margin-bottom: 1.5rem;
  background: #eef4fa;
}

.booking-step-next-form {
  display: grid;
  gap: 1rem;
}

.booking-step-actions {
  display: flex;
  justify-content: flex-end;
}

.booking-info-heading a {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #64748b;
  text-decoration: none;
}

.booking-info-heading a:hover {
  background: #eef4fa;
  color: #0f766e;
}

.booking-login-required {
  display: grid;
  gap: .8rem;
  justify-items: center;
  padding: 1.5rem;
  border: 1px solid #c7d2fe;
  border-radius: .75rem;
  color: #334155;
  text-align: center;
  background: #eef2ff;
}

.booking-login-required i {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: white;
  background: #0f766e;
}

.booking-login-required h3 {
  margin: 0;
  color: #0f172a;
}

.booking-login-required p {
  margin: 0;
}

@media (max-width: 1100px) {
  .booking-wizard-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking-wizard-progress {
    grid-template-columns: 1fr;
    margin: 1.3rem 0;
  }

  .booking-wizard-progress .line {
    display: none;
  }

  .booking-calendar-table {
    grid-template-columns: 4.9rem repeat(7, minmax(5.6rem, 1fr));
  }

  .booking-information-card {
    padding: 1rem;
  }
}

@media (max-width: 860px) and (min-width: 561px) {
  .clinic-public-page .clinic-home-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .clinic-public-page .clinic-home-header .clinic-public-nav {
    justify-content: flex-end;
  }
}

/* Public booking warm clinic theme */
.booking-app-page {
  background: #f6f3eb;
  color: #1d2b23;
}

.booking-app-page .clinic-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.25rem;
}

.booking-app-header {
  min-height: 4.6rem;
  margin: 0 calc(50% - 50vw) 2.25rem;
  padding: .9rem max(1rem, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid #dedacf;
  border-radius: 0;
  background: rgba(250, 248, 242, .96);
  box-shadow: none;
}

.booking-app-header .clinic-public-brand,
.booking-app-header .clinic-public-nav a {
  color: #22352b;
}

.booking-app-header .clinic-public-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.booking-app-header .clinic-public-brand small {
  display: none;
}

.booking-app-header .clinic-public-logo,
.booking-app-header .clinic-public-logo-img {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #3d7358;
  box-shadow: 0 4px 12px rgba(47, 87, 67, .18);
}

.clinic-home-header .clinic-public-logo-img {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(47, 87, 67, .18);
}

.booking-app-header .clinic-public-nav {
  gap: .5rem;
}

.booking-app-header .clinic-public-nav a,
.booking-app-header .clinic-nav-icon {
  min-height: 2.05rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  color: #22352b;
  font-size: .9rem;
}

.booking-app-header .clinic-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-app-header .clinic-nav-primary {
  color: white !important;
  background: #3d7358;
  box-shadow: none;
}

.booking-app-header .clinic-nav-secondary {
  border: 1px solid #d8d1c2;
  background: #fbfaf6;
}

.booking-wizard-progress {
  grid-template-columns: auto minmax(5rem, 1fr) auto;
  margin: 0 1rem 2rem;
  color: #607066;
  font-size: .92rem;
}

.booking-wizard-progress strong {
  width: 2rem;
  height: 2rem;
  background: #eeece4;
  color: #607066;
  box-shadow: inset 0 0 0 1px rgba(61, 115, 88, .08);
}

.booking-wizard-progress .active strong {
  background: #3d7358;
  color: white;
  box-shadow: 0 0 0 4px #dce8dc;
}

.booking-wizard-progress .line {
  background: #d8d1c2;
}

.booking-wizard-layout {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1.5rem;
}

.booking-wizard-sidebar,
.booking-wizard-picker {
  gap: 1.5rem;
}

.booking-wizard-card,
.booking-calendar-panel,
.booking-information-card {
  border: 1px solid #dedacf;
  border-radius: 1.6rem;
  background: #fffefa;
  box-shadow: 0 4px 18px rgba(39, 48, 39, .12);
}

.booking-wizard-card {
  padding: 1.25rem;
}

.booking-wizard-card h2,
.booking-calendar-toolbar h2,
.booking-info-heading h2 {
  color: #19251e;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.booking-wizard-card h2 {
  margin-bottom: 1.1rem;
  font-size: 1.25rem;
}

.booking-picker-list {
  gap: .55rem;
}

.booking-picker-list.service-list {
  max-height: 17.75rem;
  padding-right: .55rem;
}

.booking-option-card {
  min-height: 3.8rem;
  padding: .75rem .85rem;
  border-color: #ded8cb;
  border-radius: 1.55rem;
  background: #f6f3eb;
  color: #203229;
  box-shadow: none;
}

.booking-provider-option {
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
}

.booking-provider-option::after,
.booking-service-family-option.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #3d7358;
}

.booking-provider-option:has(input:not(:checked))::after {
  content: "";
}

.booking-option-card strong {
  font-family: Inter, sans-serif;
  font-size: .95rem;
  font-weight: 700;
}

.booking-option-card small {
  color: #627066;
  font-size: .78rem;
  font-weight: 500;
}

.booking-therapist-avatar {
  width: 2.1rem;
  height: 2.1rem;
  background: #3d7358;
  font-size: .78rem;
}

.booking-option-card:hover,
.booking-option-card:has(input:focus-visible) {
  border-color: #3d7358;
  box-shadow: 0 0 0 3px rgba(61, 115, 88, .12);
}

.booking-option-card:has(input:checked),
.booking-option-card.selected {
  border-color: #3d7358;
  background: #e9f2e5;
  box-shadow: inset 0 0 0 1px #3d7358;
}

.booking-service-family-option {
  grid-template-columns: minmax(0, 1fr) auto;
}

.booking-duration-header {
  padding-top: .8rem;
  margin-top: .55rem;
  border-top: 1px solid #dedacf;
}

.booking-duration-header h2 {
  color: #627066;
  font-family: Inter, sans-serif;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-duration-list {
  grid-template-columns: 1fr;
  gap: .5rem;
}

.booking-service-option {
  width: 100%;
  min-height: 2.55rem;
  border-radius: 999px;
}

.booking-service-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  color: #3d7358;
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}

.booking-service-option span strong {
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.booking-service-option small {
  display: inline-flex;
  margin: 0;
  padding-left: .25rem;
  border-left: 1px solid rgba(61, 115, 88, .28);
  color: inherit;
  font-weight: 600;
  white-space: nowrap;
}

.booking-service-option::after {
  content: none;
}

.visually-hidden-submit {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-pending-card {
  display: none;
}

.booking-calendar-panel {
  gap: 1.25rem;
  min-height: 46rem;
  padding: 1.5rem;
}

.booking-calendar-toolbar h2 {
  margin: 0 0 .15rem;
  font-size: 1.35rem;
}

.booking-calendar-toolbar span {
  color: #707b71;
  font-size: .92rem;
  font-weight: 600;
}

.booking-calendar-toolbar > div:last-child {
  gap: .45rem;
}

.booking-calendar-toolbar a {
  min-width: 2rem;
  min-height: 2rem;
  padding: .25rem .6rem;
  border: 1px solid #dedacf;
  border-radius: 999px;
  color: #3d7358;
  background: #fffefa;
}

.booking-calendar-toolbar a.today {
  color: white;
  background: #3d7358;
  border-color: #3d7358;
}

.booking-calendar-empty {
  border-color: #dedacf;
  color: #3d7358;
  background: #fbfaf5;
}

.booking-calendar-table {
  grid-template-columns: repeat(7, minmax(5.9rem, 1fr));
  gap: .45rem .7rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.time-head,
.time-cell {
  display: none;
}

.day-head,
.slot-cell {
  min-height: auto;
  border: 0;
}

.day-head {
  min-height: 3.25rem;
  border-radius: 1.3rem;
  background: #f0eee7;
}

.day-head.selected {
  background: #cfe4cc;
}

.day-head span {
  color: #5c665e;
  font-size: .67rem;
}

.day-head strong {
  color: #203229;
  font-size: .86rem;
}

.slot-cell {
  padding: 0;
  min-width: 0;
}

.booking-calendar-slot {
  min-height: 2rem;
  border: 1px solid #b9d2bd;
  border-radius: 999px;
  background: #eef7ee;
  color: #1d3329;
  font-size: .82rem;
  font-weight: 700;
}

.booking-calendar-slot:hover {
  border-color: #3d7358;
  background: #e0eedf;
}

.booking-calendar-slot:has(input:checked) {
  outline: 0;
  background: #3d7358;
  color: white;
  border-color: #3d7358;
}

.booking-step-next-form {
  min-height: 100%;
}

.booking-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dedacf;
  border-radius: 1.6rem;
  background: #f6f3eb;
}

.booking-selection-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}

.booking-selection-copy {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}

.booking-summary-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #3d7358;
  background: #d5ead1;
}

.booking-selection-summary strong {
  display: block;
  color: #203229;
  line-height: 1.25;
}

.booking-selection-summary small {
  display: block;
  color: #707b71;
  font-size: .78rem;
  line-height: 1.25;
  max-width: 32ch;
  overflow-wrap: anywhere;
}

.booking-summary-price {
  color: #203229;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.booking-step-actions .clinic-book-button {
  min-width: 7.2rem;
  min-height: 2.4rem;
  border-radius: 999px;
  background: #93aa94;
  box-shadow: none;
  flex-shrink: 0;
}

.booking-step-actions:has(.booking-calendar-slot input:checked) .clinic-book-button,
.booking-calendar-panel:has(.booking-calendar-slot input:checked) .booking-step-actions .clinic-book-button {
  background: #3d7358;
}

.booking-step-actions-top {
  margin: 0 0 1rem;
  position: sticky;
  top: 1rem;
  z-index: 2;
}

.booking-step-actions-bottom {
  margin-top: 1rem;
}

@media (max-width: 1100px) {
  .booking-wizard-layout {
    grid-template-columns: 1fr;
  }

  .booking-calendar-panel {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .booking-app-page .clinic-shell {
    width: min(100% - .75rem, 1180px);
  }

  .booking-app-header {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 1.7rem;
  }

  .booking-app-header .clinic-public-brand {
    font-size: .98rem;
    line-height: 1.15;
  }

  .booking-app-header .clinic-public-logo,
  .booking-app-header .clinic-public-logo-img {
    width: 2rem;
    height: 2rem;
  }

  .booking-app-header .clinic-public-nav a:not(.clinic-nav-primary),
  .booking-app-header .clinic-nav-icon {
    display: none;
  }

  .booking-wizard-progress {
    grid-template-columns: auto minmax(2rem, 1fr) auto;
    margin: 0 .4rem 1.5rem;
    font-size: .74rem;
  }

  .booking-wizard-progress strong {
    width: 1.45rem;
    height: 1.45rem;
    font-size: .7rem;
  }

  .booking-wizard-card,
  .booking-calendar-panel,
  .booking-information-card {
    border-radius: 1.35rem;
  }

  .booking-calendar-toolbar {
    align-items: flex-start;
  }

  .booking-calendar-table {
    grid-template-columns: repeat(7, 4.95rem);
    overflow-x: auto;
    padding-bottom: .35rem;
  }

  .day-head {
    min-height: 3rem;
  }

  .booking-calendar-slot {
    min-height: 2rem;
  }

  .booking-step-actions {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
  }

  .booking-selection-summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .booking-step-actions .clinic-book-button {
    width: 100%;
  }

  .booking-summary-price {
    grid-column: 1 / -1;
  }
}

.booking-app-page .booking-information-card {
  width: min(100%, 35rem);
  margin: 0 auto 2rem;
  padding: 1.85rem;
  border-color: #dedacf;
  border-radius: 1.6rem;
  background: #fffefa;
  box-shadow: 0 10px 28px rgba(39, 48, 39, .12);
}

.booking-app-page .booking-info-heading {
  margin-bottom: 1.35rem;
}

.booking-app-page .booking-info-heading a {
  color: #3d7358;
  background: transparent;
}

.booking-app-page .booking-info-heading a:hover {
  color: #203229;
  background: #e9f2e5;
}

.booking-app-page .booking-info-heading h2 {
  color: #19251e;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
}

.booking-app-page .booking-information-card .booking-v2-summary-card {
  display: grid;
  gap: .35rem;
  margin-bottom: 1.45rem;
  padding: 1rem;
  border: 1px solid #d8d1c2;
  border-radius: .9rem;
  background: #f0eee7;
  color: #203229;
}

.booking-app-page .booking-information-card .booking-v2-summary-card span {
  color: #536257;
}

.booking-app-page .booking-information-card .booking-v2-summary-card strong {
  color: #19251e;
}

.booking-app-page .booking-v2-form {
  gap: .9rem;
}

.booking-app-page .booking-v2-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.booking-app-page .booking-v2-form label {
  display: grid;
  gap: .35rem;
  color: #203229;
  font-weight: 800;
}

.booking-app-page .booking-v2-form label span {
  color: #203229;
  font-size: .84rem;
}

.booking-app-page .booking-v2-form input,
.booking-app-page .booking-v2-form textarea {
  min-height: 3.05rem;
  border: 1px solid #d2d8d0;
  border-radius: .75rem;
  background: #fff;
  color: #1d2b23;
  box-shadow: none;
}

.booking-app-page .booking-v2-form textarea {
  min-height: 6.2rem;
}

.booking-app-page .booking-v2-form input:focus,
.booking-app-page .booking-v2-form textarea:focus {
  border-color: #3d7358;
  box-shadow: 0 0 0 3px rgba(61, 115, 88, .12);
  outline: none;
}

.booking-app-page .booking-information-card .clinic-book-button.full {
  min-height: 3rem;
  border-radius: .75rem;
  background: #3d7358;
  box-shadow: 0 10px 22px rgba(61, 115, 88, .14);
}

.clinic-public-page .clinic-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, .75fr);
  gap: 2rem;
}

.clinic-public-page .clinic-footer h2,
.clinic-public-page .clinic-footer h3 {
  color: #213329;
  font-family: Georgia, 'Times New Roman', serif;
}

.clinic-public-page .clinic-footer p {
  color: #536257;
}

.clinic-public-page .clinic-footer a {
  color: #2f6a4d;
  font-weight: 700;
}

@media (max-width: 680px) {
  .booking-app-page .booking-v2-two,
  .clinic-public-page .clinic-footer {
    grid-template-columns: 1fr;
  }

  .booking-app-page .booking-information-card {
    padding: 1.25rem;
  }
}

/* Unified public clinic header actions */
.clinic-home-header .clinic-public-nav,
.booking-app-header .clinic-public-nav {
  gap: .5rem;
}

.clinic-public-nav .clinic-language-menu {
  position: relative;
}

.clinic-public-nav .clinic-language-menu summary {
  list-style: none;
}

.clinic-public-nav .clinic-language-menu summary::-webkit-details-marker {
  display: none;
}

.clinic-home-header .clinic-public-nav .clinic-nav-action,
.booking-app-header .clinic-public-nav .clinic-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  min-height: 2.08rem;
  padding: .42rem .68rem;
  border: 1px solid #d8d1c2;
  border-radius: 999px;
  background: #fbfaf6;
  color: #22352b !important;
  box-shadow: none;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.clinic-home-header .clinic-public-nav .clinic-nav-action:hover,
.booking-app-header .clinic-public-nav .clinic-nav-action:hover {
  border-color: #b9c9b9;
  background: #eef4e9;
}

.clinic-public-nav .clinic-language-list {
  position: absolute;
  top: calc(100% + .45rem);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 10rem;
  padding: .35rem;
  border: 1px solid #d8d1c2;
  border-radius: .8rem;
  background: #fffefa;
  box-shadow: 0 14px 34px rgba(31, 41, 55, .14);
}

.clinic-public-nav .clinic-language-list a {
  justify-content: flex-start;
  min-height: 2.15rem;
  padding: .45rem .6rem;
  border: 0;
  border-radius: .55rem;
  background: transparent;
  color: #22352b !important;
  box-shadow: none;
  font-size: .9rem;
}

.clinic-public-nav .clinic-language-list a:hover {
  background: #eef4e9;
}

@media (max-width: 560px) {
  .clinic-home-header .clinic-public-nav,
  .booking-app-header .clinic-public-nav {
    justify-content: flex-start;
  }

  .clinic-home-header .clinic-public-nav .clinic-nav-action,
  .booking-app-header .clinic-public-nav .clinic-nav-action {
    display: inline-flex !important;
    min-height: 2rem;
    padding: .4rem .56rem;
    font-size: .84rem;
  }

  .clinic-public-nav .clinic-language-list {
    left: 0;
    right: auto;
  }
}
