.tsb {
  font-family: var(--tsb-font);
  color: var(--tsb-text);
  --tsb-surface: var(--tsb-card);
  --tsb-surface-muted: rgba(var(--tsb-brand-rgb), 0.08);
  --tsb-surface-subtle: rgba(var(--tsb-brand-rgb), 0.04);
  --tsb-ring-strong: rgba(var(--tsb-brand-rgb), 0.45);
  --tsb-ring-soft: rgba(var(--tsb-brand-rgb), 0.22);
  --tsb-ring-hover: rgba(var(--tsb-brand-rgb), 0.14);
  --tsb-shadow-elevated: 0 20px 40px rgba(var(--tsb-brand-rgb), 0.18);
  --tsb-shadow-focus: 0 0 0 3px rgba(var(--tsb-brand-rgb), 0.15);
  --tsb-button-bg: var(--tsb-brand);
  --tsb-button-bg-hover: var(--tsb-accent);
  --tsb-button-text: var(--tsb-on-brand, #ffffff);
  --tsb-button-text-hover: var(--tsb-on-accent, #ffffff);
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  line-height: 1.6;
}

.tsb.tsb-dark,
.tsb-dark .tsb {
  --tsb-surface-muted: rgba(var(--tsb-brand-rgb), 0.2);
  --tsb-surface-subtle: rgba(var(--tsb-brand-rgb), 0.12);
  --tsb-ring-strong: rgba(var(--tsb-brand-rgb), 0.58);
  --tsb-ring-soft: rgba(var(--tsb-brand-rgb), 0.36);
  --tsb-ring-hover: rgba(var(--tsb-brand-rgb), 0.28);
  --tsb-shadow-elevated: 0 20px 40px rgba(var(--tsb-brand-rgb), 0.32);
  --tsb-shadow-focus: 0 0 0 3px rgba(var(--tsb-brand-rgb), 0.28);

}

body.tsb-booking-page {
  min-height: 100vh;
  background: var(--tsb-bg);
  color: var(--tsb-text);
  transition: background .3s ease, color .3s ease;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

body.tsb-preloading {
  overflow: hidden;
}

.tsb-host {
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: clamp(24px, 7vw, 72px) clamp(14px, 6vw, 44px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
}

.tsb-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding: clamp(32px, 8vw, 48px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 24px);
  background:
    linear-gradient(135deg, rgba(var(--tsb-brand-rgb), 0.16), rgba(var(--tsb-brand-rgb), 0.05)),
    var(--tsb-surface);
  border: 1px solid rgba(var(--tsb-brand-rgb), 0.18);
  border-radius: calc(var(--tsb-radius) * 1.6);
  box-shadow: var(--tsb-shadow-elevated);
  color: var(--tsb-text);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.tsb-preloader::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.18) 100%);
  opacity: 0.55;
  transform: translateX(-100%);
  animation: tsbPreloaderSheen 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.tsb-preloader__glow {
  position: absolute;
  inset: -55% -40% -25% -40%;
  background: radial-gradient(ellipse at top, rgba(var(--tsb-brand-rgb), 0.32), transparent 65%);
  opacity: 0.7;
  animation: tsbPreloaderGlow 6s ease-in-out infinite;
  z-index: -2;
}

.tsb-preloader__spinner {
  display: inline-flex;
  gap: clamp(12px, 4vw, 18px);
}

.tsb-preloader__spinner span {
  width: clamp(12px, 3vw, 16px);
  height: clamp(12px, 3vw, 16px);
  border-radius: 9999px;
  background: var(--tsb-brand);
  box-shadow: 0 12px 26px rgba(var(--tsb-brand-rgb), 0.32);
  opacity: 0.65;
  animation: tsbPreloaderDot 1.6s ease-in-out infinite;
}

.tsb-preloader__spinner span:nth-child(2) { animation-delay: .2s; }
.tsb-preloader__spinner span:nth-child(3) { animation-delay: .4s; }

.tsb-preloader__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
}

.tsb-preloader__subtitle {
  margin: 0;
  max-width: 32ch;
  color: var(--tsb-muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.tsb-preloader__meter {
  position: relative;
  width: min(320px, 100%);
  height: 6px;
  border-radius: 999px;
  background: rgba(var(--tsb-brand-rgb), 0.18);
  overflow: hidden;
}

.tsb-preloader__meter-bar {
  position: absolute;
  inset: 0;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--tsb-brand-rgb), 0), rgba(var(--tsb-brand-rgb), 0.85), rgba(var(--tsb-brand-rgb), 0));
  transform: translateX(-120%);
  animation: tsbPreloaderMeter 2.6s ease-in-out infinite;
}

