/* Base reset and typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #f8fafc; /* slate-50 */
  color: #020617; /* slate-900 */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

/* Layout utilities (subset of Tailwind we actually use) */
.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-root {
  align-items: stretch;
}

.app-root > main,
.app-root section,
.app-root .home-hero,
.app-root .booking-wizard {
  width: 100%;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 auto;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-self-end {
  justify-self: end;
}

.grid {
  display: grid;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-16 > * + * {
  margin-top: 4rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* Colors */
.bg-white {
  background-color: #ffffff;
}

.bg-slate-50 {
  background-color: #f8fafc;
}

.bg-slate-800\/60 {
  background-color: rgba(30, 64, 175, 0.6);
}

.bg-slate-900 {
  background-color: #020617;
}

.text-white {
  color: #ffffff;
}

.text-slate-50 {
  color: #f8fafc;
}

.text-slate-100 {
  color: #e5e7eb;
}

.text-slate-200 {
  color: #e2e8f0;
}

.text-slate-300 {
  color: #cbd5f5;
}

.text-slate-400 {
  color: #94a3b8;
}

.text-slate-500 {
  color: #64748b;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-900 {
  color: #020617;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-slate-200 {
  border-color: #e5e7eb;
}

.border-slate-700\/60 {
  border-color: rgba(51, 65, 85, 0.6);
}

.border-slate-800 {
  border-color: #1e293b;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1),
    0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* Text sizes and weights */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1.1;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.leading-tight {
  line-height: 1.2;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}

.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

/* Buttons and interactive */
.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.rounded-full {
  border-radius: 9999px;
}

.hover\:bg-slate-100:hover {
  background-color: #f1f5f9;
}

.hover\:text-white:hover {
  color: #ffffff;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.transition-colors {
  transition: color 150ms ease, background-color 150ms ease;
}

header.bg-white {
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.site-header-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo-image {
  height: 72px;
  width: auto;
  display: block;
}

.site-logo-placeholder {
  height: 72px;
  width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  color: #0f172a;
}

.header-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.9375rem;
  width: 100%;
  margin-top: 12px;
}

.header-nav-link {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.header-nav-link:hover {
  color: #1d4ed8;
}

.header-nav-link-primary {
  color: #1d4ed8;
  font-weight: 600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-book-now-mobile {
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: 8px;
  white-space: nowrap;
}

.header-menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 9999px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #1d4ed8;
}

.header-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav-open {
  display: flex;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d4ed8;
}

.header-call-icon {
  height: 44px;
  width: 44px;
  border-radius: 9999px;
  background-color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.header-call-text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}

.header-call-label {
  font-weight: 500;
}

.header-call-number {
  color: #111827;
  font-weight: 600;
}

.header-cart {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cart-icon {
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background-color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.header-cart-amount {
  font-size: 0.875rem;
  font-weight: 500;
}

.home-hero {
  padding-top: 48px;
  padding-bottom: 32px;
}

.home-hero-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.home-hero-text {
  max-width: none;
  width: 100%;
}

.home-hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #64748b;
  margin-bottom: 8px;
}

.home-hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
}

.home-hero-subtitle {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 20px;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 9999px;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.home-hero-primary:hover {
  background-color: #1e40af;
}

.home-hero-secondary {
  font-size: 0.875rem;
  color: #1d4ed8;
  text-decoration: underline;
}

.content-section {
  padding: 48px 24px 56px;
}

.content-section > div {
  max-width: 100%;
  margin: 0 auto;
}

/* Gift cards listing */
.giftcards-section .booking-services-grid {
  max-height: none;
  overflow: visible;
}
.gift-card-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background-color: #f8fafc;
}
.gift-card-image-el {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Treatment card image */
.booking-service-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background-color: #f8fafc;
}
.booking-service-image-el {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.giftcards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.giftcard-card {
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 6px 20px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.giftcard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,.06), 0 12px 28px rgba(0,0,0,.10);
}
.gift-card-placeholder {
  height: 220px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #d6d8db;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  color: #64748b;
}
.gift-card-placeholder-icon {
  font-size: 48px;
  line-height: 1;
}

.gc-details-button,
.gc-customize-button {
  appearance: none;
  border: 0;
  background: #eef2ff;
  color: #3730a3;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.gc-details-button {
  background: #f1f5f9;
  color: #334155;
}
.gc-details-button:hover {
  background: #e2e8f0;
}
.gc-customize-button {
  align-self: flex-start;
}
.gc-customize-button:hover {
  background: #e0e7ff;
}

.gc-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.gift-card-code-pill {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.08em;
  background: #0ea5e9;
  color: #fff;
  padding: 6px 10px;
  border-radius: 9999px;
  font-size: 12px;
}

.gc-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  position: sticky;
  bottom: 0;
  z-index: 5;
  box-shadow: 0 -8px 20px rgba(2,6,23,0.05);
}
.gc-promo-title {
  font-weight: 700;
}
.gc-promo-sub {
  font-size: 13px;
  color: #475569;
}
.gc-customize-cta {
  appearance: none;
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: #4f46e5;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(79,70,229,.25);
  cursor: pointer;
}
.gc-customize-cta:hover {
  background: #4338ca;
}

.gc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.gc-form-group {
  display: flex;
  flex-direction: column;
}
.gc-form-group-full {
  grid-column: 1 / -1;
}
.gc-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}
.gc-input {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}
.gc-help {
  font-size: 12px;
  color: #64748b;
  margin-top: 6px;
}

.gc-instructions {
  margin-top: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
}
.gc-instructions-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.gc-instructions-list {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
}

.gc-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.gc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .35);
}
.gc-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  max-width: 720px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  overflow: hidden;
}
.gc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eef2f7;
}
.gc-modal-title {
  font-weight: 600;
  font-size: 18px;
}
.gc-modal-close {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
}
.gc-modal-body {
  padding: 16px 20px;
}
.gc-modal-media img,
.gc-modal-media .gift-card-placeholder {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  object-fit: cover;
}
.gc-modal-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e5e7eb;
}
.gc-modal-label {
  color: #64748b;
}
.gc-modal-value {
  font-weight: 600;
}
.gc-modal-desc {
  margin-top: 12px;
  color: #334155;
}
.gc-modal-code {
  margin-top: 12px;
}
.gc-modal-code-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}
.gc-modal-code-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 6px;
}
.gc-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 12px 20px 20px 20px;
}


