/* ============================================================
   NEVANU — Booking Page Styles
   Premium Coiffeur Luzern | Single-page accordion booking form
   Mobile-first (85% mobile traffic)
   ============================================================ */

/* SCI Floating Discount Badge */
.sci-float {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: var(--z-bar);
  background: var(--bg-primary);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  width: 160px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  animation: sci-float-in .4s ease;
  font-family: var(--font-body);
}
.sci-float__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.sci-float__sparkle { font-size: 14px; }
.sci-float__label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  font-weight: 600;
}
.sci-float__code {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.sci-float__info {
  font-size: .7rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sci-float__actions {
  display: flex;
  gap: 6px;
}
.sci-float__btn {
  border: none;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sci-float__btn--apply {
  flex: 1;
  padding: 7px 10px;
  background: var(--accent);
  color: var(--text-inverse);
}
.sci-float__btn--apply:hover {
  background: var(--accent-dark);
}
.sci-float__btn--copy {
  padding: 7px 8px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}
.sci-float__btn--copy:hover {
  background: var(--border);
}
/* Applied state */
.sci-float--applied {
  border-color: var(--border-success);
  background: var(--bg-success);
}
.sci-float--applied .sci-float__label { color: var(--color-success); }
.sci-float--applied .sci-float__code { color: var(--color-success); }

@keyframes sci-float-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Mobile: bottom position adjusted for cart */
@media (max-width: 767px) {
  .sci-float {
    top: 60px;
    right: 8px;
    width: 140px;
    padding: 10px 12px;
  }
}

/* Uses Design System tokens defined in :root (styles.css):
   --accent, --accent-light, --accent-dark,
   --bg-primary, --bg-secondary, --border,
   --text-muted, --text-secondary, --text-primary, --gold,
   --font-display, --font-body,
   --radius-md, --radius-sm,
   --ease-out-expo, --nav-height
*/

/* ─────────────────────────────────────────────────────────────
   1. PAGE LAYOUT
   ───────────────────────────────────────────────────────────── */

.booking-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 32px) 16px 80px;
  background: var(--bg-secondary);
}

.booking-container {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   2. BOOKING HEADER
   ───────────────────────────────────────────────────────────── */

.booking-header {
  text-align: center;
  margin-bottom: 24px;
}

/* Trust Bar */
.bk-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bk-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.bk-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .bk-trust-bar {
    gap: 10px;
  }
  .bk-trust-item {
    font-size: 11px;
  }
}

.booking-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.booking-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.booking-header p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.5;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   3. ACCORDION SECTIONS (bk-section)
   ───────────────────────────────────────────────────────────── */

.bk-section {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo, ease);
  display: none; /* Wizard: hidden by default */
  scroll-margin-top: calc(var(--nav-height, 72px) + 16px);
}

.bk-section.active {
  display: block;
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(26, 24, 22, 0.04);
}

.bk-section.locked {
  display: none;
}

.bk-section.completed {
  display: none;
}

/* Individual sections show as standalone cards */

/* ─── Step Navigator ─── */
.bk-stepper {
  display: none; /* Hidden — user navigates step-by-step via buttons */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  padding: 12px 0;
}

.bk-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: default;
  padding: 4px 8px;
  opacity: 1;
  transition: opacity 0.3s;
}

.bk-stepper__step.completed {
  cursor: pointer;
}

.bk-stepper__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--bg-primary);
  transition: all 0.3s;
}

/* Active step: filled pink */
.bk-stepper__step.active .bk-stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-inverse);
}

/* Completed step: pink with checkmark (number replaced via JS) */
.bk-stepper__step.completed .bk-stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-inverse);
  font-size: 14px;
}

/* Future step: pink outline, lighter */
.bk-stepper__step:not(.active):not(.completed) .bk-stepper__num {
  opacity: 0.4;
}

.bk-stepper__label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}

.bk-stepper__step.active .bk-stepper__label {
  color: var(--text-secondary);
  font-weight: 600;
}

.bk-stepper__step.completed .bk-stepper__label {
  color: var(--accent);
  font-weight: 500;
}

.bk-stepper__step:not(.active):not(.completed) .bk-stepper__label {
  opacity: 0.5;
}

.bk-stepper__line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
  margin-bottom: 18px;
  max-width: 40px;
  transition: background 0.3s;
}

/* Completed line = pink */
.bk-stepper__step.completed + .bk-stepper__line {
  background: var(--accent);
}

/* Line before active step = pink */
.bk-stepper__line:has(+ .bk-stepper__step.active) {
  background: var(--accent);
}

/* Section Header — flex row with badge + title, acts as accordion toggle */
.bk-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.bk-section__header:hover {
  background: transparent;
}

/* Section Body — collapsible content area */
.bk-section__body {
  padding: 0 24px 24px;
  max-height: 5000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo),
              opacity 0.35s ease,
              padding 0.35s ease;
}

/* Collapsed state: set via JS by removing .active or toggling a class */
.bk-section:not(.active) .bk-section__body {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   4. BADGE (numbered circle)
   ───────────────────────────────────────────────────────────── */

.bk-badge {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Completed badge — dark gray with checkmark (or just dark styling) */
.bk-section.completed .bk-badge {
  background: var(--text-secondary);
  color: var(--bg-primary);
}

/* ─────────────────────────────────────────────────────────────
   5. SECTION TITLE & HELPERS
   ───────────────────────────────────────────────────────────── */

.bk-section__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.bk-required {
  color: var(--accent);
  font-weight: 500;
}

.bk-optional {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.bk-hint {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────
   6. CATEGORY CARDS (Section 1)
   ───────────────────────────────────────────────────────────── */

.bk-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bk-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s var(--ease-out-expo, ease),
              background 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.15s ease;
}

.bk-cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 113, 130, 0.1);
}

.bk-cat-card:active {
  transform: scale(0.98);
}

.bk-cat-card.selected {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.04);
  box-shadow: 0 0 0 1px var(--accent);
}

.bk-cat-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.bk-cat-card__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────
   7. SERVICE LIST (Section 2)
   ───────────────────────────────────────────────────────────── */

.bk-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Service category groupings */
.service-category {
  margin-bottom: 20px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* ───── Service Accordion Groups ───── */
.svc-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg-primary);
  transition: all 0.3s var(--ease-out-expo, ease);
}

.svc-accordion:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 16px rgba(242, 113, 130, 0.06);
}

.svc-accordion.open {
  border-color: var(--accent);
}

.svc-accordion__header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: left;
  transition: background 0.15s ease;
}

.svc-accordion__header:hover {
  background: transparent;
}

.svc-accordion__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md, 16px);
  background: var(--border);
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.svc-accordion.open .svc-accordion__icon {
  background: rgba(242, 113, 130, 0.1);
  color: var(--accent);
}

.svc-accordion__icon svg {
  display: block;
}

.svc-accordion__label {
  flex: 1;
  min-width: 0;
}

.svc-accordion__count {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  background: var(--border);
  padding: 2px 8px;
  border-radius: 99px;
}

.svc-accordion__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.svc-accordion.open .svc-accordion__chevron {
  transform: rotate(180deg);
}

.svc-accordion__body {
  display: none;
  padding: 0 14px 14px;
}

.svc-accordion.open .svc-accordion__body {
  display: block;
}

.svc-subgroup {
  margin-bottom: 10px;
}

.svc-subgroup__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 8px 0 6px;
  padding: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ───── Service Card — MOST BOOKED badge ───── */
.bk-section .service-card--most-booked {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.03);
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: -8px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(242, 113, 130, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full, 999px);
  z-index: 2;
}
.service-card__badge .material-symbols-outlined {
  font-size: 12px;
}

.service-card__badge--star {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(242, 113, 130, 0.3);
}

.service-card__badge--phone {
  color: var(--color-gold, #c9a96e);
  background: transparent;
  border: 1px solid rgba(201, 169, 110, .3);
}

/* Phone-only service card — not selectable */
.bk-section .service-card--phone-only {
  cursor: default;
  opacity: 0.85;
}

.bk-section .service-card--phone-only:hover {
  border-color: var(--border);
  box-shadow: none;
}

.service-card__phone-note {
  color: var(--color-warning) !important;
  font-weight: 500 !important;
  font-size: 0.75rem !important;
}

/* ───── Service Card — Actions (price + info btn) ───── */
.service-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.service-card__info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(242, 113, 130, 0.08);
  border: 1px solid rgba(242, 113, 130, 0.2);
  border-radius: 50%;
  cursor: pointer;
  color: var(--accent);
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.service-card__info-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.service-card__info-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Info description panel */
.service-card__desc {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  background: var(--bg-secondary);
  border-radius: var(--radius-md, 16px);
  margin-top: 10px;
  animation: descSlideIn 0.2s ease-out;
}

@keyframes descSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── Continue Button ───── */
.bk-continue-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  margin-top: 16px;
  background: var(--accent);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-full, 999px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
  letter-spacing: 0.01em;
}

.bk-continue-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 113, 130, 0.3);
}

.bk-continue-btn:active {
  transform: translateY(0);
}

/* Button row — back link above continue button */
.bk-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.bk-btn-row .bk-btn-back {
  align-self: flex-start;
}
.bk-btn-row .bk-continue-btn {
  flex: 1;
  margin-top: 0;
}
/* Outline back button (used next to continue) */
.bk-btn-outline {
  padding: 14px 24px;
  background: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.bk-btn-outline:hover {
  background: rgba(242,113,130,.08);
}
[data-theme="dark"] .bk-btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}
[data-theme="dark"] .bk-btn-outline:hover {
  background: rgba(242,113,130,.12);
}
/* Back button — text link style (no border, no pill) */
.bk-btn-back {
  display: block;
  text-align: left;
  padding: 0;
  background: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.bk-btn-back::before {
  content: '\2190 ';
}
.bk-btn-back:hover {
  opacity: 0.7;
}

.bk-continue-btn--inline {
  width: auto;
  padding: 12px 24px;
  margin-top: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   AUTH SECTION
   ───────────────────────────────────────────────────────────── */

.auth-input-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .auth-input-row {
    flex-direction: column;
    align-items: stretch;
  }
  .auth-input-row .bk-continue-btn--inline {
    width: 100%;
  }
}

.auth-error {
  padding: 8px 12px;
  background: rgba(242, 113, 130, 0.08);
  border: 1px solid rgba(242, 113, 130, 0.15);
  border-radius: var(--radius-md, 16px);
  font-size: 0.8rem;
  color: var(--accent-dark);
  margin-top: 8px;
}

.auth-switch {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.auth-switch .bk-link-btn {
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Welcome back card */
.auth-welcome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md, 16px);
  margin-bottom: 16px;
}

.auth-welcome__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 113, 130, 0.1);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}

.auth-welcome__greeting {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 2px;
}

.auth-welcome__greeting strong {
  font-weight: 600;
}

.auth-welcome__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Service card — compact row (high specificity to override styles.css) */
.bk-section .service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 14px 18px;
  margin-bottom: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo, ease);
  aspect-ratio: auto;
  position: relative;
  overflow: visible;
}

.bk-section .service-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 113, 130, 0.06);
}

/* ───── Service card SELECTED state — accent border ───── */
.bk-section .service-card.selected {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.04);
  box-shadow: 0 0 0 1px var(--accent);
}

.bk-section .service-card.selected .service-card__check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* MOST BOOKED + selected */
.bk-section .service-card--most-booked.selected {
  box-shadow: 0 0 0 2px var(--accent), 0 0 16px 4px rgba(242, 113, 130, 0.2);
}

/* Checkbox — always visible, filled when selected */
.service-card__check {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: transparent;
  border-radius: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  order: 99;
}

.bk-section .service-card__info {
  flex: 1;
  min-width: 0;
}

.bk-section .service-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 1px;
  position: static;
}

.bk-section .service-card__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bk-section .service-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
  position: static;
}

/* Color notice — inside accordion body */
.svc-color-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(242, 113, 130, 0.06);
  border: 1px solid rgba(242, 113, 130, 0.12);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 12px;
}

.svc-color-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
}

/* Legacy — keep for backward compat */
.bk-color-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(242, 113, 130, 0.06);
  border: 1px solid rgba(242, 113, 130, 0.15);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.bk-color-notice svg,
.bk-color-notice .bk-color-notice__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Add-ons section within services */
.bk-addons {
  margin-top: 20px;
}

.bk-addons__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* ─────────────────────────────────────────────────────────────
   8. STAFF GRID (Section 3)
   ───────────────────────────────────────────────────────────── */

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

.staff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo, ease);
  text-align: center;
}
/* Full-image staff card (like category cards) */
.staff-card--photo {
  padding: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--text-primary);
  border: none;
}
.staff-card--photo .staff-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: var(--text-secondary);
  transition: transform .4s ease;
}
.staff-card--photo .staff-card__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-muted);
}
.staff-card--photo:hover .staff-card__bg { transform: scale(1.05); }
.staff-card--photo .staff-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 45%, transparent 70%);
  pointer-events: none;
}
.staff-card--photo .staff-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: var(--text-inverse);
  z-index: 1;
  text-align: left;
}
.staff-card--photo .staff-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-inverse);
  margin: 0;
}
.staff-card--photo .staff-card__role {
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
/* Badge positioned top-left corner */
.staff-card__badge-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.staff-card--photo .staff-card__badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin: 0;
  background: rgba(0,0,0,.85);
  color: #fff !important;
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.staff-card--photo .staff-card__badge--top {
  background: rgba(0,0,0,.5);
  color: var(--color-star);
  border-color: rgba(245,197,24,.4);
}
.staff-card--photo .staff-card__badge--senior {
  background: rgba(0,0,0,.5);
  color: var(--text-inverse);
  border-color: rgba(255,255,255,.35);
}
.staff-card--photo .staff-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.staff-card--photo .staff-card__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  margin: 0;
  white-space: nowrap;
}
.staff-card--photo .staff-card__rating {
  margin: 0;
  margin-left: auto;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--radius-md, 16px);
  background: rgba(255,255,255,.1);
  transition: background .2s;
}
.staff-card--photo .staff-card__rating:hover {
  background: rgba(255,255,255,.25);
}
.staff-card--photo .staff-card__stars {
  color: var(--color-star);
  font-size: 13px;
}
.staff-card--photo .staff-card__rating-arrow {
  opacity: .6;
  color: var(--text-inverse);
  transition: opacity .2s;
}
.staff-card--photo .staff-card__rating:hover .staff-card__rating-arrow {
  opacity: 1;
}
.staff-card--photo.selected {
  box-shadow: 0 0 0 3px var(--accent);
  border: none;
}
/* Info button on staff photo cards */
.staff-card__info-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  padding: 0;
}
.staff-card__info-btn:hover {
  background: rgba(0,0,0,.9);
}