body.tsb-dark .tsb-preloader {
  background:
    linear-gradient(135deg, rgba(var(--tsb-brand-rgb), 0.34), rgba(var(--tsb-brand-rgb), 0.12)),
    var(--tsb-surface);
  border-color: rgba(var(--tsb-brand-rgb), 0.4);
}

body.tsb-dark .tsb-preloader::after { opacity: 0.38; }
body.tsb-dark .tsb-preloader__subtitle { color: rgba(255, 255, 255, 0.72); }
body.tsb-dark .tsb-preloader__meter { background: rgba(var(--tsb-brand-rgb), 0.32); }

@keyframes tsbPreloaderGlow {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.82; }
}

@keyframes tsbPreloaderSheen {
  0% { transform: translateX(-100%); opacity: 0; }
  30% { opacity: 0.55; }
  60% { opacity: 0.55; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes tsbPreloaderDot {
  0%, 80%, 100% { transform: translateY(0) scale(0.7); opacity: 0.4; }
  40% { transform: translateY(-6px) scale(1); opacity: 1; }
}

@keyframes tsbPreloaderMeter {
  0% { transform: translateX(-120%); opacity: 0; }
  25% { opacity: 1; }
  55% { transform: translateX(110%); opacity: 1; }
  100% { transform: translateX(260%); opacity: 0; }
}

@keyframes tsbSlotsOverlayGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .tsb-preloader::after,
  .tsb-preloader__glow,
  .tsb-preloader__spinner span,
  .tsb-preloader__meter-bar,
  .tsb-slots-overlay-card::before,
  .tsb-slots-overlay__spinner span {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-play-state: paused !important;
  }
}

.tsb-layout {
  width: min(1320px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
  overflow-x: hidden;
  padding-bottom: clamp(48px, 12vw, 64px);
}

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

.tsb-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(8px, 1.3vw, 16px);
  padding: clamp(12px, 1.3vw, 16px) clamp(14px, 2vw, 24px);
  background: var(--tsb-surface);
  border: 1px solid var(--tsb-border);
  border-radius: calc(var(--tsb-radius) * 1.4);
  box-shadow: var(--tsb-shadow-sm);
}

.tsb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--tsb-surface);
  border: 1px solid var(--tsb-border);
  border-radius: calc(var(--tsb-radius) * 1.2);
  box-shadow: var(--tsb-shadow-sm);
  margin-bottom: 8px;
}

.tsb-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tsb-text);
  font-weight: 700;
  text-decoration: none;
}

.tsb-topbar__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--tsb-surface-subtle);
  border: 1px solid var(--tsb-border);
  overflow: hidden;
}

.tsb-topbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tsb-topbar__logo span {
  font-weight: 800;
  color: var(--tsb-brand);
}

.tsb-topbar__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid var(--tsb-border);
  background: var(--tsb-surface-subtle);
  color: var(--tsb-text);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tsb-topbar__home svg {
  width: 18px;
  height: 18px;
}

.tsb-topbar__home:hover,
.tsb-topbar__home:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--tsb-brand-rgb), 0.35);
  box-shadow: var(--tsb-shadow-sm);
}

.tsb-topbar__menu {
  position: relative;
}

.tsb-topbar__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid var(--tsb-border);
  background: var(--tsb-surface-subtle);
  color: var(--tsb-text);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tsb-topbar__menu-toggle svg {
  width: 18px;
  height: 18px;
}

.tsb-topbar__menu-toggle:hover,
.tsb-topbar__menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--tsb-brand-rgb), 0.35);
  box-shadow: var(--tsb-shadow-sm);
}

.tsb-topbar__menu-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  background: var(--tsb-surface);
  border: 1px solid var(--tsb-border);
  border-radius: 10px;
  box-shadow: var(--tsb-shadow-elevated);
  display: none;
  z-index: 15;
}

.tsb-topbar__menu.is-open .tsb-topbar__menu-list {
  display: block;
}

.tsb-topbar__menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--tsb-text);
  text-decoration: none;
  font-weight: 600;
}

.tsb-topbar__menu-item:hover,
.tsb-topbar__menu-item:focus-visible {
  background: var(--tsb-surface-subtle);
}

.tsb-hero__branding {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 14px);
  flex: 1 1 clamp(400px, 58%, 720px);
  min-width: 260px;
  flex-wrap: wrap;
  row-gap: clamp(8px, 1.4vw, 12px);
}

.tsb-hero__content {
  display: flex;
  flex: 1 1 260px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 14px);
  min-width: 0;
}

.tsb-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--tsb-secondary);
  border-radius: calc(var(--tsb-radius) * 1.1);
  border: 1px solid var(--tsb-border);
  padding: clamp(14px, 2.5vw, 20px);
  box-shadow: var(--tsb-shadow-sm);
}