.booking-wizard {
  padding: 32px 24px 40px;
}

.booking-wizard-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.booking-steps {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  cursor: default;
  border-bottom: 3px solid transparent;
  flex: 1;
  text-align: center;
}

.booking-step-icon {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
  border-radius: 9999px;
}

.booking-step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

.booking-step-caption {
  display: none;
}

.booking-step-active {
  background-color: transparent;
  border-bottom-color: #1d4ed8;
}

.booking-step-active .booking-step-icon {
  color: #1d4ed8;
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #1d4ed8;
}

.booking-step-completed .booking-step-icon {
  color: #1d4ed8;
}

.booking-step-active .booking-step-label {
  color: #1d4ed8;
}

.booking-content {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 20px 20px 22px;
}

.booking-panel-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-panel-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.booking-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.booking-category-tab {
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 6px 14px;
  font-size: 0.8125rem;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.booking-category-tab-active {
  border-color: #1d4ed8;
  background-color: #1d4ed8;
  color: #ffffff;
}

.booking-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.booking-service-card {
  text-align: left;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 14px 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.booking-service-card-selected {
  border-color: #1d4ed8;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.09);
}

.booking-service-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.booking-service-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.booking-service-category {
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  gap: 12px;
}

.booking-service-description {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.booking-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}

.booking-service-meta-compact {
  margin-top: 4px;
}

.booking-service-chip {
  padding: 2px 8px;
  border-radius: 9999px;
  background-color: #eff6ff;
  color: #1d4ed8;
}

.booking-service-price {
  font-weight: 600;
  color: #111827;
}

.booking-service-view {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #1d4ed8;
  font-weight: 500;
}

.booking-services-empty,
.booking-services-loading {
  grid-column: 1/-1;
  font-size: 0.875rem;
  color: #6b7280;
}

.booking-panel-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
}

.booking-panel-actions-between {
  justify-content: space-between;
}

.booking-primary {
  border-radius: 9999px;
  border: none;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #1d4ed8;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.booking-primary:hover {
  background-color: #1e40af;
}

.booking-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

.booking-secondary {
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #ffffff;
  color: #111827;
  cursor: pointer;
}

.booking-date-time {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.booking-field-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 4px;
}

.booking-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  font-size: 0.875rem;
}