/* Staff Profile Modal */
.staff-profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: fadeIn .2s ease;
}
@media (min-width: 768px) {
  .staff-profile-overlay {
    align-items: center;
    padding: 24px;
  }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.staff-profile {
  background: var(--bg-primary);
  border-radius: 24px 24px 0 0;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .3s ease;
}
@media (min-width: 768px) {
  .staff-profile {
    border-radius: 24px;
  }
}
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.staff-profile__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-inverse);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-profile__hero {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center 20%;
  border-radius: 24px 24px 0 0;
}
@media (min-width: 768px) {
  .staff-profile__hero { border-radius: 24px 24px 0 0; }
}
.staff-profile__body {
  padding: 20px 24px;
}
.staff-profile__name {
  font-family: var(--font-display, 'Eros', serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 4px 0 2px;
}
.staff-profile__role {
  font-size: .85rem;
  color: var(--text-muted);
}
.staff-profile__bio {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 12px;
}
.staff-profile__reviews {
  padding: 0 24px 8px;
}
.staff-profile__reviews-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.staff-profile__review {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.staff-profile__review-text {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.45;
  font-style: italic;
}
.staff-profile__review-author {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.staff-profile__select {
  margin: 16px 24px 24px;
  width: calc(100% - 48px);
}

.staff-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 113, 130, 0.1);
}

.staff-card.selected {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.04);
  box-shadow: 0 0 0 1px var(--accent);
}

.staff-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}

.staff-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--text-muted);
}

/* AI blob animation for "Lass mich überraschen" */
.staff-card__avatar--ai {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e6ff 0%, #fce4e8 50%, #e6f0ff 100%);
}

.ai-blob-container {
  position: absolute;
  inset: 0;
}

.ai-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
  animation: ai-float 6s ease-in-out infinite;
}

.ai-blob--1 {
  width: 30px;
  height: 30px;
  background: var(--accent);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.ai-blob--2 {
  width: 24px;
  height: 24px;
  background: #a78bfa;
  top: 40%;
  right: 10%;
  animation-delay: -2s;
}

.ai-blob--3 {
  width: 20px;
  height: 20px;
  background: #60a5fa;
  bottom: 10%;
  left: 30%;
  animation-delay: -4s;
}

.ai-sparkle {
  position: relative;
  z-index: 1;
  color: var(--accent-dark);
  animation: ai-pulse 3s ease-in-out infinite;
}

@keyframes ai-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(8px, -6px) scale(1.1); }
  50% { transform: translate(-4px, 8px) scale(0.9); }
  75% { transform: translate(6px, 4px) scale(1.05); }
}

@keyframes ai-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

.staff-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.staff-card__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Staff rating stars */
.staff-card__price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 6px;
}
.staff-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

.staff-card__stars {
  font-size: 15px;
  color: var(--color-star);
  letter-spacing: 1px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.staff-card__stars .star-full {
  color: var(--color-star);
}

.staff-card__stars .star-half {
  background: linear-gradient(90deg, var(--accent-light) 50%, #d4d4d4 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staff-card__rating-count {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 300;
}

/* Qualification badges — inside card frame, bottom */
.staff-card__badge {
  display: block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  line-height: 1.2;
  margin-top: 4px;
  text-align: center;
}

.staff-card__badge--top {
  background: linear-gradient(135deg, var(--accent-light), #e6a817);
  color: var(--text-inverse);
}

.staff-card__badge--senior {
  background: var(--accent);
  color: var(--text-inverse);
}

.staff-card--any {
  border-style: dashed;
  aspect-ratio: 3/4;
  justify-content: center;
}

.staff-card--neva-ai {
  border: none;
  background: linear-gradient(165deg, #1a1520, #0f0d14);
  transition: all 0.3s ease;
  aspect-ratio: 3/4;
  justify-content: center;
  padding: 24px 20px;
}
.staff-card--neva-ai:hover {
  box-shadow: 0 0 24px rgba(242, 113, 130, 0.15), 0 8px 24px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.staff-card--neva-ai.selected {
  box-shadow: 0 0 0 3px var(--accent), 0 0 32px rgba(242, 113, 130, 0.12);
}
.staff-card--neva-ai .staff-card__role {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  line-height: 1.4;
}
.staff-card__neva-icon {
  margin-bottom: 8px;
}
.staff-card__neva-cta {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

.staff-card--any .staff-card__avatar {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   9. CALENDAR & DATETIME PICKER (Section 4)
   ───────────────────────────────────────────────────────────── */

.datetime-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.calendar-wrapper {
  background: var(--bg-primary);
  border-radius: var(--radius-md, 16px);
  border: 1px solid var(--border);
  padding: 20px;
}

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

.calendar-nav__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
}

.calendar-nav__btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--text-secondary);
  font-size: 1rem;
}

.calendar-nav__btn:hover {
  background: var(--border);
}

.calendar-nav__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-grid__header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--text-secondary);
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: var(--border);
}

.cal-day--today {
  font-weight: 600;
  color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.cal-day--selected {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  font-weight: 600;
  box-shadow: none !important;
}

.cal-day--today.cal-day--selected {
  color: var(--text-primary) !important;
}

.cal-day--disabled {
  color: var(--border);
  cursor: not-allowed;
}

.cal-day--empty {
  cursor: default;
}

/* ─────────────────────────────────────────────────────────────
   10. TIMESLOTS
   ───────────────────────────────────────────────────────────── */

.timeslots-wrapper {
  background: var(--bg-primary);
  border-radius: var(--radius-md, 16px);
  border: 1px solid var(--border);
  padding: 20px;
}

.timeslots-wrapper h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.timeslot-btn {
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo, ease);
  text-align: center;
  min-width: 72px;
  min-height: 44px;
}
/* Expand button for "Weitere Zeiten" — spans full grid width */
.timeslot-expand-btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 10px;
  background: none;
  border: 1px dashed var(--text-muted);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  transition: all .2s;
}
.timeslot-expand-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.timeslot-btn:hover {
  border-color: var(--accent-light);
  background: rgba(242, 113, 130, 0.04);
  transform: translateY(-2px);
}

.timeslot-btn.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 500;
}

.timeslots-empty {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 24px 0;
}

.timeslots-empty.hidden {
  display: none;
}

/* Scheduling hint — gentle edge-time suggestion */
.scheduling-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
  border: 1px solid var(--border-warning);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scheduling-hint svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.scheduling-hint strong {
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────
   11. CONDITIONS / CHECKBOXES (Section 5)
   ───────────────────────────────────────────────────────────── */

.condition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.condition-item:hover {
  background: var(--border);
}

.condition-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.condition-item input[type="checkbox"]:checked + span {
  color: var(--text-primary);
  font-weight: 400;
}

/* ─────────────────────────────────────────────────────────────
   12. BOOKING FORM / PERSONAL DETAILS (Section 6)
   ───────────────────────────────────────────────────────────── */

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form__row--three {
  grid-template-columns: 120px 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--wide {
  grid-column: span 1;
}

.form-group--narrow {
  max-width: 120px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group label span {
  color: var(--accent);
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--color-error);
}

.form-group .form-error {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 2px;
  display: block;
}

.form-group textarea.invalid {
  border-color: var(--color-error);
}

/* Shake animation for validation errors */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-4px); }
  30%, 60%, 90% { transform: translateX(4px); }
}
.bk-section.shake {
  animation: shake 0.5s ease-in-out;
}

/* ─────────────────────────────────────────────────────────────
   13. NOTES / TEXTAREA (Section 7)
   ───────────────────────────────────────────────────────────── */

.booking-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-primary);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.booking-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking-textarea::placeholder {
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   14. PHOTO UPLOAD (Section 8)
   ───────────────────────────────────────────────────────────── */

.photo-upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-upload-item {
  position: relative;
}

.photo-upload-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.photo-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  color: var(--text-muted);
  min-height: 140px;
}

.photo-upload-label:hover {
  border-color: var(--accent-light);
  background: rgba(242, 113, 130, 0.03);
  color: var(--accent);
}

.photo-upload-label svg,
.photo-upload-label .photo-upload-icon {
  font-size: 1.5rem;
  opacity: 0.6;
}

.photo-upload-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.photo-upload-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Photo preview */
.photo-preview {
  position: relative;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.photo-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: var(--bg-primary);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.photo-remove:hover {
  background: rgba(229, 62, 62, 0.9);
}

/* ─────────────────────────────────────────────────────────────
   15. INFO CARDS (Section 9)
   ───────────────────────────────────────────────────────────── */

.bk-info-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.bk-info-card:last-child {
  margin-bottom: 0;
}

.bk-info-card strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.bk-info-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   16. SUMMARY CARD
   ───────────────────────────────────────────────────────────── */

.bk-summary {
  margin-bottom: 16px;
}

.booking-summary {
  margin-bottom: 16px;
}

.summary-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.summary-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
}

.summary-card__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
}

.summary-card__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-primary);
  text-align: right;
}
.summary-card__value--price {
  font-weight: 400;
}

.summary-card__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* Summary price note */
.summary-price-info {
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  margin-left: 2px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.summary-price-info:hover {
  text-decoration: underline;
}

.summary-price-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 10px 14px;
  margin: 8px 0 0;
  border-left: 2px solid rgba(242, 113, 130, .3);
  border-radius: 0;
}

.summary-price-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Pre-checkout savings hint */
.summary-savings-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--bg-success);
  border: 1px solid var(--border-success);
  border-radius: var(--radius-md, 16px);
  font-size: .82rem;
  color: var(--color-success-dark);
  animation: savings-glow 3s ease-in-out infinite;
}
.summary-savings-hint strong {
  color: var(--color-success);
  font-size: .9rem;
}
.summary-savings-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--color-success);
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.summary-savings-btn:hover {
  background: var(--color-success-dark);
  transform: scale(1.02);
}
@keyframes savings-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.15); }
  50% { box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}

/* ─────────────────────────────────────────────────────────────
   PRICE NOTICE BOX
   ───────────────────────────────────────────────────────────── */