.tsb-contact--aside {
  margin: 0 0 0 auto;
  flex: 0 1 clamp(260px, 28%, 360px);
  max-width: 100%;
  align-self: center;
  justify-content: center;
}

.tsb-contact--mobile {
  margin-top: clamp(16px, 5vw, 24px);
  width: 100%;
}

.tsb-contact__heading {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.tsb-contact__description {
  margin: 0;
  color: var(--tsb-muted);
  font-size: 0.95rem;
}

.tsb-contact__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
}

.tsb-contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 12px;
  border-radius: calc(var(--tsb-radius) * 0.9);
  background: rgba(var(--tsb-brand-rgb), 0.06);
  border: 1px solid transparent;
  color: var(--tsb-text);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
  height: 100%;
}

.tsb-contact__item:only-child,
.tsb-contact__item:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
}

.tsb-contact__item:hover {
  background: rgba(var(--tsb-brand-rgb), 0.12);
  border-color: rgba(var(--tsb-brand-rgb), 0.2);
  transform: translateY(-1px);
}

.tsb-contact__item:focus-visible {
  outline: 2px solid var(--tsb-ring-soft);
  outline-offset: 2px;
}

.tsb-contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tsb-secondary);
  box-shadow: var(--tsb-shadow-sm);
  color: var(--tsb-brand);
}

.tsb-contact__icon svg {
  width: 22px;
  height: 22px;
}

.tsb-contact__label {
  font-weight: 600;
}

.tsb-contact__meta {
  font-size: 0.85rem;
  color: var(--tsb-muted);
}

.tsb-contact__item[data-contact-type="whatsapp"] .tsb-contact__icon {
  color: #25d366;
}

.tsb-contact__item[data-contact-type="facebook"] .tsb-contact__icon {
  color: #1877f2;
}

.tsb-contact__item[data-contact-type="instagram"] .tsb-contact__icon {
  color: #e1306c;
}

.tsb-contact__item[data-contact-type="twitter"] .tsb-contact__icon,
.tsb-contact__item[data-contact-type="x"] .tsb-contact__icon {
  color: #1d9bf0;
}

.tsb-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  flex: 1 1 260px;
  max-width: min(100%, 640px);
  text-align: left;
}

.tsb-hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

.tsb-hero__subtitle {
  margin: 0;
  color: var(--tsb-muted);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.tsb-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  row-gap: 8px;
  margin-left: 0;
  flex: 0 0 auto;
  flex-wrap: wrap;
  width: 100%;
}

.tsb-hero__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3vw, 46px);
  height: clamp(40px, 3vw, 46px);
  border-radius: 9999px;
  border: 1px solid var(--tsb-border);
  background: var(--tsb-surface-subtle);
  color: var(--tsb-muted);
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tsb-hero__action:hover,
.tsb-hero__action:focus-visible {
  color: var(--tsb-brand);
  border-color: rgba(var(--tsb-brand-rgb), 0.4);
  background: var(--tsb-surface);
  box-shadow: var(--tsb-shadow-sm);
  transform: translateY(-1px);
}

.tsb-hero__action:focus-visible {
  outline: 2px solid rgba(var(--tsb-brand-rgb), 0.35);
  outline-offset: 2px;
}

.tsb-hero__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tsb-hero__action-icon svg {
  width: 22px;
  height: 22px;
}

.tsb-hero__action--toggle {
  width: auto;
  padding: 0 18px;
  gap: 10px;
  font-weight: 600;
}

.tsb-hero__action--toggle .tsb-hero__action-label {
  display: inline-block;
  line-height: 1.1;
}

.tsb-hero__action--toggle .tsb-hero__action-icon--moon {
  display: none;
}

.tsb-hero__action--toggle.is-dark .tsb-hero__action-icon--moon {
  display: inline-flex;
}

.tsb-hero__action--toggle.is-dark .tsb-hero__action-icon--sun {
  display: none;
}

.tsb-hero__action--toggle.is-dark {
  background: rgba(var(--tsb-brand-rgb), 0.16);
  color: var(--tsb-on-brand);
  border-color: rgba(var(--tsb-brand-rgb), 0.4);
}

.tsb-login-nudge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  margin: 4px 0;
  border: 1px dashed var(--tsb-border);
  background: var(--tsb-surface-subtle);
  border-radius: calc(var(--tsb-radius) * 1.1);
  color: var(--tsb-muted);
  font-size: 0.95rem;
}

.tsb-login-nudge__link {
  color: var(--tsb-brand);
  font-weight: 700;
  text-decoration: none;
}