.booking-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  font-size: 0.875rem;
  resize: vertical;
}

.booking-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 48px;
}

.booking-slot {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  font-size: 0.8125rem;
  background-color: #ffffff;
  color: #111827;
  cursor: pointer;
}

.booking-slot-selected {
  border-color: #1d4ed8;
  background-color: #1d4ed8;
  color: #ffffff;
}

.booking-slots-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-slot-group-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.booking-slot-card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.booking-slot-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.booking-slot-meta {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Compact Slot Grid */
.booking-slots-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.booking-slot-compact {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 8px 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.booking-slot-compact:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

/* Ensure selected state overrides everything */
.booking-slot-compact.booking-slot-selected {
  border-color: #1d4ed8;
  background-color: #1d4ed8;
  color: #ffffff;
}

/* Payment Methods */
.booking-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.booking-payment-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.booking-payment-method:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.booking-payment-method.booking-payment-method-active {
  border-color: #1d4ed8;
  background-color: #eff6ff;
  box-shadow: 0 0 0 1px #1d4ed8;
}

.booking-payment-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #111827;
}

.booking-payment-method.booking-payment-method-active .booking-payment-title {
  color: #1d4ed8;
}

.booking-payment-sub {
  font-size: 0.75rem;
  color: #6b7280;
}

.booking-input-calendar {
  min-height: 44px;
}

.booking-calendar {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 10px;
}

.booking-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.booking-calendar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.booking-calendar-nav {
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  color: #4b5563;
}

.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.booking-calendar-weekday {
  text-align: center;
  font-size: 0.7rem;
  color: #9ca3af;
}

.booking-calendar-cell {
  border-radius: 9999px;
  border: none;
  background-color: #ffffff;
  height: 30px;
  font-size: 0.75rem;
  cursor: pointer;
  color: #111827;
}

.booking-calendar-cell-empty {
  background-color: transparent;
  cursor: default;
}

.booking-calendar-cell-disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: default;
}

.booking-calendar-cell-selected {
  background-color: #1d4ed8;
  color: #ffffff;
}

.booking-slots-empty,
.booking-slots-loading {
  width: 100%;
  font-size: 0.8125rem;
  color: #6b7280;
}

.booking-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 16px;
}

.booking-field {
  display: flex;
  flex-direction: column;
}

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

.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.booking-summary-section {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.booking-summary-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
}

.booking-summary-row-total {
  align-items: center;
}

.booking-summary-label {
  color: #111827;
}

.booking-summary-sub {
  font-size: 0.8125rem;
  color: #6b7280;
}

.booking-summary-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.booking-summary-chip {
  padding: 2px 8px;
  border-radius: 9999px;
  background-color: #eff6ff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 600;
}

.booking-summary-price {
  font-weight: 600;
  color: #111827;
}

.booking-summary-notes {
  margin-top: 4px;
  font-size: 0.8125rem;
  color: #4b5563;
}

.booking-success {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #166534;
}

.booking-error {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #b91c1c;
}

/* Modal */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 16px;
}

.booking-modal {
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 90vh;
}