.bk-price-notice {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}
.bk-price-notice__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.bk-price-notice__body p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.bk-price-notice__body p:last-child { margin-bottom: 0; }
.bk-price-notice__body strong { color: var(--text-primary); font-weight: 600; }
.bk-price-notice__body em { font-style: italic; color: var(--text-muted); }
.bk-price-notice__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bk-price-notice__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.bk-price-notice__cta-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 480px) {
  .bk-price-notice__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   SALON MATCHER OVERLAY
   ───────────────────────────────────────────────────────────── */

.sm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 24, 22, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sm-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.sm-overlay__inner {
  position: relative;
  width: 94%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sm-overlay.active .sm-overlay__inner {
  transform: translateY(0) scale(1);
}
.sm-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-secondary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.sm-overlay__close:hover { background: var(--border); }
.sm-overlay__close svg { width: 16px; height: 16px; stroke: var(--text-secondary); stroke-width: 2; }

/* Quiz */
.sm-quiz__header {
  text-align: center;
  margin-bottom: 28px;
}
.sm-quiz__header h3 {
  font-family: var(--font-display, var(--font-body));
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.sm-quiz__header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.sm-quiz__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.sm-quiz__progress-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.sm-quiz__progress-dot.active { background: var(--accent); }
.sm-quiz__progress-dot.done { background: var(--accent); opacity: 0.5; }

.sm-quiz__question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  min-height: 52px;
}
.sm-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sm-quiz__option {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.sm-quiz__option:hover {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.04);
}
.sm-quiz__option:active {
  transform: scale(0.98);
}
.sm-quiz__option.selected {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.08);
  font-weight: 600;
}

/* Value Cards (Phase 1) */
.sm-value-card {
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-primary);
  text-align: center;
  margin-bottom: 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm-value-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
}
.sm-value-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.sm-value-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.sm-value-btn--ja { color: #34A853; }
.sm-value-btn--ja:hover, .sm-value-btn--ja.selected {
  border-color: #34A853;
  background: rgba(52, 168, 83, 0.08);
}
.sm-value-btn--nein { color: #d94f60; }
.sm-value-btn--nein:hover, .sm-value-btn--nein.selected {
  border-color: #d94f60;
  background: rgba(217, 79, 96, 0.08);
}

/* Transition */
.sm-transition {
  text-align: center;
  padding: 20px 0;
}
.sm-transition__emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}
.sm-transition__title {
  font-family: var(--font-display, var(--font-body));
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.sm-transition__score {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 4px;
}
.sm-transition__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.sm-transition__btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-md, 16px);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.sm-transition__btn:hover { background: var(--accent-dark, #d94f60); }
.sm-transition__btn:active { transform: scale(0.98); }

/* Values banner in results */
.sm-result__values {
  padding: 12px 16px;
  border-radius: var(--radius-md, 16px);
  font-size: 0.82rem;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
.sm-result__values span { margin-right: 4px; }
.sm-result__values a { color: inherit; text-decoration: underline; }
.sm-result__values--good { background: rgba(52, 168, 83, 0.08); color: #1e7e34; border: 1px solid rgba(52, 168, 83, 0.2); }
.sm-result__values--ok { background: rgba(245, 158, 11, 0.08); color: #92600a; border: 1px solid rgba(245, 158, 11, 0.2); }
.sm-result__values--warn { background: rgba(217, 79, 96, 0.08); color: #a03040; border: 1px solid rgba(217, 79, 96, 0.2); }

/* Results */
.sm-result { display: none; }
.sm-result.active { display: block; }

.sm-result__header {
  text-align: center;
  margin-bottom: 24px;
}
.sm-result__header h3 {
  font-family: var(--font-display, var(--font-body));
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.sm-result__header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.sm-result__best {
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(242, 113, 130, 0.03);
  text-align: center;
}
.sm-result__best-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin-bottom: 12px;
}
.sm-result__best-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.sm-result__best-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
}
.sm-result__best-score {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 4px 0 12px;
}
.sm-result__reasons {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.sm-result__reasons li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 4px 0;
}
.sm-result__reasons li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}
.sm-result__best-cta {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md, 16px);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.sm-result__best-cta:hover { background: var(--accent-dark, #d94f60); }
.sm-result__best-cta:active { transform: scale(0.98); }

.sm-result__others {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.sm-result__other {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: border-color 0.2s;
}
.sm-result__other:hover { border-color: var(--accent); }
.sm-result__other-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.sm-result__other-info { flex: 1; }
.sm-result__other-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.sm-result__other-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.sm-result__other-score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.sm-result__footer {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.sm-result__footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.sm-result__footer a {
  color: var(--accent);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   DISCLAIMER CHECKBOX
   ───────────────────────────────────────────────────────────── */

.bk-disclaimer {
  position: relative;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.bk-disclaimer.accepted {
  border-color: var(--color-success);
  background: rgba(76, 175, 80, 0.03);
  animation: disclaimerPulse 2s ease-in-out 1;
}

@keyframes disclaimerPulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.3); }
  50% { box-shadow: 0 0 16px 4px rgba(76, 175, 80, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.bk-disclaimer__toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

.bk-disclaimer__toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bk-disclaimer__checkbox {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--text-muted);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: var(--bg-primary);
}

.bk-disclaimer__toggle input:checked + .bk-disclaimer__checkbox {
  background: var(--color-success);
  border-color: var(--color-success);
  color: white;
}

.bk-disclaimer__check-icon {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.15s ease;
}

.bk-disclaimer__toggle input:checked + .bk-disclaimer__checkbox .bk-disclaimer__check-icon {
  opacity: 1;
  transform: scale(1);
}

.bk-disclaimer__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  padding-top: 2px;
}

/* Heart pop animation */
.bk-disclaimer__heart-pop {
  position: absolute;
  top: -8px;
  right: 16px;
  pointer-events: none;
}

.bk-disclaimer__heart-pop.animate {
  animation: heartPop 1.2s ease-out forwards;
}

@keyframes heartPop {
  0% { opacity: 0; transform: scale(0.3) translateY(0); }
  30% { opacity: 1; transform: scale(1.4) translateY(-8px); }
  60% { opacity: 1; transform: scale(1) translateY(-16px); }
  100% { opacity: 0; transform: scale(0.8) translateY(-32px); }
}

/* Heartbreak animation */
.bk-disclaimer__heartbreak {
  position: absolute;
  top: -4px;
  right: 16px;
  pointer-events: none;
}

.bk-disclaimer__heartbreak.animate {
  animation: heartBreak 1.5s ease-out forwards;
}

@keyframes heartBreak {
  0% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  20% { opacity: 1; transform: scale(1.1) rotate(-5deg); }
  50% { opacity: 1; transform: scale(0.9) rotate(5deg); }
  100% { opacity: 0; transform: scale(0.5) translateY(8px) rotate(-10deg); }
}

.bk-disclaimer__text {
  padding-left: 36px;
}

.bk-disclaimer__text p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 6px;
}

.bk-disclaimer__text a {
  color: var(--accent);
  font-weight: 400;
  text-decoration: none;
}

.bk-disclaimer__text a:hover {
  text-decoration: underline;
}

.bk-disclaimer__payment {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
}

/* ─────────────────────────────────────────────────────────────
   COUPON CODE
   ───────────────────────────────────────────────────────────── */

.bk-coupon {
  margin-top: 16px;
}
.bk-coupon--prominent {
  background: linear-gradient(135deg, rgba(242,113,130,.04), rgba(201,169,110,.04));
  border: 1px dashed var(--accent-light);
  border-radius: var(--radius-md, 16px);
  padding: 16px 20px;
  margin: 20px 0;
}
.bk-coupon__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.bk-coupon__header-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.bk-coupon--prominent .bk-coupon__field {
  margin-top: 0;
}

.bk-coupon__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.15s ease;
}

.bk-coupon__toggle:hover {
  color: var(--accent);
}

.bk-coupon__field {
  margin-top: 10px;
}

.bk-coupon__input-row {
  display: flex;
  gap: 8px;
}

.bk-coupon__input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 1rem; /* min 16px to prevent iOS auto-zoom */
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.15s ease;
}

.bk-coupon__input-row input:focus {
  border-color: var(--accent);
}

.bk-coupon__apply {
  padding: 10px 20px;
  background: var(--text-secondary);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.bk-coupon__apply:hover {
  background: var(--text-primary);
}

.bk-coupon__status {
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 400;
}

.bk-coupon__status.success {
  color: var(--color-success);
}

.bk-coupon__status.error {
  color: var(--accent-dark);
}

/* ─────────────────────────────────────────────────────────────
   17. SUBMIT BUTTON
   ───────────────────────────────────────────────────────────── */

.bk-submit-wrap {
  text-align: left;
  padding: 8px 0 16px;
  display: none;
}
.bk-submit-wrap.visible {
  display: block;
}

.bk-submit-btn .btn-icon {
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.bk-submit-btn:hover .btn-icon {
  transform: scale(1.15);
  opacity: 1;
}

.bk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 680px;
  height: 60px;
  padding: 0 36px;
  background: linear-gradient(135deg, #f27182 0%, #e8456a 50%, #f27182 100%);
  background-size: 200% 200%;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(242, 113, 130, 0.35), 0 2px 8px rgba(232, 69, 106, 0.2);
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.bk-submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  width: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.bk-submit-btn:hover::before {
  left: 100%;
}

.bk-submit-btn:hover {
  background: linear-gradient(135deg, #e8456a 0%, #d94f60 50%, #f27182 100%);
  background-size: 200% 200%;
  box-shadow: 0 8px 32px rgba(242, 113, 130, 0.5), 0 4px 12px rgba(232, 69, 106, 0.3);
  transform: translateY(-2px) scale(1.01);
}

.bk-submit-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(242, 113, 130, 0.3);
}

.bk-submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: var(--accent);
  animation: none;
}

.bk-submit-btn:not(:disabled) {
  box-shadow: 0 6px 24px rgba(242, 113, 130, 0.3), 0 2px 8px rgba(232, 69, 106, 0.15);
}

.bk-privacy-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.bk-privacy-note a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bk-privacy-note a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────
   18. ERROR STATE
   ───────────────────────────────────────────────────────────── */

.booking-error {
  background: var(--bg-error);
  border: 1px solid var(--border-error);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}

.booking-error.hidden {
  display: none;
}

.booking-error p {
  font-family: var(--font-body);
  color: var(--color-error-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.booking-error button {
  font-family: var(--font-body);
}

/* ─────────────────────────────────────────────────────────────
   19. LOADING STATE
   ───────────────────────────────────────────────────────────── */

.booking-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.booking-loader.hidden {
  display: none;
}

.booking-loader__spinner {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Button spinner inside submit button */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

.btn-spinner.hidden {
  display: none;
}

/* ─────────────────────────────────────────────────────────────
   20. DETAIL CARDS (Conditions, Notes, Photos wrappers)
   ───────────────────────────────────────────────────────────── */

.service-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.4s var(--ease-out-expo);
}

.detail-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.detail-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Optional badge */
.optional-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--border);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ─────────────────────────────────────────────────────────────
   21. OLD STEPPER (kept for backward compatibility)
   ───────────────────────────────────────────────────────────── */

.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 16px;
}

.stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}

.stepper__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-primary);
  transition: all 0.3s ease;
}

.stepper__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.stepper__step.active .stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.stepper__step.active .stepper__label {
  color: var(--text-secondary);
}

.stepper__step.completed .stepper__num {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--bg-primary);
}

.stepper__step.completed .stepper__label {
  color: var(--text-secondary);
}

.stepper__line {
  flex: 1;
  height: 1.5px;
  background: var(--border);
  max-width: 60px;
  margin: 0 4px;
  margin-bottom: 22px;
}

/* Old step panels (backward compat) */
.booking-step {
  display: none;
  animation: fadeIn 0.4s var(--ease-out-expo);
}

.booking-step.active {
  display: block;
}

.booking-step h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.booking-step__subtitle {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.booking-step__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────────────────────────
   22. KEYFRAME ANIMATIONS
   ───────────────────────────────────────────────────────────── */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 5000px;
  }
}

/* Section becoming active animation */
.bk-section.active .bk-section__body {
  animation: fadeIn 0.4s var(--ease-out-expo);
}

/* ─────────────────────────────────────────────────────────────
   23. UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */

.hidden {
  display: none !important;
}

/* ─────────────────────────────────────────────────────────────
   24. RESPONSIVE — MOBILE-FIRST BREAKPOINTS
   ───────────────────────────────────────────────────────────── */

/* Small mobile — tighten up spacing */
@media (max-width: 380px) {
  .booking-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .bk-section__header {
    padding: 16px 18px;
    gap: 12px;
  }

  .bk-section__body {
    padding: 0 18px 20px;
  }

  .bk-cat-card {
    padding: 20px 12px;
  }

  .calendar-wrapper,
  .timeslots-wrapper {
    padding: 16px;
  }

  .summary-card {
    padding: 20px;
  }
}

/* Up to tablet */
@media (max-width: 480px) {
  .stepper__label {
    display: none;
  }

  .stepper__step {
    min-width: 36px;
  }

  .stepper__line {
    max-width: 32px;
  }

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

  .photo-upload-grid {
    grid-template-columns: 1fr;
  }
}

/* Stacking breakpoint for form fields and datetime */
@media (max-width: 560px) {
  .booking-form__row {
    grid-template-columns: 1fr;
  }

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

/* Main responsive breakpoint */
@media (max-width: 640px) {
  .datetime-picker {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeslots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .staff-card {
    padding: 20px 12px;
    gap: 8px;
  }

  .staff-card__avatar {
    width: 56px;
    height: 56px;
  }
}

/* Category grid always stays 2 columns on mobile */
/* (already set as default — no override needed) */

/* Desktop refinements */
@media (min-width: 641px) {
  .booking-section {
    padding: calc(var(--nav-height) + 48px) clamp(16px, 4vw, 48px) 80px;
  }

  .booking-header {
    margin-bottom: 40px;
  }

  .bk-section__header {
    padding: 24px 28px;
  }

  .bk-section__body {
    padding: 0 28px 28px;
  }

  .bk-category-grid {
    gap: 16px;
  }

  .bk-cat-card {
    padding: 28px 20px;
  }

  .summary-card {
    padding: 32px;
  }
}

/* Larger screens — slightly wider gutter */
@media (min-width: 768px) {
  .booking-header h1 {
    margin-bottom: 12px;
  }

  .staff-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .timeslots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────
   25. TOUCH / ACCESSIBILITY
   ───────────────────────────────────────────────────────────── */

/* Ensure tap targets are at least 44px on touch devices */
@media (pointer: coarse) {
  .service-card {
    min-height: 48px;
    padding: 12px 14px;
  }

  .timeslot-btn {
    min-height: 48px;
    padding: 14px 8px;
  }

  .cal-day {
    min-height: 40px;
  }

  .condition-item {
    min-height: 48px;
  }
}

/* Focus visible styles for keyboard navigation */
.bk-cat-card:focus-visible,
.service-card:focus-visible,
.staff-card:focus-visible,
.timeslot-btn:focus-visible,
.cal-day:focus-visible,
.bk-submit-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.bk-section__header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

/* ─────────────────────────────────────────────────────────────
   EDIT HINT — "Ändern" text on completed sections
   ───────────────────────────────────────────────────────────── */

.bk-edit-hint {
  display: none;
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bk-section.completed .bk-edit-hint {
  display: block;
  opacity: 0.7;
}

.bk-section.completed:hover .bk-edit-hint {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   LINK BUTTON — inline text-button in notices
   ───────────────────────────────────────────────────────────── */

.bk-link-btn {
  display: inline-block;
  margin-top: 10px;
  margin-right: 12px;
  padding: 6px 14px;
  background: var(--bg-primary);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.bk-link-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ─────────────────────────────────────────────────────────────
   TIMESLOTS EMPTY — improved styling
   ───────────────────────────────────────────────────────────── */

.timeslots-empty__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────
   BACK-TO-BACK NOTICE
   ───────────────────────────────────────────────────────────── */

.bk-backtoback-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bk-backtoback-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────
   COLOR ADDON ANIMATIONS
   ───────────────────────────────────────────────────────────── */

/* Slide-in from top for color notice */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.5s var(--ease-out-expo) forwards;
}

/* Suggested service card — subtle accent border, no animation */
.bk-section .service-card--suggested {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.03);
}

/* ─── Alternative Staff Cards ─── */
.alt-staff-suggestions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.alt-staff-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
}

.alt-staff-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.alt-staff-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.alt-staff-card__info {
  flex: 1;
  min-width: 0;
}

.alt-staff-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.alt-staff-card__times {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.alt-staff-card__btn {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-md, 16px);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.alt-staff-card__btn:hover {
  background: var(--accent-dark);
}

/* ─── Color Addon Notice ─── */
.color-addon-notice {
  background: var(--bg-tertiary);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md, 16px);
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}

.color-addon-notice__hint {
  color: var(--text-muted);
  font-size: 13px;
  display: block;
  margin-top: 8px;
}

/* ─── New Customer Question ─── */
/* ─── Welcome Gate (First Visit Question) ─── */
.bk-welcome-gate {
  text-align: center;
  padding: 24px 0 32px;
}

.bk-welcome-gate__icon {
  margin-bottom: 12px;
}

.bk-welcome-gate__text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.bk-welcome-gate__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.bk-welcome-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-primary);
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .25s ease;
  min-width: 180px;
}

.bk-welcome-btn__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.bk-welcome-btn__sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.bk-welcome-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.bk-welcome-btn.selected {
  border-color: var(--accent);
  background: var(--accent);
}

.bk-welcome-btn.selected .bk-welcome-btn__label {
  color: var(--text-inverse);
}

.bk-welcome-btn.selected .bk-welcome-btn__sub {
  color: rgba(255,255,255,.8);
}

/* Inline login for returning customers */
.bk-inline-login {
  margin-top: 20px;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: 16px;
  text-align: center;
}

.bk-inline-login__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: center;
}

.bk-inline-login__form {
  max-width: 420px;
  margin: 0 auto;
}

.bk-inline-login__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.bk-inline-login__row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 16px; /* min 16px to prevent iOS auto-zoom */
  outline: none;
  transition: border-color .2s;
  background: var(--bg-primary);
}

.bk-inline-login__row input:focus {
  border-color: var(--accent);
}

.bk-inline-login__row input.invalid {
  border-color: var(--color-error);
}

.bk-inline-login__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.bk-inline-login__btn:active {
  transform: scale(0.97);
}

.bk-inline-login__btn:hover {
  background: var(--accent-dark);
}

.bk-inline-login .bk-link-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--accent);
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity .2s;
}

.bk-inline-login .bk-link-btn:hover {
  opacity: 0.7;
}

/* Forgot password inside password step */
#inline-step-password .bk-link-btn {
  margin-top: 12px;
}

.bk-inline-login .auth-error {
  text-align: center;
  margin-top: 10px;
}

/* Welcome success (after inline login) */
.bk-welcome-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}

.bk-welcome-success__name {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
}

.bk-welcome-success__hint {
  font-size: 14px;
  color: var(--text-muted);
}

/* Services area wrapper */
.bk-services-area.hidden {
  display: none;
}

/* ─── Color Wash Choice Buttons ─── */
.color-wash-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.color-wash-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-body);
  font-size: 14px;
}

.color-wash-option:hover {
  border-color: var(--accent);
  background: var(--bg-error);
}

.color-wash-option.selected {
  border-color: var(--accent);
  background: var(--bg-tertiary);
}

.color-wash-option__name {
  font-weight: 500;
  color: var(--text-secondary);
}

.color-wash-option__price {
  color: var(--text-muted);
  font-size: 13px;
}

/* ─── Extras Cards ─── */
.extras-group {
  margin-bottom: 16px;
}

.extras-group__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.extras-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: all .2s ease;
  margin-bottom: 6px;
}

.extras-card:hover {
  border-color: var(--accent);
}

.extras-card.selected {
  border-color: var(--accent);
  background: var(--bg-error);
}

.extras-card__check {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: all .2s ease;
}

.extras-card.selected .extras-card__check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-inverse);
}

.extras-card__name {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.extras-card__price {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Recommended extras */
.extras-group--recommended {
  border: 1px solid var(--accent);
  border-radius: var(--radius-md, 16px);
  padding: 12px;
  background: var(--bg-secondary);
  margin-bottom: 16px;
}

.extras-group--recommended .extras-group__title {
  color: var(--accent);
  font-weight: 600;
}

.extras-card--recommended {
  border-color: var(--bg-tertiary);
}

.extras-card__badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Country payment notice */
.bk-country-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  margin-top: 8px;
  background: #fff8e6;
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-md, 16px);
  font-size: 13px;
  color: var(--accent-dark);
  line-height: 1.4;
}

/* ─── Upsale Cards ─── */
.upsale-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  margin-bottom: 8px;
}