.tsb-login-nudge__link--secondary {
  font-weight: 600;
}

.tsb-login-nudge__label {
  font-weight: 600;
  color: var(--tsb-text);
}

@media (max-width: 900px) {
  .tsb-hero {
    display: none;
  }

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

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

  .tsb-hero__content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: clamp(8px, 3vw, 12px);
  }

  .tsb-hero__copy {
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .tsb-hero__actions {
    margin-left: 0;
    margin-top: 4px;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .tsb-contact--aside {
    margin: clamp(16px, 4vw, 24px) 0 0 0;
    flex-basis: 100%;
    max-width: 100%;
    align-self: stretch;
  }
}

.tsb-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--tsb-radius) * 0.9);
  background: var(--tsb-surface-subtle);
  padding: clamp(6px, 0.9vw, 12px);
  min-height: clamp(56px, 5vw, 76px);
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.tsb-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.tsb-logo--fallback {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--tsb-brand);
}

.tsb-logo--fallback span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 5vw, 80px);
  height: clamp(64px, 5vw, 80px);
  border-radius: 9999px;
  background: rgba(var(--tsb-brand-rgb), 0.14);
}

.tsb-flow {
  background: var(--tsb-surface);
  border: 1px solid var(--tsb-border);
  border-radius: calc(var(--tsb-radius) * 1.6);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--tsb-shadow-elevated);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.tsb-flow__progress {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tsb-flow__progress .tsb-steps {
  width: 100%;
}

.tsb-flow__stage {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.tsb-flow__main {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.tsb-flow__summary {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 960px) {
  .tsb-layout {
    gap: clamp(20px, 6vw, 32px);
  }
  .tsb-host {
    padding: clamp(18px, 7vw, 42px) clamp(14px, 5vw, 26px);
  }
  .tsb-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(12px, 4vw, 18px);
    gap: clamp(8px, 3.5vw, 14px);
  }
  .tsb-hero__branding {
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 3.5vw, 14px);
    width: 100%;
  }
  .tsb-logo {
    min-height: clamp(52px, 18vw, 68px);
  }
  .tsb-contact--aside {
    margin: clamp(16px, 5vw, 24px) 0 0 0;
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .tsb-host {
    padding: clamp(12px, 5vw, 24px) clamp(12px, 5vw, 20px);
  }
  .tsb-layout {
    gap: clamp(14px, 6vw, 24px);
  }
  .tsb-hero {
    padding: clamp(10px, 3.5vw, 16px);
  }
  .tsb-card {
    padding: clamp(16px, 4.5vw, 22px);
  }
}

@media (min-width: 960px) {
  .tsb-flow__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: start;
    gap: clamp(24px, 3vw, 36px);
  }
  .tsb-flow__summary {
    position: sticky;
    top: clamp(16px, 5vw, 64px);
  }
}

.tsb a {
  color: var(--tsb-brand);
  text-decoration: none;
}

.tsb a:hover {
  color: var(--tsb-accent);
}

.tsb-card {
  background: var(--tsb-surface);
  border: 1px solid var(--tsb-border);
  border-radius: calc(var(--tsb-radius) * 1.1);
  padding: clamp(20px, 3vw, 32px);
  margin: 0;
  box-shadow: var(--tsb-shadow-sm);
}

.tsb-card--flow {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
  border-radius: calc(var(--tsb-radius) * 1.25);
}

.tsb-card--service {
  gap: clamp(18px, 2.6vw, 30px);
}

.tsb-card--service .tsb-pills {
  margin: 0;
  padding-top: 4px;
  padding-bottom: clamp(12px, 1.6vw, 16px);
  border-bottom: 1px solid var(--tsb-border);
}

.tsb-card--summary {
  padding: clamp(18px, 2.4vw, 24px);
  gap: clamp(14px, 2vw, 20px);
  display: flex;
  flex-direction: column;
}

.tsb-summary__title {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.tsb-summary__service {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(12px, 1.8vw, 16px);
  border-radius: calc(var(--tsb-radius) * 1.1);
  background: var(--tsb-surface-subtle);
  border: 1px solid var(--tsb-border);
}

.tsb-summary__service-name {
  font-weight: 600;
  font-size: 1rem;
}

.tsb-summary__meta {
  color: var(--tsb-muted);
  font-size: 0.9rem;
}

.tsb-summary__price {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--tsb-brand);
}

.tsb-summary__price span {
  color: inherit;
}

.tsb-summary__list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.tsb-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tsb-summary__row dt {
  margin: 0;
  color: var(--tsb-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.tsb-summary__row dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.tsb-summary__placeholder,
.tsb-summary__note {
  margin: 0;
  color: var(--tsb-muted);
  font-size: 0.9rem;
}

.tsb-summary__note {
  font-style: italic;
}

.tsb-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--tsb-border);
  font-size: 0.95rem;
  font-weight: 600;
}

.tsb-summary__total strong {
  color: var(--tsb-brand);
}

.tsb-card--flow h4 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

.tsb-title {
  font-weight: 600;
}

.tsb-sub {
  color: var(--tsb-muted);
  font-size: 12px;
}

.tsb-field {
  margin: 16px 0;
}

.tsb-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.tsb-field input,
.tsb-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--tsb-border);
  border-radius: calc(var(--tsb-radius) * 0.9);
  background: var(--tsb-secondary);
  color: var(--tsb-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.tsb-field input:focus,
.tsb-field select:focus {
  outline: none;
  border-color: var(--tsb-ring-soft);
  box-shadow: var(--tsb-shadow-focus);
}

.tsb-inline {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tsb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tsb-grid-2 > .tsb-field {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  height: 100%;
}

.tsb-grid-2 > .tsb-field > label {
  margin-bottom: 0;
}

#tsb-slots {
  flex: 1;
  display: flex;
  width: 100%;
}

.tsb-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.tsb-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

@media (min-width: 1400px) {
  .tsb-service-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

#tsb-services + .tsb-help {
  display: block;
  margin-top: clamp(16px, 2.5vw, 24px);
}

.tsb-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.tsb-saved-vehicles {
  gap: 14px;
}

.tsb-saved-vehicles__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.tsb-saved-vehicles__actions .tsb-help {
  margin: 0;
  font-size: 13px;
}

.tsb-saved-vehicles__add {
  min-width: 0;
  padding-inline: 18px;
}

.tsb-inline-staff {
  margin-top: 20px;
}

.tsb-inline-staff__prompt {
  margin-top: 16px;
}

.tsb-inline-staff .tsb-field {
  margin-bottom: 0;
}

.tsb-vehicle-inline {
  margin: 12px 0 0;
}

.tsb-vehicle-inline > label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.tsb-vehicle-inline .tsb-help {
  margin-top: 0;
}

.tsb-vehicle-inline__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.tsb-card--compact {
  padding: 16px;
}

.tsb-card--compact .tsb-img {
  height: 64px;
}

@media (max-width: 640px) {
  .tsb-saved-vehicles__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tsb-saved-vehicles__add {
    width: 100%;
  }

  .tsb-vehicle-inline__grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .tsb-grid-2,
  .tsb-grid-3,
  .tsb-grid-4 {
    grid-template-columns: 1fr;
  }

  .tsb-grid-2 > .tsb-field {
    margin-top: 12px;
  }
}

.tsb-help {
  color: var(--tsb-muted);
  font-size: 12px;
}

.tsb-help-error {
  color: var(--tsb-error);
}

.tsb-help-loading {
  color: var(--tsb-muted);
}

.tsb-summary {
  background: var(--tsb-surface-subtle);
  border: 1px dashed var(--tsb-ring-hover);

  border-radius: var(--tsb-radius);
  padding: 10px;
  margin-top: 10px;
}

.tsb-err {
  color: var(--tsb-error);
  font-size: 12px;
  margin: 6px 0;
}

.tsb-fulfil-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
}