.booking-modal-header {
  padding: 20px 24px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.booking-modal-header-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.booking-modal-meta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.booking-modal-price-header {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.booking-modal-chip {
  padding: 4px 10px;
  border-radius: 9999px;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.booking-modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.booking-modal-category {
  font-size: 0.8125rem;
  color: #64748b;
}

.booking-modal-close {
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.booking-modal-close:hover {
  color: #0f172a;
  background-color: #e2e8f0;
}

.booking-modal-body {
  padding: 24px;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  overflow-y: auto;
}

.booking-modal-description {
  margin-bottom: 0;
}

.booking-modal-footer {
  padding: 16px 24px;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.treatments-grid,
.giftcards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.site-footer {
  margin-top: 40px;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  position: relative;
}

.site-footer-main {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 40px 24px;
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr 1.4fr;
  gap: 24px;
}

.footer-about-logo {
  margin-bottom: 16px;
}

.footer-logo-image {
  height: 64px;
  width: auto;
  display: block;
}

.footer-logo-placeholder {
  height: 64px;
  width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
}

.footer-about-text {
  font-size: 0.875rem;
  color: #475569;
  max-width: 520px;
}

.footer-column {
  font-size: 0.875rem;
}

.footer-heading {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  display: block;
  padding: 2px 0;
  color: #1f2937;
  text-decoration: none;
}

.footer-link:hover {
  color: #1d4ed8;
}

.footer-hours-group {
  margin-bottom: 12px;
}

.footer-hours-label {
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-hours-time {
  color: #374151;
}

.footer-contact {
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact-icon {
  height: 28px;
  width: 28px;
  border-radius: 9999px;
  background-color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

.footer-contact-text {
  color: #374151;
}

.site-footer-bottom {
  background-color: #1d4ed8;
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.75rem;
}

.scroll-top-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  height: 36px;
  width: 36px;
  border-radius: 4px;
  border: none;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.scroll-top-button:hover {
  background-color: #1e40af;
}

@media (max-width: 767.98px) {
  .site-header-inner {
    padding: 16px 16px 12px;
  }

  .site-logo-image {
    height: 56px;
  }

  .site-logo-placeholder {
    height: 56px;
    width: 140px;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 32px 24px;
    margin-top: 0;
    overflow-y: auto;
    gap: 0;
  }

  .header-nav-open {
    display: flex;
  }

  .header-nav-link {
    color: #ffffff;
    font-size: 1.125rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: left;
    font-weight: 500;
  }

  .header-nav-link:last-child {
    border-bottom: none;
  }
  
  .header-nav-link:hover {
    color: #60a5fa;
  }

  .header-nav-link-primary {
    color: #60a5fa;
    font-weight: 600;
  }

  .header-call {
    display: none;
  }

  .header-menu-toggle {
    margin-left: auto;
  }

  .home-hero {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .home-hero-title {
    font-size: 1.75rem;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-wizard {
    padding: 24px 16px 32px;
  }

  .booking-wizard-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-steps {
    flex-direction: row;
    padding: 10px 12px;
    overflow-x: auto;
    justify-content: space-between;
  }

  .booking-step {
    padding: 8px 4px;
    min-width: auto;
    flex: 1;
  }

  .booking-step-text {
    display: none;
  }

  .booking-services-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .booking-date-time {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .treatments-grid,
  .giftcards-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .site-header-inner {
    padding: 20px 20px 14px;
  }

  .header-menu-toggle {
    display: none;
  }

  .header-book-now-mobile {
    display: none;
  }

  .header-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    width: auto;
    margin-top: 0;
    position: static;
    padding: 0;
    border: none;
    box-shadow: none;
    background-color: transparent;
  }

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

  .site-footer-main {
    grid-template-columns: 2fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .header-menu-toggle {
    display: none;
  }

  .header-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    width: auto;
    margin-top: 0;
    position: static;
    padding: 0;
    border: none;
    box-shadow: none;
    background-color: transparent;
  }

  .treatments-grid,
  .giftcards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