.upsale-card__info {
  flex: 1;
}

.upsale-card__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.upsale-card__staff {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.upsale-card__price {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 12px;
}

/* ─── Reviews Modal ─── */
.bk-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bk-modal-overlay.hidden {
  display: none;
}

.bk-modal {
  background: var(--bg-primary);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: modalSlideUp 0.25s ease-out;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bk-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.bk-modal__title {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}

.bk-modal__close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: var(--radius-md, 16px);
  transition: background 0.2s;
}

.bk-modal__close:hover {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.bk-modal__body {
  padding: 16px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bk-review-modal-card {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.bk-review-modal-card:last-child {
  border-bottom: none;
}

.bk-review-modal-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bk-review-modal-card__stars {
  color: var(--color-star);
  font-size: 15px;
  letter-spacing: 1px;
}

.bk-review-modal-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.bk-review-modal-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 6px;
}

.bk-review-modal-card__author {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
}

/* ─── Social Proof Stat Banner ─── */
.bk-social-stat {
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.bk-social-stat strong {
  font-weight: 600;
  color: var(--text-secondary);
}

.bk-social-stat .bk-social-stat__stars {
  color: var(--color-star);
  letter-spacing: 1px;
}

/* ─── Hair Length Choice ─── */
.bk-hair-length-choice {
  text-align: center;
  padding: 20px 0 8px;
}

.bk-hair-length-choice__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.bk-hair-length-choice__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bk-hair-length-choice__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bk-hair-length-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.bk-hair-length-btn:hover {
  border-color: var(--accent);
}

.bk-hair-length-btn.selected {
  border-color: var(--accent);
  background: var(--bg-error);
}

.bk-hair-length-btn__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.bk-hair-length-btn__desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.3;
}

.bk-hair-length-btn.selected .bk-hair-length-btn__desc {
  color: var(--text-secondary);
}

/* Hair length info button */
.bk-hair-length-btn {
  position: relative;
}

.bk-hair-info-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
  transition: border-color 0.15s, color 0.15s;
  z-index: 2;
}

.bk-hair-info-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hair length image popup */
.bk-hair-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: bkFadeIn 0.2s ease;
}

@keyframes bkFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bk-hair-popup {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  animation: bkSlideUp 0.25s ease;
}

@keyframes bkSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bk-hair-popup__img {
  width: 100%;
  height: auto;
  display: block;
}

.bk-hair-popup__footer {
  padding: 14px 16px;
  text-align: center;
}

.bk-hair-popup__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.bk-hair-popup__desc {
  font-size: 12px;
  color: var(--text-muted);
}

.bk-hair-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ─────────────────────────────────────────────────────────────
   24Kerats Bond Fusion Recommendation
   ───────────────────────────────────────────────────────────── */

.kerats-recommendation {
  margin-bottom: 16px;
  animation: kerats-slide-in 0.4s ease-out;
}

@keyframes kerats-slide-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.kerats-recommendation__card {
  background: var(--bg-primary, #fff);
  border: 1px solid var(--border, #e5e5e5);
  border-radius: var(--radius-md, 16px);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kerats-recommendation__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #f27182), var(--color-primary-light, #f7949f), var(--accent, #f27182));
}

.kerats-recommendation__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--accent, #f27182);
  color: var(--text-inverse);
  margin-bottom: 12px;
}

.kerats-recommendation__icon {
  margin-bottom: 8px;
}
.kerats-recommendation__icon svg { fill: var(--accent, #f27182); stroke: var(--accent, #f27182); }

.kerats-recommendation__title {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-primary);
  margin: 0 0 8px;
}

.kerats-recommendation__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.kerats-recommendation__link {
  display: inline-block;
  font-size: 13px;
  color: var(--accent, #f27182);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.kerats-recommendation__link:hover {
  color: var(--color-primary-dark, #d94f60);
}

.kerats-recommendation__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.kerats-recommendation__actions .bk-btn--primary {
  background: var(--accent, #f27182);
  border: none;
  min-width: 160px;
  color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
}

.kerats-recommendation__actions .bk-btn--primary:hover {
  background: var(--color-primary-dark, #d94f60);
}

.kerats-recommendation__actions .bk-btn--ghost {
  background: transparent;
  border: 1px solid var(--border, #e5e5e5);
  color: var(--text-secondary);
  min-width: 140px;
  border-radius: 100px;
  padding: 12px 24px;
}

/* 24Kerats info overlay */
.kerats-info-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fade-in 0.2s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.kerats-info-overlay__content {
  background: var(--bg-primary);
  border-radius: var(--radius-md, 16px);
  max-width: 480px;
  width: 100%;
  padding: 28px 24px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.kerats-info-overlay__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reservation timer */
.reservation-timer {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 8px);
  padding: 10px 16px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.reservation-timer__label {
  color: var(--text-muted);
  font-size: .75rem;
  white-space: nowrap;
}

.reservation-timer__bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.reservation-timer__fill {
  height: 100%;
  background: var(--color-success);
  border-radius: 2px;
  transition: width 1s linear, background-color 1s ease;
}

.reservation-timer__text {
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-secondary);
}

/* Slot conflict notice */
.slot-conflict {
  background: var(--bg-error);
  border: 1px solid var(--border-error);
  border-radius: var(--radius-md, 16px);
  padding: 20px;
  text-align: center;
  animation: kerats-slide-in 0.3s ease-out;
}

.slot-conflict__icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.slot-conflict__title {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.slot-conflict__text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}

.slot-conflict__alternatives {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.slot-conflict__alt-btn {
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius-sm, 8px);
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.slot-conflict__alt-btn:hover {
  background: var(--accent);
  color: var(--text-inverse);
}

.slot-conflict__alt-btn strong {
  display: block;
  font-size: 14px;
}

/* Scheduling notice (small services / mid-day) */
.scheduling-notice {
  background: var(--bg-error);
  border: 1px solid var(--border-error);
  border-radius: var(--radius-sm, 8px);
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-error-dark);
  line-height: 1.45;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.scheduling-notice__icon {
  flex-shrink: 0;
  font-size: 16px;
}

.scheduling-notice--info {
  background: #f0f7ff;
  border-color: #bfdbfe;
  color: #1e40af;
}
/* Back-to-back gap warning — red pulsing */
.scheduling-notice--warning-pulse {
  background: var(--bg-error);
  border: 1px solid var(--color-error);
  color: var(--color-error-dark);
  animation: btb-pulse 2s ease-in-out infinite;
}
.scheduling-notice--warning-pulse strong {
  color: var(--color-error);
}
@keyframes btb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.3); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* Timeslot labels for edge/dock slots */
.timeslot-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--accent);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.timeslot-btn--recommended {
  border-color: var(--accent-light);
  background: rgba(242, 113, 130, 0.03);
}
.timeslot-btn--recommended:hover {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.08);
}

/* Phone service CTA */
.phone-service-cta {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm, 8px);
  padding: 16px;
  text-align: center;
  margin-top: 8px;
}

.phone-service-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--text-inverse);
  border: none;
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body, 'Outfit', sans-serif);
}

.phone-service-cta__btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────
   Neva KI-Zuordnung Overlay
   ───────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════
   NEVA AI — Dedicated AI matching interface
   ═══════════════════════════════════════════════ */

.neva-match-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: neva-ai-fade 0.3s ease;
}
@keyframes neva-ai-fade { from { opacity: 0; } to { opacity: 1; } }

.neva-match {
  background: linear-gradient(165deg, #1a1520 0%, #0f0d14 40%, #15111d 100%);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: neva-ai-slide 0.5s cubic-bezier(.16,1,.3,1);
  border: 1px solid rgba(242, 113, 130, 0.15);
  box-shadow:
    0 0 60px rgba(242, 113, 130, 0.08),
    0 0 120px rgba(167, 139, 250, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.4);
}
@keyframes neva-ai-slide {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.neva-match__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.2s;
}
.neva-match__close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-inverse);
}

.neva-match__header {
  text-align: center;
  margin-bottom: 28px;
}

.neva-match__header h3 {
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 12px 0 0;
  background: linear-gradient(135deg, #f27182, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neva-match__avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

/* ── AI Orb Animation ── */
.neva-ai-orb {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto;
}
.neva-ai-orb__core {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f27182, #d94f60);
  box-shadow: 0 0 20px rgba(242, 113, 130, 0.6), 0 0 40px rgba(242, 113, 130, 0.3);
  animation: neva-orb-pulse 2.5s ease-in-out infinite;
}
@keyframes neva-orb-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(242,113,130,0.6), 0 0 40px rgba(242,113,130,0.3); }
  50% { transform: scale(1.08); box-shadow: 0 0 30px rgba(242,113,130,0.8), 0 0 60px rgba(242,113,130,0.4), 0 0 90px rgba(167,139,250,0.15); }
}
.neva-ai-orb__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  background: conic-gradient(from 0deg, transparent 0%, rgba(242,113,130,0.4) 25%, transparent 50%, rgba(167,139,250,0.3) 75%, transparent 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neva-orb-spin 4s linear infinite;
}
@keyframes neva-orb-spin { to { transform: rotate(360deg); } }
.neva-ai-orb__ring--outer {
  inset: -6px;
  opacity: 0.4;
  animation: neva-orb-spin 6s linear infinite reverse;
}
.neva-ai-orb__particles {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
}
.neva-ai-orb__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #f27182;
  animation: neva-particle-float 3s ease-in-out infinite;
}
.neva-ai-orb__particle:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; background: #f27182; }
.neva-ai-orb__particle:nth-child(2) { top: 25%; right: 0; animation-delay: -0.6s; background: #a78bfa; }
.neva-ai-orb__particle:nth-child(3) { bottom: 10%; right: 10%; animation-delay: -1.2s; background: #60a5fa; }
.neva-ai-orb__particle:nth-child(4) { bottom: 0; left: 40%; animation-delay: -1.8s; background: #f27182; }
.neva-ai-orb__particle:nth-child(5) { top: 30%; left: 0; animation-delay: -2.4s; background: #a78bfa; }
@keyframes neva-particle-float {
  0%, 100% { opacity: 0.3; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.9; transform: translate(2px, -4px) scale(1.5); }
}

/* ── AI analyzing state ── */
.neva-ai-analyzing {
  text-align: center;
  padding: 40px 0;
}
.neva-ai-analyzing__text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  animation: neva-ai-text-pulse 1.5s ease-in-out infinite;
}
@keyframes neva-ai-text-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.neva-match__step {
  display: none;
}

.neva-match__step.active {
  display: block;
  animation: neva-step-in 0.35s cubic-bezier(.16,1,.3,1);
}
@keyframes neva-step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.neva-match__q {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  text-align: center;
}

.neva-match__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.neva-match__opt {
  display: block;
  width: 100%;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md, 16px);
  padding: 15px 18px;
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: all 0.25s ease;
}

.neva-match__opt span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

.neva-match__opt:hover {
  border-color: rgba(242, 113, 130, 0.4);
  background: rgba(242, 113, 130, 0.08);
  transform: translateX(4px);
}

.neva-match__opt.selected {
  border-color: rgba(242, 113, 130, 0.6);
  background: linear-gradient(135deg, rgba(242,113,130,0.2), rgba(167,139,250,0.1));
  color: var(--text-inverse);
  box-shadow: 0 0 20px rgba(242, 113, 130, 0.1);
}

.neva-match__opt.selected span {
  color: rgba(255,255,255,0.6);
}

.neva-match__progress {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.neva-match__dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.neva-match__dot.active {
  background: linear-gradient(90deg, #f27182, #a78bfa);
  width: 28px;
}

.neva-match__dot.completed {
  background: rgba(242, 113, 130, 0.4);
}

.neva-match__result-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 1px solid rgba(242, 113, 130, 0.5);
  box-shadow: 0 0 24px rgba(242, 113, 130, 0.3);
}

.neva-match__result-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* Override buttons inside neva-match result */
.neva-match .bk-btn--primary {
  background: linear-gradient(135deg, #f27182, #d94f60) !important;
  box-shadow: 0 4px 16px rgba(242, 113, 130, 0.3);
}
.neva-match .bk-btn--ghost {
  color: rgba(255,255,255,0.5) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.neva-match .bk-btn--ghost:hover {
  color: rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.25) !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bk-section__body {
    transition: none;
  }
}

/* ════════════════════════════════════════════
   NEVA AI BOOKING CHAT
   ════════════════════════════════════════════ */
.neva-booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: neva-ai-fade 0.3s ease;
  padding: 16px;
}
.neva-booking {
  width: 100%;
  max-width: 480px;
  height: 90vh;
  max-height: 700px;
  background: linear-gradient(180deg, #0f0f14 0%, #1a1a24 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  animation: neva-ai-slide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header with aurora glow */
.neva-booking__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.neva-booking__header::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  right: -20%;
  height: 200%;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(242,113,130,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(167,139,250,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 60%, rgba(244,163,186,0.15) 0%, transparent 70%);
  animation: neva-aurora 8s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}
@keyframes neva-aurora {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  33% { transform: translate(10px, -5px) scale(1.05); opacity: 1; }
  66% { transform: translate(-8px, 3px) scale(0.98); opacity: 0.9; }
  100% { transform: translate(5px, -2px) scale(1.03); opacity: 1; }
}
.neva-booking__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.neva-booking__title {
  font-family: var(--font-body, Outfit, sans-serif);
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #f27182, #e8a0bb, #a78bfa);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neva-title-shimmer 4s ease-in-out infinite;
}
@keyframes neva-title-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.neva-booking__beta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  -webkit-text-fill-color: #e8a0bb;
  background: rgba(232,160,187,0.12);
  padding: 1px 6px;
  border-radius: 100px;
  border: 1px solid rgba(232,160,187,0.2);
  margin-left: 4px;
}
.neva-booking__subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}
/* Neva avatar — organic pulsing blob */
.neva-booking__avatar {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.neva-booking__avatar::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #f27182, #e8a0bb, #c084fc);
  background-size: 200% 200%;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
  animation: neva-blob-morph 6s ease-in-out infinite, neva-blob-color 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(242,113,130,0.4), 0 0 40px rgba(192,132,252,0.2);
}
.neva-booking__avatar-glow {
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, rgba(242,113,130,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: neva-glow-pulse 3s ease-in-out infinite;
}
@keyframes neva-blob-morph {
  0%, 100% { border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%; transform: rotate(0deg) scale(1); }
  25% { border-radius: 40% 55% 45% 50% / 55% 40% 50% 45%; transform: rotate(3deg) scale(1.05); }
  50% { border-radius: 55% 45% 40% 50% / 40% 50% 55% 45%; transform: rotate(-2deg) scale(0.98); }
  75% { border-radius: 45% 50% 50% 40% / 50% 45% 45% 55%; transform: rotate(2deg) scale(1.03); }
}
@keyframes neva-blob-color {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes neva-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.neva-booking__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.neva-booking__close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-inverse);
}

/* Aurora ambient glow behind messages */
.neva-booking__messages {
  position: relative;
}
.neva-booking__messages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background:
    radial-gradient(ellipse 100% 80% at 20% 10%, rgba(242,113,130,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(167,139,250,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 120% 50% at 50% 0%, rgba(244,163,186,0.05) 0%, transparent 60%);
  animation: neva-bg-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes neva-bg-drift {
  0% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(-15px, 8px); opacity: 1; }
  100% { transform: translate(10px, -5px); opacity: 0.8; }
}

/* Messages area */
.neva-booking__messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.neva-booking__messages::-webkit-scrollbar { width: 4px; }
.neva-booking__messages::-webkit-scrollbar-track { background: transparent; }
.neva-booking__messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Welcome */
.neva-booking__welcome {
  text-align: center;
  padding: 20px 0 10px;
}
.neva-booking__welcome-title {
  font-family: var(--font-display, Eros, Georgia, serif);
  font-size: 22px;
  color: var(--text-inverse);
  margin: 0 0 8px;
}
.neva-booking__welcome-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* Message bubbles */
.neva-booking__msg {
  display: flex;
  animation: neva-msg-in 0.3s ease;
}
.neva-booking__msg--user {
  justify-content: flex-end;
}
.neva-booking__msg--assistant {
  justify-content: flex-start;
}
.neva-booking__bubble {
  max-width: 85%;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.neva-booking__msg--user .neva-booking__bubble {
  background: linear-gradient(135deg, #f27182, #d94f60);
  color: var(--text-inverse);
  border-bottom-right-radius: 4px;
}
.neva-booking__msg--assistant .neva-booking__bubble {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Typing indicator */
.neva-booking__typing {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}
.neva-booking__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: neva-typing 1.2s ease-in-out infinite;
}
.neva-booking__typing span:nth-child(2) { animation-delay: 0.15s; }
.neva-booking__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes neva-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Quick reply chips (inline in chat) */
.neva-booking__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 16px 12px 52px;
  animation: kerats-slide-in 0.3s ease-out;
}
.neva-booking__chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(242,113,130,0.35);
  background: rgba(242,113,130,0.1);
  color: #f27182;
  font-family: var(--font-body, Outfit, sans-serif);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.neva-booking__chip:hover {
  background: rgba(242,113,130,0.2);
  border-color: rgba(242,113,130,0.6);
  transform: translateY(-2px);
}

/* Input area */
.neva-booking__input-area {
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.neva-booking__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 4px 4px 4px 16px;
  transition: border-color 0.2s;
}
.neva-booking__input-wrap:focus-within {
  border-color: rgba(242,113,130,0.4);
}
.neva-booking__input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-inverse);
  font-family: var(--font-body, Outfit, sans-serif);
  font-size: 16px; /* min 16px to prevent iOS auto-zoom */
  outline: none;
  padding: 8px 0;
}
.neva-booking__input::placeholder {
  color: rgba(255,255,255,0.25);
}
.neva-booking__send {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md, 16px);
  border: none;
  background: linear-gradient(135deg, #f27182, #d94f60);
  color: var(--text-inverse);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.neva-booking__send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(242,113,130,0.4);
}

/* Photo upload button */
.neva-booking__photo-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md, 16px);
  border: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.neva-booking__photo-btn:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}
/* Image preview above input */
.neva-booking__img-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 0;
}
.neva-booking__img-preview img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md, 16px);
  object-fit: cover;
  border: 1px solid rgba(242,113,130,0.3);
}
.neva-booking__img-preview button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--text-inverse);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neva-booking__img-preview button:hover {
  background: rgba(255,80,80,0.3);
}
/* User uploaded image in chat bubble */
.neva-booking__user-img {
  max-width: 180px;
  max-height: 180px;
  border-radius: var(--radius-md, 16px);
  display: block;
  margin-bottom: 4px;
}