.tsb-fulfil-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 10px 20px;
  min-height: 42px;
  text-align: center;
  flex: 1 1 180px;
}

.tsb-pill {
  border: 1px solid var(--tsb-ring-hover);

  background: var(--tsb-secondary);
  border-radius: 9999px;
  padding: 8px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: inherit;
  font-weight: 500;
  color: inherit;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tsb-pill:focus-visible {
  outline: none;
  box-shadow: var(--tsb-shadow-focus);
  border-color: var(--tsb-ring-soft);
}

.tsb-pill[disabled],
.tsb-pill-disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.tsb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
  align-items: center;
}

.tsb-pills--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  margin-bottom: 14px;
  scrollbar-width: thin;
}

.tsb-pills--scroll::-webkit-scrollbar {
  height: 6px;
}

.tsb-pills--scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.14);
  border-radius: 999px;
}

.tsb-pills--dropdown {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.tsb-pills__select {
  width: 100%;
  max-width: 420px;
  padding: 10px 12px;
  border-radius: 9999px;
  border: 1px solid var(--tsb-ring-hover);
  background: var(--tsb-surface-subtle);
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.tsb-pills__select:focus {
  outline: none;
  border-color: var(--tsb-ring-soft);
  box-shadow: var(--tsb-shadow-focus);
}

.tsb-pill-active {
  background: var(--tsb-brand);
  color: var(--tsb-secondary);
  border-color: transparent;
  box-shadow: var(--tsb-shadow-elevated);

}

.tsb-fulfil-toggle .tsb-pill {
  flex: 1 1 200px;
}


.tsb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.tsb-card--flow .tsb-nav {
  margin-top: auto;
  padding-top: 8px;
}

.tsb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: calc(var(--tsb-radius) * 0.9);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: var(--tsb-button-bg, var(--tsb-brand));
  color: var(--tsb-button-text, var(--tsb-on-brand, var(--tsb-secondary)));
  box-shadow: var(--tsb-shadow-hover);
  transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
}

.tsb-btn:hover {
  background: var(--tsb-button-bg-hover, var(--tsb-accent));
  color: var(--tsb-button-text-hover, var(--tsb-on-accent, var(--tsb-secondary)));
  box-shadow: var(--tsb-shadow-elevated);
  transform: translateY(-1px);
}

.tsb-btn:focus-visible {
  outline: 2px solid var(--tsb-ring-soft);
  outline-offset: 2px;
}

.tsb-secondary {
  background: var(--tsb-secondary);
  color: var(--tsb-text);
  border: 1px solid var(--tsb-border);
  box-shadow: none;
}

.tsb-secondary:hover {
  border-color: var(--tsb-ring-hover);
  background: var(--tsb-surface-subtle);
  color: var(--tsb-brand);
}

.tsb-steps {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(6px, 1.5vw, 12px);
  margin: 0;
  padding: clamp(6px, 1.2vw, 10px) clamp(8px, 1.8vw, 16px);
  list-style: none;
  background: var(--tsb-secondary);
  border-radius: 9999px;
  box-shadow: var(--tsb-shadow-sm);
  width: 100%;
}

.tsb-step {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--tsb-muted);
  padding: 10px 16px;
  border-radius: 9999px;
  transition: background .2s ease, color .2s ease;
  min-width: 0;
  text-align: left;
}

.tsb-step span[data-step] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tsb-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 2px solid var(--tsb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tsb-secondary);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
  aspect-ratio: 1 / 1;
}

.tsb-step-active {
  color: var(--tsb-text);
  font-weight: 600;
  background: rgba(var(--tsb-brand-rgb), 0.14);
}

.tsb-step-prev {
  color: var(--tsb-muted);
}

.tsb-step-complete {
  color: var(--tsb-muted);
}

.tsb-step-active .tsb-step-dot {
  border-color: var(--tsb-brand);
  background: var(--tsb-brand);
  color: var(--tsb-secondary);
}

@media (max-width: 640px) {
  .tsb-hero {
    padding: 10px 12px;
    gap: 10px;
    align-items: flex-start;
  }
  .tsb-hero__branding {
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .tsb-hero__content {
    align-items: center;
    justify-content: center;
    row-gap: 6px;
  }
  .tsb-hero__copy {
    align-items: center;
    text-align: center;
  }
  .tsb-hero__actions {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  .tsb-logo {
    margin-left: 0;
    margin-right: 0;
    padding: 6px 8px;
    min-height: 48px;
  }
  .tsb-steps {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: transparent;
    box-shadow: none;
    gap: 8px;
    border-radius: 0;
    width: 100%;
  }
  .tsb-step {
    justify-content: flex-start;
    flex: none;
    width: 100%;
    align-self: stretch;
    padding: 12px 18px;
  }
  .tsb-step:not(.tsb-step-active):not(.tsb-step-prev) {
    display: none;
  }
  .tsb-step-prev {
    order: 1;
    opacity: 0.75;
  }
  .tsb-step-active {
    order: 2;
    box-shadow: var(--tsb-shadow-sm);
  }
  .tsb-step-dot {
    width: 26px;
    height: 26px;
  }
  .tsb-contact {
    padding: clamp(16px, 6vw, 22px);
  }
  .tsb-contact__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .tsb-contact__item {
    padding: 14px;
  }
}

@media (max-width: 640px) {
  .tsb-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .tsb-nav__spacer {
    display: none;
  }
  .tsb-nav .tsb-btn,
  .tsb-nav .tsb-secondary {
    width: 100%;
  }
  .tsb-fulfil-toggle {
    width: 100%;
  }
  .tsb-fulfil-toggle .tsb-pill {
    flex-basis: 100%;
  }
}

.tsb-grid-staff {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.tsb-staff-card,
.tsb-card-option {
  border: 1px solid var(--tsb-border);
  border-radius: calc(var(--tsb-radius) * 0.9);
  padding: clamp(16px, 2vw, 20px);
  background: var(--tsb-surface);

  cursor: pointer;
  transition: box-shadow .2s ease, transform .15s ease, border-color .2s ease, background .2s ease;
}

.tsb-card-option {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.tsb-card-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.tsb-card-disabled .tsb-title,
.tsb-card-disabled .tsb-sub,
.tsb-card-disabled .tsb-desc {
  color: var(--tsb-muted);
}

.tsb-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tsb-card-meta {
  font-size: 13px;
  color: var(--tsb-muted);
  line-height: 1.45;
}

.tsb-card-price-amount {
  font-weight: 600;
  color: var(--tsb-brand);
}

.tsb-desc {
  font-size: 13px;
  color: var(--tsb-muted);
  line-height: 1.5;
}

.tsb-staff-card:hover,
.tsb-card-option:hover {
  box-shadow: var(--tsb-shadow-hover);
  transform: translateY(-1px);
}

.tsb-card-active {
  outline: 2px solid var(--tsb-ring-strong);
  border-color: var(--tsb-ring-soft);
  background: var(--tsb-surface-muted);
  box-shadow: var(--tsb-shadow-focus);

  transform: none;
}

.tsb-staff-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--tsb-bg);
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--tsb-radius) * 0.9);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--tsb-muted);
}