@keyframes neva-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile full screen — keyboard-safe */
@media (max-width: 480px) {
  .neva-booking-overlay {
    padding: 0;
    align-items: flex-start;
    overflow: hidden;
  }
  .neva-booking {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  .neva-booking__messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .neva-booking__input-area {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    flex-shrink: 0;
  }
}

/* ─────────────────────────────────────────────────────────────
   HAIR SLIDERS (Step 1 enhancement)
   ───────────────────────────────────────────────────────────── */

.bk-hair-sliders {
  padding: 16px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.bk-hair-sliders__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.bk-slider-group {
  margin-bottom: 16px;
}

.bk-slider-group__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.bk-slider-visual {
  text-align: center;
}

.bk-hair-silhouette {
  width: 120px;
  height: 160px;
  margin: 0 auto 16px;
}

.bk-hair-silhouette svg {
  width: 100%;
  height: 100%;
}

.hair-shape {
  transition: d 0.4s ease, stroke-width 0.4s ease, opacity 0.4s ease;
}

.bk-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 280px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin: 0 auto;
  display: block;
}

.bk-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bk-slider::-webkit-slider-thumb:active {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(242, 113, 130, 0.3);
}

.bk-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bk-slider-labels {
  display: flex;
  justify-content: space-between;
  max-width: 280px;
  margin: 8px auto 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ─── Hair Option Cards (separate step) ─── */
.bk-option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bk-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.bk-option-card:hover {
  border-color: var(--accent-light);
}
.bk-option-card.active {
  border-color: var(--accent);
  background: rgba(242, 113, 130, .04);
}
.bk-option-card__icon {
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
}
.bk-option-card__title {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-secondary);
}
.bk-option-card__desc {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hair bars visual (length) */
.bk-hair-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.bk-hair-bars::before,
.bk-hair-bars::after,
.bk-hair-bars span {
  content: '';
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--text-muted);
  transition: height .3s ease, background .3s ease;
}
.bk-option-card.active .bk-hair-bars::before,
.bk-option-card.active .bk-hair-bars::after,
.bk-option-card.active .bk-hair-bars span {
  background: var(--accent);
}
/* Kurz: 3 short bars */
[data-count="1"]::before { height: 12px; }
[data-count="1"]::after { height: 10px; }
[data-count="1"] span { display: none; }
/* Mittel: 3 medium bars */
[data-count="2"]::before { height: 20px; }
[data-count="2"]::after { height: 16px; }
/* Lang: 3 tall bars */
[data-count="3"]::before { height: 32px; }
[data-count="3"]::after { height: 26px; }

/* Hair lines visual (density) */
.bk-hair-lines {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
}
.bk-hair-lines span {
  display: block;
  width: 2px;
  height: 28px;
  border-radius: 1px;
  background: var(--text-muted);
  transition: background .3s ease;
}
.bk-option-card.active .bk-hair-lines span {
  background: var(--accent);
}
/* Density: 2 lines = fein, 3 = normal, 5 = viel */
[data-count="2"] span { margin: 0 2px; }

/* ─────────────────────────────────────────────────────────────
   PFLICHT-ADDONS (Step 2)
   ───────────────────────────────────────────────────────────── */

.bk-addon-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(242, 113, 130, 0.06);
  border: 1px solid rgba(242, 113, 130, 0.15);
  border-radius: var(--radius-md, 16px);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.bk-addon-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Addon info — subtle inline hint (not a card) */
.bk-addon-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 14px;
  border-left: 3px solid var(--accent);
  background: transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted, #999);
  line-height: 1.5;
  margin-bottom: 14px;
}
.bk-addon-info .material-symbols-outlined {
  flex-shrink: 0;
  opacity: .5;
  font-size: 15px;
  margin-top: 1px;
}
[data-theme="dark"] .bk-addon-info {
  background: transparent;
  border: none;
  border-left: 3px solid rgba(242, 113, 130, .4);
  color: rgba(255,255,255,.45);
}

.bk-addon-required {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bk-addon-radio {
  cursor: pointer;
  display: block;
}

.bk-addon-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bk-addon-radio__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-primary);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
/* Visual radio indicator */
.bk-addon-radio__card::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 12px;
  transition: all 0.2s;
}

.bk-addon-radio input:checked + .bk-addon-radio__card {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.04);
}
.bk-addon-radio input:checked + .bk-addon-radio__card::after {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--bg-primary);
}

.bk-addon-radio__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 0;
}

.bk-addon-radio__meta {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

.bk-addon-recommended {
  margin-bottom: 16px;
}

.bk-addon-recommended__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.bk-addon-check {
  cursor: pointer;
  display: block;
}

.bk-addon-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bk-addon-check__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
/* Visual checkbox indicator */
.bk-addon-check__card::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: all 0.2s;
}
.bk-addon-check input:checked + .bk-addon-check__card::after {
  border-color: var(--accent);
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.bk-addon-check input:checked + .bk-addon-check__card {
  border-color: var(--accent);
  background: rgba(242, 113, 130, 0.04);
}

/* Gold recommended card */
.bk-addon-check__card--gold {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 18px 16px;
  border: 1px solid var(--accent);
  background: rgba(242,113,130,.04);
  position: relative;
  margin-top: 12px;
}
.bk-addon-check input:checked + .bk-addon-check__card--gold {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(201,169,110,.1) 0%, rgba(245,197,24,.06) 100%);
  box-shadow: 0 2px 12px rgba(201,169,110,.15);
}
.bk-addon-rec-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: var(--radius-full, 999px);
  box-shadow: 0 2px 8px rgba(242,113,130,.3);
  z-index: 1;
}
.bk-addon-check__desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.bk-addon-check__card--gold .bk-addon-check__name {
  font-size: 1rem;
  font-weight: 600;
}
.bk-addon-check__card--gold .bk-addon-check__price {
  font-size: .9rem;
  font-weight: 500;
  color: var(--accent);
}

.bk-addon-check__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bk-addon-check__price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   QUICK CAPTURE (Step 6)
   ───────────────────────────────────────────────────────────── */

.bk-quickcapture__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.bk-quickcapture__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.bk-quickcapture__fields .form-group {
  margin-bottom: 0;
}

.bk-quickcapture__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.bk-quickcapture__status {
  padding: 10px 14px;
  border-radius: var(--radius-md, 16px);
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.bk-quickcapture__status--success {
  background: rgba(242, 113, 130, 0.06);
  color: var(--accent);
  border: 1px solid rgba(242, 113, 130, 0.15);
}

/* ═══ Customer Type Cards (Step 0) ═══ */
.bk-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 4px;
}
@media (max-width: 480px) {
  .bk-type-cards { grid-template-columns: 1fr; }
}
.bk-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--bg-primary);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo, ease);
  text-align: center;
  min-height: 140px;
  justify-content: center;
}
.bk-type-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,113,130,0.12);
}
.bk-type-card.active {
  border-color: var(--color-primary, #f27182);
  background: rgba(242,113,130,0.06);
}
.bk-type-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md, 16px);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.bk-type-card__icon .material-symbols-outlined {
  font-size: 24px;
  color: var(--accent);
}
.bk-type-card:hover .bk-type-card__icon {
  background: var(--accent);
}
.bk-type-card:hover .bk-type-card__icon .material-symbols-outlined {
  color: #fff;
}
.bk-type-card__title {
  font-family: var(--font-display, 'Eros', serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--text-primary);
}
.bk-type-card__desc {
  font-size: 0.85rem;
  color: var(--color-medium-gray, #c4c0bc);
  line-height: 1.3;
}

/* Magic Link Sent Screen */
.bk-magic-sent {
  text-align: center;
  padding: 32px 16px;
}
.bk-magic-sent__icon {
  margin-bottom: 16px;
}
.bk-magic-sent__title {
  font-family: var(--font-display, 'Eros', serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.bk-magic-sent__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto 20px;
}
.bk-magic-sent__steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.bk-magic-sent__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.bk-magic-sent__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-inverse);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-magic-sent__hint {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.bk-magic-sent__resend {
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  font-family: inherit;
}

/* ─────────────────────────────────────────────────────────────
   PHOTOS + HAIR SITUATION (Step 8)
   ───────────────────────────────────────────────────────────── */

.bk-hair-situation__title,
.bk-photos__title,
.bk-notes__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.bk-hair-situation {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.bk-hair-situation__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bk-check:hover {
  border-color: var(--accent-light);
}

.bk-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-primary, #0c0b0a);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.bk-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.bk-check input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.bk-check input:checked ~ span {
  color: var(--accent);
  font-weight: 400;
}

/* ─── ERSTTERMIN-BERATUNG (Intake) ─── */

.bk-intake {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.bk-intake__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(242,113,130,0.06) 0%, rgba(201,169,110,0.06) 100%);
  border-radius: var(--radius-md, 16px);
  border: 1px solid rgba(242,113,130,0.12);
}

.bk-intake__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: var(--radius-md, 16px);
  color: var(--text-inverse);
  flex-shrink: 0;
}

.bk-intake__title {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
  letter-spacing: 0;
}

.bk-intake__subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  opacity: 0.75;
  line-height: 1.4;
}

.bk-intake__step {
  animation: intakeStepIn 0.3s ease-out;
}
@keyframes intakeStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.bk-intake__step-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.bk-intake__next {
  margin-top: 16px;
}
.bk-intake__group {
  margin-bottom: 20px;
}

.bk-intake__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bk-optional {
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.8em;
}

/* Chip Grid */
.bk-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}

.bk-chip:hover {
  border-color: var(--accent-light);
  background: rgba(242,113,130,0.04);
}

.bk-chip.active {
  border-color: var(--accent);
  background: rgba(242,113,130,0.08);
  color: var(--accent-dark);
  font-weight: 500;
}

.bk-chip.active::before {
  content: '✓';
  font-size: 0.7em;
  margin-right: 2px;
}

/* Single-select chips: only one active */
.bk-chip-grid--single .bk-chip.active::before {
  content: '';
  margin-right: 0;
}

/* ── Customer Type Cards (Quick Capture Step) ── */
.bk-customer-type {
  text-align: center;
}
.bk-customer-type .bk-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.bk-customer-type .bk-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  min-height: 100px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}
.bk-customer-type .bk-chip:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(242,113,130,0.12);
}
.bk-customer-type .bk-chip.active {
  border-color: var(--accent);
  background: rgba(242,113,130,0.06);
  box-shadow: 0 4px 16px rgba(242,113,130,0.18);
  transform: translateY(-2px);
}
.bk-customer-type .bk-chip.active::before {
  content: none;
}
.bk-customer-type .bk-chip__icon {
  font-size: 1.6rem;
  line-height: 1;
}
.bk-customer-type .bk-quickcapture__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Health Slider */
.bk-health-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}

.bk-health-slider__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 50px;
}

.bk-health-slider__label--left { text-align: right; }
.bk-health-slider__label--right { text-align: left; }

.bk-health-slider__track {
  flex: 1;
  position: relative;
}

.bk-health-slider__track input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, #e8816b 0%, #f2c46b 50%, #7bc47f 100%);
  border-radius: 3px;
  outline: none;
}

.bk-health-slider__track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
}

.bk-health-slider__track input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
}

.bk-health-slider__value {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg-primary);
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  pointer-events: none;
}

/* Intake text input */
.bk-intake__text {
  width: 100%;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: var(--bg-primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.bk-intake__text:focus {
  border-color: var(--accent);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .bk-intake__header {
    padding: 14px;
    gap: 12px;
  }
  .bk-intake__title {
    font-size: 1.05rem;
  }
  .bk-health-slider {
    flex-wrap: wrap;
    gap: 6px;
  }
  .bk-health-slider__label {
    font-size: 0.68rem;
    min-width: 44px;
  }
}

/* Show personal, photos, confirm sections individually (not grouped) */
#sec-quickcapture.active,
#sec-personal.active,
#sec-photos.active,
#sec-confirm.active {
  display: block;
}

/* Ensure these sections show as standalone cards */
#sec-quickcapture.active,
#sec-personal.active,
#sec-photos.active {
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26, 24, 22, 0.04);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────────────────
   CATEGORY FILTER CARDS
   ───────────────────────────────────────────────────────────── */