.tsb-staff-any {
  font-size: 20px;
}

.tsb-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--tsb-bg);
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--tsb-radius) * 0.9);
  margin: 0;
}

.tsb-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--tsb-brand-rgb), 0.1), rgba(var(--tsb-brand-rgb), 0.04));
  color: rgba(var(--tsb-brand-rgb), 0.8);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.tsb-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tsb-cal-controls {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.tsb-cal-title {
  font-weight: 600;
}

.tsb-cal {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .25rem;
}

.tsb-dow {
  font-size: .85rem;
  color: var(--tsb-muted);
  text-align: center;
  padding: .25rem 0;
}

.tsb-day,
.tsb-day-empty {
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tsb-border);
  border-radius: var(--tsb-radius);
  background: var(--tsb-secondary);
}

.tsb-day {
  cursor: pointer;
  position: relative;
}

.tsb-day-available:not(.tsb-day-disabled)::after {
  content: '';
  position: absolute;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--tsb-ring-soft);
  bottom: .2rem;
  left: 50%;
  transform: translateX(-50%);
}

.tsb-day-active.tsb-day-available::after {
  background: var(--tsb-ring-strong);
}

.tsb-day-disabled,
.tsb-cal-disabled .tsb-day {
  cursor: not-allowed;
  opacity: .55;
}

.tsb-day-disabled:hover,
.tsb-cal-disabled .tsb-day:hover {
  border-color: var(--tsb-border);
}

.tsb-day:hover {
  border-color: var(--tsb-ring-hover);
}

.tsb-day-active {
  border-color: var(--tsb-ring-strong);
  box-shadow: var(--tsb-shadow-focus);
  background: var(--tsb-surface-muted);
  color: var(--tsb-text);

}

.tsb-day-empty {
  background: var(--tsb-bg);
  color: var(--tsb-muted);
}

.tsb-cal-nav {
  border: 1px solid var(--tsb-border);
  background: var(--tsb-secondary);
  border-radius: var(--tsb-radius);
  padding: .25rem .5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  height: 2.5rem;
}

.tsb-cal-nav[disabled] {
  cursor: not-allowed;
  opacity: .55;
}

.tsb-cal-nav--select {
  padding-right: .9rem;
  padding-left: .65rem;
  min-width: 9.5rem;
}


.tsb-slots-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  flex: 1;
  height: 100%;
  min-height: clamp(260px, 32vw, 320px);
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: calc(var(--tsb-radius) * 1.2);
  background: var(--tsb-surface);
  border: 1px solid rgba(var(--tsb-brand-rgb), 0.16);
  box-shadow: var(--tsb-shadow-sm);
}

.tsb-slots {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 0;
  align-content: flex-start;
  justify-content: flex-start;
}

.tsb-slots-wrapper--loading .tsb-slots {
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
  user-select: none;
}

.tsb-slots-overlay {
  position: absolute;
  inset: clamp(8px, 1.8vw, 14px);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(12px, 2vw, 20px);
  border-radius: calc(var(--tsb-radius) * 1.1);
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(var(--tsb-brand-rgb), 0.18);
  box-shadow: var(--tsb-shadow-elevated);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.tsb-slots-wrapper--has-message .tsb-slots-overlay {
  display: flex;
}

.tsb-slots-overlay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  width: min(100%, 340px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: calc(var(--tsb-radius) * 1.4);
  background:
    linear-gradient(135deg, rgba(var(--tsb-brand-rgb), 0.18), rgba(var(--tsb-brand-rgb), 0.06)),
    var(--tsb-surface);
  border: 1px solid rgba(var(--tsb-brand-rgb), 0.26);
  box-shadow: var(--tsb-shadow-elevated);
  color: var(--tsb-text);
  overflow: hidden;
}

.tsb-slots-overlay-card::before {
  content: '';
  position: absolute;
  inset: -60% -40% -25% -40%;
  background: radial-gradient(ellipse at top, rgba(var(--tsb-brand-rgb), 0.28), transparent 68%);
  opacity: .65;
  animation: tsbSlotsOverlayGlow 6s ease-in-out infinite;
  z-index: 0;
}

.tsb-slots-overlay-card > * {
  position: relative;
  z-index: 1;
}

.tsb-slots-overlay-card--loading {
  border-color: rgba(var(--tsb-brand-rgb), 0.38);
  box-shadow: 0 18px 36px rgba(var(--tsb-brand-rgb), 0.24);
}

.tsb-slots-overlay-card--info {
  border-color: rgba(var(--tsb-brand-rgb), 0.26);
  box-shadow: 0 18px 32px rgba(var(--tsb-brand-rgb), 0.18);
}

.tsb-slots-overlay-card--error {
  background:
    linear-gradient(135deg, rgba(220, 38, 38, 0.22), rgba(220, 38, 38, 0.08)),
    var(--tsb-surface);
  border-color: var(--tsb-error);
  box-shadow: 0 18px 32px rgba(220, 38, 38, 0.25);
}

.tsb-dark .tsb-slots-overlay-card {
  background:
    linear-gradient(135deg, rgba(var(--tsb-brand-rgb), 0.32), rgba(var(--tsb-brand-rgb), 0.14)),
    rgba(15, 23, 42, 0.9);
  border-color: rgba(var(--tsb-brand-rgb), 0.42);
  box-shadow: var(--tsb-shadow-elevated);
}

.tsb-slots-overlay--loading {
  background: rgba(15, 23, 42, 0.12);
}

.tsb-slots-overlay--error {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.24);
}

.tsb-slots-overlay--info {
  background: rgba(var(--tsb-brand-rgb), 0.08);
}

.tsb-dark .tsb-slots-wrapper {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: var(--tsb-shadow-hover);
}

.tsb-dark .tsb-slots-overlay {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(var(--tsb-brand-rgb), 0.32);
}

.tsb-dark .tsb-slots-overlay--loading {
  background: rgba(15, 23, 42, 0.55);
}

.tsb-dark .tsb-slots-overlay--info {
  background: rgba(var(--tsb-brand-rgb), 0.22);
}

.tsb-dark .tsb-slots-overlay--error {
  background: rgba(220, 38, 38, 0.24);
  border-color: rgba(248, 113, 113, 0.45);
}

.tsb-slots-overlay__message {
  margin: 0;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 600;
  color: var(--tsb-text);
  line-height: 1.45;
}

.tsb-slots-overlay-card--error .tsb-slots-overlay__message {
  color: var(--tsb-error);
}

.tsb-slots-overlay__spinner {
  display: inline-flex;
  gap: clamp(12px, 2.6vw, 18px);
}

.tsb-slots-overlay__spinner span {
  width: clamp(12px, 2.6vw, 16px);
  height: clamp(12px, 2.6vw, 16px);
  border-radius: 9999px;
  background: var(--tsb-brand);
  box-shadow: 0 12px 26px rgba(var(--tsb-brand-rgb), 0.3);
  opacity: .7;
  animation: tsbPreloaderDot 1.6s ease-in-out infinite;
}

.tsb-slots-overlay__spinner span:nth-child(2) { animation-delay: .2s; }
.tsb-slots-overlay__spinner span:nth-child(3) { animation-delay: .4s; }

.tsb-slot-placeholder {
  border: 1px solid var(--tsb-border);
  background: var(--tsb-surface-muted);
  border-radius: 9999px;
  min-width: 90px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .65;
  pointer-events: none;
}

.tsb-slot-placeholder::after {
  content: '\00a0';
}

.tsb-slot {
  border: 1px solid var(--tsb-border);
  background: var(--tsb-secondary);
  border-radius: 9999px;
  padding: .5rem .75rem;
  font-size: .95rem;
  cursor: pointer;
}

.tsb-slot:hover {
  border-color: var(--tsb-ring-hover);
  background: var(--tsb-surface-subtle);
  color: var(--tsb-brand);
}

.tsb-slot.tsb-slot-active {
  border-color: var(--tsb-ring-strong);
  box-shadow: var(--tsb-shadow-focus);
  background: var(--tsb-brand);
  color: var(--tsb-secondary);

}