.bk-cat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .bk-cat-cards { grid-template-columns: 1fr; }
}
.bk-cat-card {
  position: relative;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  font-family: inherit;
}
.bk-cat-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
  /* Gradient fallback when no image */
  background-color: var(--color-primary-dark, #d94f60);
  background-image: linear-gradient(135deg, var(--color-primary, #f27182) 0%, var(--color-primary-dark, #d94f60) 60%, #1a1816 100%);
}
.bk-cat-card[data-category="coiffeur"] .bk-cat-card__img {
  background-color: #d94f60;
  background-image: linear-gradient(135deg, #f27182 0%, #d94f60 60%, #1a1816 100%);
}
.bk-cat-card[data-category="lashes"] .bk-cat-card__img {
  background-color: var(--accent);
  background-image: linear-gradient(135deg, var(--accent) 0%, #a08550 60%, #1a1816 100%);
}
.bk-cat-card[data-category="spa"] .bk-cat-card__img {
  background-color: #6ea0c9;
  background-image: linear-gradient(135deg, #6ea0c9 0%, #4a7a9e 60%, #1a1816 100%);
}
.bk-cat-card:hover .bk-cat-card__img,
.bk-cat-card:focus .bk-cat-card__img { transform: scale(1.05); }
.bk-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.bk-cat-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--text-inverse);
  z-index: 1;
  text-align: left;
}
.bk-cat-card__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-inverse);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.bk-cat-card__title {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  margin: 0 0 4px 0;
}
.bk-cat-card__cta {
  font-size: .85rem;
  color: #fff;
  opacity: .9;
}

/* ─────────────────────────────────────────────────────────────
   BACK LINK
   ───────────────────────────────────────────────────────────── */

.bk-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: color .2s;
}
.bk-back-link:hover { color: var(--accent-dark); }

/* bk-step-back = oval outline button, consistent everywhere */
.bk-step-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--accent, #f27182);
  border: 1.5px solid var(--accent, #f27182);
  border-radius: 99px;
  padding: 10px 28px;
  font-size: .85rem;
  font-weight: 500;
  font-family: var(--font-body, 'Outfit', sans-serif);
  cursor: pointer;
  transition: all .2s;
  margin-top: 12px;
}
.bk-submit-wrap .bk-step-back {
  margin-top: 0;
  margin-bottom: 10px;
}
.bk-step-back:hover {
  background: rgba(242, 113, 130, .08);
}

/* ─────────────────────────────────────────────────────────────
   HAIR SLIDER SECTION
   ───────────────────────────────────────────────────────────── */

.bk-hair-slider-section {
  background: var(--bg-primary);
  border-radius: var(--radius-md, 16px);
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.bk-hair-slider-section h3 {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text-secondary);
}
.bk-hair-slider-section p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bk-range-slider-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.bk-range-slider-wrap { padding: 6px 0 4px; }
.bk-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-medium-gray, #c4c0bc);
  border-radius: 3px;
  outline: none;
}
.bk-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(242,113,130,.3);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.bk-range-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(242,113,130,.15), 0 2px 8px rgba(242,113,130,.3);
  transform: scale(1.15);
}
.bk-range-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(242,113,130,.3);
  cursor: pointer;
}
.bk-range-current {
  text-align: center;
  margin-bottom: 6px;
  font-size: .9rem;
  color: var(--text-secondary);
  transition: all .2s ease;
}
.bk-range-current strong {
  color: var(--accent);
  font-weight: 600;
}
.bk-range-current span {
  color: var(--text-muted);
  font-size: .85rem;
  margin-left: 4px;
}
.bk-range-endpoints {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: .72rem;
  color: var(--text-muted);
}
.bk-range-slider-label {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.bk-hair-preview img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md, 16px);
  display: none;
}
.bk-hair-preview img.active { display: block; }

/* ─────────────────────────────────────────────────────────────
   REVIEW CARDS (Booking page ticker)
   ───────────────────────────────────────────────────────────── */
.bk-reviews {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 20px;
  margin: -4px 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.bk-reviews::-webkit-scrollbar { display: none; }
.bk-reviews:empty { display: none; }

.bk-review-card {
  flex: 0 0 auto;
  width: 280px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  padding: 20px;
  scroll-snap-align: start;
  transition: all 0.3s var(--ease-out-expo, ease);
}
.bk-review-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 113, 130, 0.08);
}
.bk-review-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.bk-review-card__stars {
  color: var(--color-star, var(--accent-light));
  font-size: 13px;
  letter-spacing: 2px;
}
.bk-review-card__date {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}
.bk-review-card__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bk-review-card__author {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bk-review-card__author strong {
  color: var(--text-primary);
  font-weight: 600;
}
.bk-review-card--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  background: rgba(242, 113, 130, 0.06);
  border-color: rgba(242, 113, 130, 0.15);
}
.bk-review-card--badge:hover {
  background: rgba(242, 113, 130, 0.12);
  border-color: rgba(242, 113, 130, 0.3);
}
.bk-review-badge {
  text-align: center;
  display: block;
}
.bk-review-badge__stars {
  display: block;
  font-size: 22px;
  color: var(--color-star, var(--accent-light));
  font-weight: 700;
}
.bk-review-badge__count {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}
.bk-review-badge__source {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────
   SMART EXTRAS — Post-slot upsell
   ───────────────────────────────────────────────────────────── */
.smart-extras {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #faf8f6 0%, #fff 100%);
  border: 1px solid var(--accent-light);
  border-radius: 16px;
  animation: smartExtrasIn 0.4s ease-out;
}
@keyframes smartExtrasIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.smart-extras--dismissed {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.smart-extras__header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.smart-extras__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.smart-extras__header strong {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.smart-extras__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.smart-extras__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.smart-extras__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: var(--font-body, 'Outfit', sans-serif);
  text-align: left;
  width: 100%;
}
.smart-extras__item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.smart-extras__item--rec {
  border-color: var(--accent-light);
  background: rgba(242, 113, 130, 0.04);
}
.smart-extras__item--added {
  border-color: var(--color-success);
  background: rgba(56, 161, 105, 0.06);
  pointer-events: none;
}
.smart-extras__item--added .smart-extras__item-add {
  color: var(--color-success);
  font-weight: 500;
}
.smart-extras__item--unavail {
  opacity: 0.5;
  pointer-events: none;
  text-decoration: line-through;
}
.smart-extras__item--unavail .smart-extras__item-add {
  color: var(--color-error);
}
.smart-extras__item-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.smart-extras__item-meta {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.smart-extras__item-add {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.smart-extras__item-hint {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 2px;
  font-style: italic;
}
.smart-extras__skip {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--border);
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-md, 16px);
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.smart-extras__skip:hover {
  background: var(--text-muted);
  border-color: var(--text-secondary);
}
.smart-extras__skip--success {
  color: var(--color-success);
  font-weight: 500;
}
.smart-extras__skip--prominent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-inverse);
}
.smart-extras__skip--prominent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ─────────────────────────────────────────────────────────────
   STICKY BOOKING CART / SUMMARY BAR
   ───────────────────────────────────────────────────────────── */
.bk-cart {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 900;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 -4px 30px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  padding: 10px 14px;
  transform: translateY(0);
  transition: transform .3s ease;
  max-height: 35vh;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .bk-cart {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-md, 16px);
    max-height: 30vh;
  }
}
.bk-cart.hidden {
  transform: translateY(200%);
}
.bk-cart__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-cart__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Service line items */
.bk-cart__services {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bk-cart__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--text-secondary);
  padding: 2px 0;
}
.bk-cart__line-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 12px;
}
.bk-cart__line-name small {
  color: var(--text-muted);
  font-size: .7rem;
}
.bk-cart__line-price {
  font-weight: 600;
  flex-shrink: 0;
  font-size: .78rem;
}
/* Meta chips (staff + date/time) */
.bk-cart__meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}
.bk-cart__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.bk-cart__chip--staff {
  border-color: var(--accent-light);
  color: var(--accent-dark);
}
.bk-cart__chip--time {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.bk-cart__chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .7rem;
  color: var(--text-muted);
  padding: 0 0 0 2px;
  line-height: 1;
}
/* Total row */
.bk-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  border-top: 1.5px solid var(--text-secondary);
}
.bk-cart__total-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 600;
}
.bk-cart__total-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-body, sans-serif);
}
/* Push page content up so cart doesn't cover it */
body:has(.bk-cart[style*="display:block"]) main,
body:has(.bk-cart:not([style*="display:none"])) .booking-section {
  padding-bottom: 120px;
}
/* Hide Neva widget on booking page when cart is visible to prevent overlap */
body:has(.bk-cart[style*="display:block"]) .neva-widget-trigger,
body:has(.bk-cart:not([style*="display:none"])) .neva-widget-trigger {
  bottom: calc(35vh + 20px) !important;
}
@media (min-width: 1200px) {
  /* Desktop: floating sidebar next to form (no grid change!) */
  .bk-desktop-grid {
    display: block; /* No grid — form stays at 680px */
  }
  .bk-desktop-grid__form {
    /* Form keeps its normal flow */
  }
  .bk-desktop-grid__sidebar {
    position: fixed;
    /* Center-align with form: form is 680px centered, sidebar starts at right edge + gap */
    left: calc(50% + 340px + 20px);
    top: 80px;
    width: 260px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 100;
    display: none;
  }
  .bk-desktop-grid.has-sidebar .bk-desktop-grid__sidebar {
    display: block;
  }

  /* Hide floating cart + badge when sidebar active */
  body:has(.bk-desktop-grid.has-sidebar) .bk-cart {
    display: none !important;
  }
  body:has(.bk-desktop-grid.has-sidebar) .sci-float {
    display: none !important;
  }

  /* Sidebar cart styling */
  .bk-sidebar-cart {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
  }
  .bk-sidebar-cart__title {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
    margin: 0 0 12px;
  }
  .bk-sidebar-cart .bk-cart__line {
    font-size: .75rem;
    padding: 2px 0;
  }
  .bk-sidebar-cart .bk-cart__line-price {
    font-size: .75rem;
  }
  .bk-sidebar-cart .bk-cart__total {
    margin-top: 8px;
    padding-top: 8px;
  }
  .bk-sidebar-cart .bk-cart__total-price {
    font-size: 1.1rem;
  }
  .bk-sidebar-cart .bk-cart__alt {
    margin-top: 12px;
  }
  .bk-sidebar-cart .bk-cart__alt-card {
    padding: 6px 8px;
  }
  .bk-sidebar-cart .bk-cart__alt-avatar {
    width: 24px;
    height: 24px;
  }
  .bk-sidebar-cart .bk-cart__alt-name {
    font-size: .7rem;
  }
  .bk-sidebar-cart .bk-cart__alt-amount {
    font-size: .7rem;
  }
  .bk-sidebar-cart .bk-cart__alt-saving {
    font-size: .55rem;
    padding: 1px 6px;
  }
  /* SCI hint in sidebar */
  .bk-sidebar-sci {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin-bottom: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md, 16px);
  }
  .bk-sidebar-sci--active {
    background: var(--bg-success);
  }
}
/* Between 1024-1199: keep floating cart, no sidebar */
@media (min-width: 1024px) and (max-width: 1199px) {
  .bk-desktop-grid { display: block; }
  .bk-desktop-grid__sidebar { display: none !important; }
}

/* Hair Slider Info Button */
.bk-slider-info {
  background: rgba(242,113,130,.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--accent, #f27182);
  padding: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: middle;
  transition: all .2s;
  font-size: 14px;
  overflow: visible;
}
.bk-slider-info svg {
  overflow: visible;
  width: 16px;
  height: 16px;
  line-height: 1;
}
@keyframes pulseInfo {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.bk-slider-info:hover {
  color: #fff;
  background: var(--accent);
  animation: none;
  opacity: 1;
}
/* Hair Info Popup */
.bk-hair-info-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.bk-hair-info-popup__card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  padding: 24px;
  max-width: 360px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,.15);
}
[data-theme="dark"] .bk-hair-info-popup__card {
  background: rgba(20,18,16,.92);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-color: rgba(255,255,255,.1);
}
.bk-hair-info-popup__card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.bk-hair-info-popup__card p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.bk-hair-info-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart alternative suggestions */
.bk-cart__alt {
  flex-basis: 100%;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* Alternative staff cards in cart */
.bk-cart__alt-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  cursor: pointer;
  transition: all .2s;
}
.bk-cart__alt-card:hover {
  border-color: var(--accent);
  background: rgba(242,113,130,.04);
}
.bk-cart__alt-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bk-cart__alt-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 600;
}
.bk-cart__alt-info {
  flex: 1;
  min-width: 0;
}
.bk-cart__alt-name {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.bk-cart__alt-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1px 6px;
  border-radius: 4px;
  margin-top: 2px;
}
.bk-cart__alt-tag--save {
  background: var(--bg-success);
  color: var(--color-success-dark);
}
.bk-cart__alt-tag--up {
  background: var(--bg-warning);
  color: var(--color-warning);
}
.bk-cart__alt-subtitle {
  display: block;
  font-size: .6rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.bk-cart__alt-price {
  text-align: right;
  flex-shrink: 0;
}
.bk-cart__alt-amount {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-secondary);
}
/* Savings badge — green, prominent */
.bk-cart__alt-saving {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  color: var(--text-inverse);
  background: var(--color-success);
  padding: 2px 8px;
  border-radius: var(--radius-md, 16px);
  margin-bottom: 2px;
  white-space: nowrap;
}
/* Save card green border accent */
.bk-cart__alt-card--save {
  border-color: var(--border-success);
}
.bk-cart__alt-card--save:hover {
  border-color: var(--color-success);
  background: var(--bg-success);
}
/* Upgrade card gold accent */
.bk-cart__alt-card--up {
  border-color: var(--bg-warning);
}
.bk-cart__alt-card--up:hover {
  border-color: var(--accent);
  background: #fffbeb;
}
/* "anderer Tag" availability hint */
.bk-cart__alt-avail {
  display: inline-block;
  font-size: .55rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1px;
}
/* Dim cards that need another day */
.bk-cart__alt-card[data-available="0"] {
  opacity: .7;
}
.bk-cart__alt-card[data-available="0"]:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   GUIDED BOOKING MODE — FULLSCREEN PREMIUM WIZARD
   Every screen = immersive, dark, sexy, neuromarketing-optimized
   ═══════════════════════════════════════════════════════════════ */

/* ── Base: Dark immersive canvas ── */
body.guided-mode {
  background: #0c0b0a;
  color: #f5f3f0;
  overflow-x: hidden;
}
body.guided-mode main,
body.guided-mode .booking-section {
  background: transparent !important;
}
body.guided-mode::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(242,113,130,.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body.guided-mode .booking-header,
body.guided-mode .bk-hero,
body.guided-mode #bk-reviews,
body.guided-mode .bk-stepper,
body.guided-mode .footer,
body.guided-mode #bk-cart,
body.guided-mode .bk-desktop-grid__sidebar { display: none !important; }

body.guided-mode .booking-container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* ── Progress bar: thin glowing coral ── */
.gd-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.04);
  z-index: 200;
}
.gd-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #f27182, #f7949f, #f27182);
  background-size: 200% 100%;
  animation: gdProgressShimmer 2s ease-in-out infinite;
  transition: width .6s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 16px rgba(242,113,130,.5), 0 0 4px rgba(242,113,130,.8);
}
@keyframes gdProgressShimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* ── Header: minimal, glass ── */
.gd-header {
  position: fixed;
  top: 2px;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 199;
  background: rgba(12,11,10,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.gd-header__logo img { height: 18px; filter: brightness(10); opacity: .7; }
.gd-header__step {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Each section = immersive fullscreen step ── */
body.guided-mode .bk-section {
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: none;
  padding: 72px 24px 48px;
  box-shadow: none;
  color: #f5f3f0;
  position: relative;
  z-index: 1;
}
body.guided-mode .bk-section.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: gdStepIn .6s cubic-bezier(.16, 1, .3, 1);
}
@keyframes gdStepIn {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
body.guided-mode .bk-section.completed { display: none; }

/* ── Section header: large display text ── */
body.guided-mode .bk-section__header {
  padding: 0;
  margin-bottom: 32px;
  border: none;
  background: none;
  cursor: default;
  text-align: center;
  width: 100%;
  max-width: 640px;
}
body.guided-mode .bk-badge { display: none; }
body.guided-mode .bk-edit-hint { display: none; }
body.guided-mode .bk-section__title {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -.01em;
}

/* sec-quickcapture customer-type hiding handled by JS (advanceToAuth) */

/* ── Section body: centered, constrained ── */
body.guided-mode .bk-section__body {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

/* ── Back button: subtle, elegant ── */
body.guided-mode .bk-step-back {
  color: rgba(255,255,255,.35);
  background: none;
  border: none;
  font-size: .8rem;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 20px;
  transition: color .2s;
  letter-spacing: .03em;
}
body.guided-mode .bk-step-back:hover { color: rgba(255,255,255,.7); }

/* ── Form elements: glass morphism ── */
body.guided-mode .bk-input,
body.guided-mode .admin__input,
body.guided-mode input[type="text"],
body.guided-mode input[type="email"],
body.guided-mode input[type="tel"],
body.guided-mode input[type="date"],
body.guided-mode input[type="number"],
body.guided-mode select,
body.guided-mode textarea {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-radius: var(--radius-md, 16px);
  padding: 16px 18px;
  font-size: .95rem;
  transition: all .2s;
}
body.guided-mode .bk-input:focus,
body.guided-mode input:focus,
body.guided-mode select:focus,
body.guided-mode textarea:focus {
  border-color: var(--accent, #f27182) !important;
  background: rgba(255,255,255,.07) !important;
  box-shadow: 0 0 0 3px rgba(242,113,130,.1);
  outline: none;
}
body.guided-mode .bk-input::placeholder,
body.guided-mode input::placeholder {
  color: rgba(255,255,255,.25);
}

/* ── Screen 1: Customer Type — premium welcome ── */
body.guided-mode .bk-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
body.guided-mode .bk-type-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  color: #fff;
  padding: 40px 24px;
  min-height: 160px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}
body.guided-mode .bk-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 120%, rgba(242,113,130,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
body.guided-mode .bk-type-card:hover::before { opacity: 1; }
body.guided-mode .bk-type-card:hover {
  border-color: rgba(242,113,130,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 30px rgba(242,113,130,.08);
}
body.guided-mode .bk-type-card:active {
  transform: scale(.98);
}
body.guided-mode .bk-type-card.active {
  border-color: var(--accent);
  background: rgba(242,113,130,.06);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(242,113,130,.15);
}
body.guided-mode .bk-type-card__icon { font-size: 2.4rem; position: relative; z-index: 1; }
body.guided-mode .bk-type-card__title {
  font-family: var(--font-display, 'Eros', serif);
  font-size: 1.25rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
body.guided-mode .bk-type-card__desc {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  position: relative;
  z-index: 1;
}
body.guided-mode .bk-type-card__title { color: #fff; }
body.guided-mode .bk-type-card__icon { font-size: 1.5rem; }
body.guided-mode #ct-new-panel,
body.guided-mode #ct-existing-panel,
body.guided-mode #ct-magic-sent,
body.guided-mode #ct-recognized { color: #fff; }
body.guided-mode #ct-new-panel p,
body.guided-mode #ct-existing-panel p { color: rgba(255,255,255,.6); }
body.guided-mode #ct-new-panel .ds-btn,
body.guided-mode #ct-existing-panel .ds-btn,
body.guided-mode #ct-new-panel .btn,
body.guided-mode #ct-existing-panel .btn,
body.guided-mode .ct-btn {
  background: var(--accent, #f27182);
  color: #fff;
  border: none;
}
/* Customer type step: make cards prominent */
body.guided-mode #sec-customer-type .bk-section__body { max-width: 480px; }
body.guided-mode .bk-type-card { padding: 32px 24px; border-radius: 20px; min-height: 120px; }
body.guided-mode .bk-type-card__icon { font-size: 2rem; }
/* ── CTA Buttons: pill-shaped, glowing ── */
body.guided-mode .bk-continue-btn,
body.guided-mode .ds-btn-primary,
body.guided-mode .btn--primary {
  background: var(--accent, #f27182) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(242,113,130,.25);
  font-family: var(--font-body, 'Outfit', sans-serif);
}
body.guided-mode .bk-continue-btn:hover,
body.guided-mode .ds-btn-primary:hover {
  box-shadow: 0 8px 32px rgba(242,113,130,.4);
  transform: translateY(-2px);
}
body.guided-mode .bk-back-link,
body.guided-mode .bk-link-btn,
body.guided-mode .ct-back {
  color: rgba(255,255,255,.35) !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  font-size: .8rem;
}
body.guided-mode #ct-new-panel a,
body.guided-mode #ct-existing-panel a { color: var(--accent, #f27182); }
body.guided-mode .form-group label { color: rgba(255,255,255,.7); }

/* Dark labels/text */
body.guided-mode label,
body.guided-mode .form-group label { color: rgba(255,255,255,.7); }
body.guided-mode p { color: rgba(255,255,255,.6); }
body.guided-mode .gd-subtitle { color: rgba(255,255,255,.5); }
body.guided-mode .bk-required { color: var(--accent); }

/* Category cards dark */
body.guided-mode .gd-card {
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
body.guided-mode .gd-card:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,.05);
}
body.guided-mode .gd-card.selected {
  border-color: var(--accent);
  background: rgba(242,113,130,.06);
  box-shadow: 0 0 0 3px rgba(242,113,130,.15);
}
body.guided-mode .gd-card__title { color: #fff; }
body.guided-mode .gd-card__desc { color: rgba(255,255,255,.5); }
body.guided-mode .gd-card__meta { color: rgba(255,255,255,.4); }
body.guided-mode .gd-card--service .gd-card__title { color: #fff; }
body.guided-mode .gd-card::after { display: none; }

/* ── Screen 6: Staff — photo-first, premium ── */
body.guided-mode .staff-card {
  border-color: rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
}
body.guided-mode .staff-card:hover {
  border-color: rgba(242,113,130,.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
body.guided-mode .staff-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 16px 48px rgba(242,113,130,.2);
}
body.guided-mode .staff-card--any {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
  border-radius: 20px;
}
body.guided-mode .staff-card--neva-ai {
  background: linear-gradient(135deg, rgba(242,113,130,.06), rgba(167,139,250,.06));
  border-color: rgba(242,113,130,.15);
  border-radius: 20px;
}
body.guided-mode .staff-card__name { color: #fff; }
body.guided-mode .staff-card__role { color: rgba(255,255,255,.5); }
body.guided-mode .staff-card__price { color: var(--accent); }
body.guided-mode .staff-card__badge { border-radius: var(--radius-md, 16px); }

/* Upsell card dark */
body.guided-mode .gd-upsell {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
body.guided-mode .gd-upsell::before {
  background: linear-gradient(90deg, var(--accent, #f27182), #f7949f, var(--accent, #f27182));
}
body.guided-mode .gd-upsell__badge { background: var(--accent, #f27182); color: #fff; }
body.guided-mode .gd-upsell__title { color: #fff; }
body.guided-mode .gd-upsell__text { color: rgba(255,255,255,.65); }
body.guided-mode .gd-upsell--gold {
  background: linear-gradient(135deg, rgba(212,168,83,.1), rgba(26,24,22,.95));
  border-color: rgba(212,168,83,.3);
}
body.guided-mode .gd-upsell--gold::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
body.guided-mode .gd-upsell--gold .gd-upsell__title { color: var(--accent-light); }
body.guided-mode .gd-upsell--gold .gd-upsell__text { color: rgba(255,255,255,.65); }
body.guided-mode .gd-upsell--gold .gd-upsell__badge { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #1a1816; }
body.guided-mode .gd-upsell--gold .gd-btn--primary { background: linear-gradient(135deg, var(--accent), #c49a42); color: #1a1816; font-weight:700; }
body.guided-mode .gd-upsell--gold .gd-btn--primary:hover { background: linear-gradient(135deg, var(--accent-light), var(--accent)); }
body.guided-mode .gd-upsell--gold .gd-btn--ghost { border-color: rgba(212,168,83,.3); color: rgba(255,255,255,.6); }

/* Buttons dark */
body.guided-mode .gd-btn--ghost {
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
body.guided-mode .gd-btn--ghost:hover {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

/* CTA button in dark mode */
body.guided-mode .ds-btn-primary,
body.guided-mode .btn--primary {
  background: var(--accent, #f27182);
  color: #fff;
}

/* ── Screen 5: Hair sliders — modern, tactile ── */
body.guided-mode .bk-range-slider-wrap {
  padding: 12px 0;
}
body.guided-mode .bk-range-slider {
  background: rgba(255,255,255,.08);
  height: 8px;
  border-radius: 4px;
}
body.guided-mode .bk-range-slider::-webkit-slider-thumb {
  width: 28px; height: 28px;
  background: var(--accent, #f27182);
  border: 3px solid #0c0b0a;
  box-shadow: 0 0 12px rgba(242,113,130,.4);
}
body.guided-mode .bk-range-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--accent, #f27182);
  border: 3px solid #0c0b0a;
  box-shadow: 0 0 12px rgba(242,113,130,.4);
}
body.guided-mode .bk-range-current { text-align: center; }
body.guided-mode .bk-range-current strong { color: var(--accent); font-size: 1.1rem; }
body.guided-mode .bk-range-current span { color: rgba(255,255,255,.45); }
body.guided-mode .bk-range-endpoints { color: rgba(255,255,255,.2); font-size: .7rem; }
body.guided-mode .bk-range-slider-label { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 500; }
body.guided-mode .bk-slider-info { color: var(--accent); animation: pulseInfo 2s ease-in-out infinite; }

/* Extras dark */
body.guided-mode .gd-extra-item {
  border-color: rgba(255,255,255,.1);
  color: #fff;
}
body.guided-mode .gd-extra-item:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,.03);
}

/* ── Screen 7: Calendar — clean, dark ── */
body.guided-mode .calendar { color: #fff; }
body.guided-mode .calendar-header { color: #fff; }
body.guided-mode .calendar-nav { color: rgba(255,255,255,.5); background: none; border: none; }
body.guided-mode .calendar-nav:hover { color: #fff; }
body.guided-mode .calendar-day-label { color: rgba(255,255,255,.3); }
body.guided-mode .calendar-day:not(.disabled) { color: #fff; border-radius: var(--radius-md, 16px); }
body.guided-mode .calendar-day:not(.disabled):hover { background: rgba(255,255,255,.06); }
body.guided-mode .calendar-day.selected { background: var(--accent); color: #fff; }
body.guided-mode .calendar-day.disabled { color: rgba(255,255,255,.12); }
body.guided-mode .calendar-day.today { border-color: var(--accent); }
body.guided-mode .timeslot-btn {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  border-radius: var(--radius-md, 16px);
  transition: all .2s;
}
body.guided-mode .timeslot-btn:hover {
  border-color: rgba(242,113,130,.4);
  background: rgba(242,113,130,.06);
}
body.guided-mode .timeslot-btn.selected {
  border-color: var(--accent);
  background: rgba(242,113,130,.1);
  box-shadow: 0 0 0 2px var(--accent);
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  body.guided-mode .bk-section.active {
    padding: 68px 20px 40px;
    justify-content: flex-start;
    min-height: auto;
  }
  body.guided-mode .bk-section__title {
    font-size: 1.5rem;
    text-align: center;
  }
  body.guided-mode .bk-section__body {
    max-width: 100%;
  }
  body.guided-mode .bk-type-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body.guided-mode .bk-type-card {
    min-height: auto;
    padding: 28px 20px;
  }
  body.guided-mode .gd-looks {
    grid-template-columns: 1fr;
  }
  body.guided-mode .gd-cards--category {
    grid-template-columns: 1fr;
  }
  body.guided-mode .gd-upsell {
    padding: 24px 16px;
  }
  body.guided-mode .gd-upsell__actions {
    flex-direction: column;
  }
  body.guided-mode .gd-btn {
    width: 100%;
  }
}

.gd-subtitle {
  font-size: .95rem;
  color: var(--text-muted, #999);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Fade-in animation for guided sections */
@keyframes gdFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.bk-guided-section.active .bk-section__body {
  animation: gdFadeUp .4s ease-out;
}

/* Category & Service Cards */
.gd-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .gd-cards { grid-template-columns: 1fr; }
}
.gd-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 20px;
  background: var(--bg-primary, #fff);
  cursor: pointer;
  transition: all .25s ease;
  font-family: inherit;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.gd-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,113,130,.04), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.gd-card:hover::after { opacity: 1; }
.gd-card:hover {
  border-color: var(--accent, #f27182);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.gd-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.gd-card.selected {
  border-color: var(--accent, #f27182);
  background: rgba(242,113,130,.05);
  box-shadow: 0 0 0 3px rgba(242,113,130,.12);
}
.gd-card.selected::before {
  content: '\2713';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--accent, #f27182);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  z-index: 1;
}
.gd-card__icon {
  margin-bottom: 14px;
  color: var(--accent, #f27182);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242,113,130,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gd-card__title {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: 1.15rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.gd-card__desc {
  font-size: .8rem;
  color: var(--text-muted, #999);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.gd-card__meta {
  display: flex;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-muted, #999);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.gd-card__meta span { white-space: nowrap; }

/* Service cards: left-aligned, more compact */
/* Category cards with images */
.gd-cards--category { gap: 16px; }
.gd-card--category {
  position: relative;
  aspect-ratio: 4/3;
  padding: 0;
  overflow: hidden;
  justify-content: flex-end;
}
.gd-card--category .gd-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.gd-card--category:hover .gd-card__image { transform: scale(1.05); }
.gd-card--category .gd-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.gd-card--category .gd-card__content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #fff;
  text-align: left;
  width: 100%;
}
.gd-card--category .gd-card__title {
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.gd-card--category .gd-card__desc {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
}
.gd-card--category.selected { box-shadow: 0 0 0 3px var(--accent, #f27182); }

/* 24Kerats Gold Upsell */
.gd-upsell--gold {
  background: linear-gradient(135deg, #fffbf0, #fff8e7);
  border-color: #e6d5a8;
}
.gd-upsell--gold::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
.gd-upsell--gold .gd-upsell__badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}
.gd-upsell--gold .gd-upsell__title {
  color: var(--text-primary);
}
.gd-upsell--gold .gd-btn--primary {
  background: linear-gradient(135deg, var(--accent), #c49a42);
}
.gd-upsell--gold .gd-btn--primary:hover {
  background: linear-gradient(135deg, #c49a42, #b08d3a);
}
.gd-upsell--gold .gd-btn--ghost {
  border-color: #e6d5a8;
  color: var(--text-secondary);
}

/* Look Cards — Instagram-style visual service selection */
.gd-looks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .gd-looks { grid-template-columns: 1fr; }
}
.gd-look {
  position: relative;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--color-dark-gray, #3a3634);
  padding: 0;
  font-family: inherit;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  animation: gdLookIn .5s ease-out both;
  transition: transform .3s ease, box-shadow .3s ease;
}
@keyframes gdLookIn {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.gd-look:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.gd-look:active {
  transform: scale(.97);
}
.gd-look.selected {
  box-shadow: 0 0 0 3px var(--accent, #f27182), 0 16px 40px rgba(242,113,130,.2);
}
.gd-look.selected::after {
  content: '\2713';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--accent, #f27182);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  z-index: 3;
  animation: gdPop .3s ease-out;
}
@keyframes gdPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.gd-look__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .5s ease;
}
.gd-look:hover .gd-look__img {
  transform: scale(1.06);
}
.gd-look__img--gradient {
  background: linear-gradient(135deg, var(--accent, #f27182) 0%, var(--color-primary-dark, #d94f60) 60%, #1a1816 100%);
}
.gd-look__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.25) 40%,
    transparent 70%
  );
  z-index: 1;
}
.gd-look__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.gd-look__name {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.gd-look__sub {
  font-size: .78rem;
  opacity: .85;
  line-height: 1.4;
  max-width: 200px;
}
.gd-look__dur {
  font-size: .7rem;
  opacity: .6;
  margin-top: 6px;
  letter-spacing: .02em;
}

.gd-cards--services {
  grid-template-columns: 1fr;
}
.gd-cards--services .gd-card {
  text-align: left;
  align-items: flex-start;
  padding: 18px 20px;
  flex-direction: row;
  gap: 14px;
}
.gd-cards--services .gd-card__title {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.gd-cards--services .gd-card__desc {
  font-size: .78rem;
  margin-top: 4px;
}

/* Upsell Card */
.gd-upsell {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 20px;
  background: var(--bg-primary, #fff);
  position: relative;
  overflow: hidden;
}
.gd-upsell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #f27182), var(--color-primary-light, #f7949f), var(--accent, #f27182));
}
.gd-upsell__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--accent, #f27182);
  color: #fff;
  margin-bottom: 12px;
}
.gd-upsell__title {
  font-family: var(--font-display, 'Eros', Georgia, serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 0 0 12px;
}
.gd-upsell__text {
  font-size: .9rem;
  color: var(--text-muted, #999);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 12px;
}
.gd-upsell__price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent, #f27182);
  margin-bottom: 16px;
}
.gd-upsell__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.gd-btn {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  border: none;
  min-width: 140px;
}
.gd-btn--primary {
  background: var(--accent, #f27182);
  color: #fff;
}
.gd-btn--primary:hover {
  background: var(--color-primary-dark, #d94f60);
  transform: translateY(-2px);
}
.gd-btn--ghost {
  background: transparent;
  border: 1px solid var(--border, #e5e5e5);
  color: var(--text-secondary, #666);
}
.gd-btn--ghost:hover {
  border-color: var(--accent-light);
}

/* Extras (checkboxes) */
.gd-extras {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gd-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: var(--radius-md, 16px);
  cursor: pointer;
  transition: border-color .2s;
  font-size: .9rem;
}
.gd-extra-item:hover {
  border-color: var(--accent, #f27182);
}
.gd-extra-item input[type="checkbox"] {
  accent-color: var(--accent, #f27182);
  width: 18px;
  height: 18px;
}
.gd-extra-item__name {
  flex: 1;
}
.gd-extra-item__price {
  font-size: .8rem;
  color: var(--accent, #f27182);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   DARK MODE — Booking Form
   Matches booking popup glassmorphism + neon accent design
   ============================================================ */
[data-theme="dark"] .booking-section {
  background: var(--bg-primary);
}

/* Section cards — glassmorphic */
[data-theme="dark"] .bk-section {
  background: var(--glass-bg, rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="dark"] .bk-section.active {
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
[data-theme="dark"] .bk-section__title {
  color: var(--text-primary);
}

/* Category cards */
[data-theme="dark"] .bk-cat-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .bk-cat-card:hover {
  border-color: rgba(242,113,130,.4);
  background: rgba(242,113,130,.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 20px rgba(242,113,130,.08);
}
[data-theme="dark"] .bk-cat-card.selected {
  border-color: var(--accent);
  background: rgba(242,113,130,.08);
  box-shadow: 0 0 16px rgba(242,113,130,.2);
}
[data-theme="dark"] .bk-cat-card__label {
  color: var(--text-primary);
}

/* Staff cards */
[data-theme="dark"] .staff-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .staff-card:hover {
  border-color: rgba(242,113,130,.4);
  background: rgba(242,113,130,.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 16px rgba(242,113,130,.1);
}
[data-theme="dark"] .staff-card.selected {
  border-color: var(--accent);
  background: rgba(242,113,130,.08);
}
[data-theme="dark"] .staff-card__name {
  color: var(--text-primary);
}
[data-theme="dark"] .staff-card__role {
  color: var(--text-secondary);
}

/* Buttons — glass + neon glow */
[data-theme="dark"] .bk-continue-btn {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(242,113,130,.25);
}
[data-theme="dark"] .bk-continue-btn:hover {
  box-shadow: 0 0 24px rgba(242,113,130,.4), 0 8px 24px rgba(0,0,0,.3);
}

/* Chips */
[data-theme="dark"] .bk-chip {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--text-secondary);
}
[data-theme="dark"] .bk-chip:hover {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.06);
}
[data-theme="dark"] .bk-chip.active {
  border-color: var(--accent);
  background: rgba(242,113,130,.1);
  color: var(--accent);
}

/* Form inputs */
[data-theme="dark"] .bk-section input[type="text"],
[data-theme="dark"] .bk-section input[type="email"],
[data-theme="dark"] .bk-section input[type="tel"],
[data-theme="dark"] .bk-section input[type="date"],
[data-theme="dark"] .bk-section input[type="number"],
[data-theme="dark"] .bk-section textarea,
[data-theme="dark"] .bk-section select,
[data-theme="dark"] .auth-input-row input {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--text-primary);
}
[data-theme="dark"] .bk-section input:focus,
[data-theme="dark"] .bk-section textarea:focus,
[data-theme="dark"] .bk-section select:focus,
[data-theme="dark"] .auth-input-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242,113,130,.1);
}

/* Calendar */
[data-theme="dark"] .calendar-wrapper,
[data-theme="dark"] .timeslots-wrapper {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .calendar-nav__btn {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
}
[data-theme="dark"] .calendar-nav__btn:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}
[data-theme="dark"] .calendar-nav__btn:disabled {
  opacity: 0.25;
}
[data-theme="dark"] .calendar-nav__title {
  color: var(--text-primary);
}
[data-theme="dark"] .calendar-day {
  color: var(--text-secondary);
}
[data-theme="dark"] .calendar-day:hover {
  background: rgba(242,113,130,.08);
}
[data-theme="dark"] .calendar-day.selected {
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .calendar-day.disabled {
  color: rgba(255,255,255,.15);
}
[data-theme="dark"] .calendar-day.today {
  border-color: var(--accent);
}

/* Time slots */
[data-theme="dark"] .timeslot {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: var(--text-secondary);
}
[data-theme="dark"] .timeslot:hover {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.06);
}
[data-theme="dark"] .timeslot.selected {
  border-color: var(--accent);
  background: rgba(242,113,130,.1);
  color: var(--accent);
}

/* Summary card */
[data-theme="dark"] .summary-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .summary-card__row {
  border-color: rgba(255,255,255,.06);
}

/* Addon cards */
[data-theme="dark"] .bk-addons__title {
  border-color: rgba(255,255,255,.08);
}

/* Stepper */
[data-theme="dark"] .bk-stepper__step {
  color: var(--text-muted);
}
[data-theme="dark"] .bk-stepper__step.active .bk-stepper__num {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px rgba(242,113,130,.3);
}
[data-theme="dark"] .bk-stepper__step.completed .bk-stepper__num {
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .bk-stepper__line {
  background: rgba(255,255,255,.08);
}

/* Badge */
[data-theme="dark"] .bk-badge {
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .bk-section.completed .bk-badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
}
[data-theme="dark"] .bk-trust-inline {
  color: rgba(255,255,255,.5);
}

/* SCI Float */
[data-theme="dark"] .sci-float {
  background: var(--glass-bg, rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Review cards (inline in buchen/index.php) handled by inline styles */

/* Auth section */
[data-theme="dark"] .auth-error {
  background: rgba(242,113,130,.08);
  border-color: rgba(242,113,130,.2);
}

/* Photo upload */
[data-theme="dark"] .photo-upload-zone {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .photo-upload-zone:hover {
  border-color: var(--accent);
  background: rgba(242,113,130,.04);
}

/* Intake questionnaire */
[data-theme="dark"] .intake-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}

/* Modal overlays */
[data-theme="dark"] .bk-modal {
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,.1);
}

/* Type cards (Neukunde/Bestandskunde) */
[data-theme="dark"] .bk-type-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="dark"] .bk-type-card:hover {
  border-color: rgba(242,113,130,.4);
  background: rgba(255,255,255,.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
[data-theme="dark"] .bk-type-card.active {
  border-color: var(--accent);
  background: rgba(242,113,130,.08);
  box-shadow: 0 0 16px rgba(242,113,130,.2);
}
[data-theme="dark"] .bk-type-card__icon {
  background: rgba(255,255,255,.06);
}
[data-theme="dark"] .bk-type-card:hover .bk-type-card__icon {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(242,113,130,.4);
}
[data-theme="dark"] .bk-type-card__title {
  color: var(--text-primary);
}
[data-theme="dark"] .bk-type-card__desc {
  color: var(--text-secondary);
}

/* Customer type chips */
[data-theme="dark"] .bk-customer-type .bk-chip {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .bk-customer-type .bk-chip:hover {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.06);
}

/* Hair slider section */
[data-theme="dark"] .bk-hair-slider-section {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .bk-range-slider {
  background: rgba(255,255,255,.12);
}
[data-theme="dark"] .bk-range-slider::-webkit-slider-thumb {
  border-color: var(--bg-primary);
  box-shadow: 0 0 8px rgba(242,113,130,.4);
}
[data-theme="dark"] .bk-slider-info {
  background: rgba(242,113,130,.15);
}
[data-theme="dark"] .bk-slider-info:hover {
  background: var(--accent);
  color: #fff;
}

/* Back button — link style in dark mode */
[data-theme="dark"] .bk-btn-back {
  color: var(--accent);
}
[data-theme="dark"] .bk-btn-back:hover {
  opacity: 0.7;
}

/* Service accordion */
[data-theme="dark"] .svc-accordion {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .svc-accordion:hover {
  border-color: rgba(242,113,130,.2);
}
[data-theme="dark"] .svc-accordion.open {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(242,113,130,.1);
}
[data-theme="dark"] .svc-accordion__header {
  color: var(--text-primary);
}

/* Service cards */
[data-theme="dark"] .bk-section .service-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .bk-section .service-card:hover {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.04);
}
[data-theme="dark"] .bk-section .service-card.selected {
  border-color: var(--accent);
  background: rgba(242,113,130,.06);
  box-shadow: 0 0 0 1px var(--accent), 0 0 12px rgba(242,113,130,.15);
}
[data-theme="dark"] .bk-section .service-card--most-booked {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.04);
}

/* Service checkbox */
[data-theme="dark"] .service-card__check {
  border-color: rgba(255,255,255,.15);
}
[data-theme="dark"] .bk-section .service-card.selected .service-card__check {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(242,113,130,.3);
}

/* Service info button */
[data-theme="dark"] .service-card__info-btn {
  background: transparent;
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
}
[data-theme="dark"] .service-card__info-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Service badge */
[data-theme="dark"] .service-card__badge {
  background: rgba(242,113,130,.15);
}
[data-theme="dark"] .service-card__badge--star {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(242,113,130,.3);
}

/* Timeslots */
[data-theme="dark"] .timeslot-btn {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
  color: var(--text-secondary);
}
[data-theme="dark"] .timeslot-btn:hover {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.06);
}
[data-theme="dark"] .timeslot-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px rgba(242,113,130,.3);
}
[data-theme="dark"] .timeslot-expand-btn {
  border-color: rgba(255,255,255,.12);
  color: var(--text-muted);
}

/* Review cards */
[data-theme="dark"] .bk-review-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="dark"] .bk-review-card:hover {
  border-color: rgba(242,113,130,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
[data-theme="dark"] .bk-review-card--badge {
  background: rgba(242,113,130,.08);
  border-color: rgba(242,113,130,.2);
}

/* Addon radio cards */
[data-theme="dark"] .bk-addon-radio__card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .bk-addon-radio__card::after {
  border-color: rgba(255,255,255,.15);
}
[data-theme="dark"] .bk-addon-radio input:checked + .bk-addon-radio__card::after {
  box-shadow: inset 0 0 0 3px var(--bg-primary);
}
[data-theme="dark"] .bk-addon-check__card::after {
  border-color: rgba(255,255,255,.15);
}
[data-theme="dark"] .bk-addon-radio input:checked + .bk-addon-radio__card {
  border-color: var(--accent);
  background: rgba(242,113,130,.06);
}

/* Addon check cards (kerats etc.) */
[data-theme="dark"] .bk-addon-check__card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .bk-addon-check input:checked + .bk-addon-check__card {
  border-color: var(--accent);
  background: rgba(242,113,130,.06);
}
[data-theme="dark"] .bk-addon-check__card--gold {
  border-color: rgba(242,113,130,.3);
  background: rgba(242,113,130,.04);
}
[data-theme="dark"] .bk-addon-rec-badge {
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .bk-addon-check__name,
[data-theme="dark"] .bk-addon-radio__name {
  color: var(--text-primary);
}
[data-theme="dark"] .bk-addon-check__price {
  color: var(--accent);
}

/* Staff badge readability */
[data-theme="dark"] .staff-card__badge {
  background: rgba(0,0,0,.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Addon notice */
[data-theme="dark"] .bk-addon-notice,
[data-theme="dark"] .svc-color-notice {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: var(--text-secondary);
}

/* Guided mode inherits dark mode automatically */
