/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #f8f5f7;
}

h1, h2, h3, p { margin-top: 0; }
button { font-family: inherit; cursor: pointer; }

/* ── Page shell (shared) ───────────────────────────────────────────────────── */
.page-shell {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: 32px 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   CUSTOMER BOOKING PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bk-bg:         #FDF8F6;
  --bk-accent:     #C4878A;
  --bk-accent-bg:  #F5ECEB;
  --bk-text:       #1a1a1a;
  --bk-muted:      #888;
  --bk-line:       #EDE5E1;
  --bk-white:      #fff;

  --od-bg:         #F8F9FB;
  --od-sidebar:    #1E2A3A;
  --od-accent:     #4F6AF5;
  --od-accent-bg:  #EEF2FF;
  --od-text:       #1E2A3A;
  --od-muted:      #9CA3AF;
  --od-border:     #EEF0F4;
}

.bk-back-site { display: inline-flex; align-items: center; gap: 6px; color: var(--bk-text); text-decoration: none; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.bk-back-site:hover { color: #000; }

.bk-page .page-shell {
  width: min(100%, 440px);
  padding: 0 0 80px;
}

/* ── Form wrapper ──────────────────────────────────────────────────────────── */
.bk-form {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.bk-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Error banner ──────────────────────────────────────────────────────────── */
.bk-error-banner {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid #fecaca;
}

/* ── Divider ───────────────────────────────────────────────────────────────── */
.bk-divider { height: 1px; background: var(--bk-line); }

/* ── Step visibility ───────────────────────────────────────────────────────── */
.bk-step {
  display: none;
  flex-direction: column;
  padding: 20px 20px 28px;
  flex: 1;
}
.bk-step.active { display: flex; }

/* ── Salon name header (step 1) ────────────────────────────────────────────── */
.bk-brand-header {
  text-align: center;
  padding: 28px 0 22px;
}
.bk-salon-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--bk-text);
}
.bk-salon-sub {
  font-size: 12px;
  color: var(--bk-muted);
  margin-top: 5px;
  letter-spacing: 1px;
}

/* ── Step header (steps 2-4) ───────────────────────────────────────────────── */
.bk-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.bk-back-btn {
  background: none;
  border: none;
  color: var(--bk-text);
  flex-shrink: 0;
}
.bk-step-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--bk-text);
}
.bk-step-count {
  font-size: 12px;
  color: var(--bk-muted);
  width: 72px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Section label ─────────────────────────────────────────────────────────── */
.bk-section-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--bk-text);
  margin: 16px 0 14px;
}

/* ── Service list ──────────────────────────────────────────────────────────── */
.bk-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--bk-line);
  padding: 16px 0;
  text-align: left;
  gap: 12px;
}
.bk-service-row:last-of-type { border-bottom: none; }
.bk-service-info { flex: 1; }
.bk-service-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--bk-text);
  margin-bottom: 3px;
}
.bk-service-meta {
  font-size: 12px;
  color: var(--bk-muted);
  margin-bottom: 6px;
}
.bk-photo-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #FDECEA;
  color: var(--bk-accent);
  border: 1px solid #F0C8C8;
}
.bk-chevron {
  color: var(--bk-muted);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Selected service pill ─────────────────────────────────────────────────── */
.bk-service-pill {
  background: var(--bk-accent-bg);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--bk-text);
  margin: 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Calendar ──────────────────────────────────────────────────────────────── */
.bk-cal { margin: 8px 0 4px; }

.bk-cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.bk-cal-month-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--bk-text);
}
.bk-cal-nav-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--bk-muted);
  padding: 4px 8px;
  line-height: 1;
}
.bk-cal-nav-btn:hover { color: var(--bk-text); }

.bk-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.bk-cal-dow span {
  text-align: center;
  font-size: 11px;
  color: var(--bk-muted);
  font-weight: 500;
  padding: 4px 0;
}
.bk-cal-dow .sun { color: #ccc; }

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}
.bk-cal-day {
  border: none;
  background: transparent;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--bk-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.bk-cal-day:not(:disabled):hover { background: var(--bk-accent-bg); }
.bk-cal-day:disabled { color: #ccc; cursor: default; }
.bk-cal-day.selected { background: var(--bk-accent); color: #fff; font-weight: 600; }

/* ── Time slots ────────────────────────────────────────────────────────────── */
.bk-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  min-height: 44px;
  width: 100%;
}
.bk-slots-hint {
  font-size: 13px;
  color: var(--bk-muted);
  margin: 4px 0;
  align-self: center;
}
.bk-slot {
  border: 1px solid var(--bk-line);
  background: var(--bk-white);
  color: var(--bk-text);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.12s;
}
.bk-slot:hover { border-color: var(--bk-accent); }
.bk-slot.selected { border: none; background: var(--bk-accent); color: #fff; }

/* ── Live summary card ─────────────────────────────────────────────────────── */
.bk-summary-card {
  background: var(--bk-accent-bg);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.bk-summary-svc  { font-weight: 600; font-size: 13px; color: var(--bk-text); margin-bottom: 3px; }
.bk-summary-meta { font-size: 12px; color: var(--bk-muted); margin-bottom: 2px; }
.bk-summary-price { font-size: 13px; color: var(--bk-accent); font-weight: 500; }

/* ── Form fields ───────────────────────────────────────────────────────────── */
.bk-field { margin-bottom: 18px; }
.bk-field-label {
  display: block;
  font-size: 11px;
  color: var(--bk-muted);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.bk-field input,
.bk-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--bk-line);
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  color: var(--bk-text);
  outline: none;
  font-family: inherit;
  resize: none;
}
.bk-field input:focus,
.bk-field textarea:focus { border-bottom-color: var(--bk-accent); }
.bk-field-error { font-size: 12px; color: #dc2626; display: block; margin-top: 3px; }
.bk-field-live-error[hidden] { display: none !important; }
.bk-field-has-error .bk-field-label { color: #dc2626; }
.bk-input-invalid,
.bk-field-has-error input,
.bk-field-has-error textarea {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.15);
}

/* ── Contact method pills ──────────────────────────────────────────────────── */
.bk-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.bk-contact-pill {
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--bk-line);
  background: var(--bk-white);
  color: var(--bk-text);
  transition: all 0.12s;
}
.bk-contact-pill.selected { background: var(--bk-accent); color: #fff; border-color: var(--bk-accent); }

/* ── Photo upload zone ─────────────────────────────────────────────────────── */
.bk-upload-zone {
  display: block;
  width: 100%;
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  background: var(--bk-white);
  padding: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--bk-muted);
  margin-top: 8px;
}
.bk-upload-zone input[type="file"] { display: none; }

/* ── Review cards ──────────────────────────────────────────────────────────── */
.bk-review-card {
  border: 1px solid var(--bk-line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.bk-review-card-label {
  font-size: 11px;
  color: var(--bk-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bk-review-svc   { font-size: 15px; font-weight: 600; color: var(--bk-text); margin-bottom: 4px; }
.bk-review-meta  { font-size: 12px; color: var(--bk-muted); margin-bottom: 2px; }
.bk-review-price { font-size: 13px; color: var(--bk-accent); font-weight: 500; margin-top: 4px; }

/* ── Rule checkboxes ───────────────────────────────────────────────────────── */
.bk-rule-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
.bk-rule-row input[type="checkbox"] { display: none; }
.bk-rule-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--bk-line);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.bk-rule-row:has(input:checked) .bk-rule-box {
  background: var(--bk-accent);
  border-color: var(--bk-accent);
}
.bk-rule-tick {
  display: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.bk-rule-row:has(input:checked) .bk-rule-tick { display: block; }
.bk-rule-text { font-size: 12px; color: var(--bk-text); line-height: 1.55; }

/* Rules accepted hidden input */
.bk-rules-hidden { display: none; }

/* ── Warning strip ─────────────────────────────────────────────────────────── */
.bk-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF9E6;
  border: 1px solid #F5E6A3;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #8a6f00;
}

/* ── Primary button ────────────────────────────────────────────────────────── */
.bk-btn-primary {
  width: 100%;
  background: var(--bk-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 8px;
  transition: opacity 0.15s;
  font-family: inherit;
}
.bk-btn-primary:disabled { opacity: 0.4; cursor: default; }

/* ── Progress dots ─────────────────────────────────────────────────────────── */
.bk-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px 32px;
  background: var(--bk-bg);
}
.bk-dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: var(--bk-line);
  transition: all 0.3s;
}
.bk-dot.active { width: 20px; background: var(--bk-accent); }

/* ── Success page ──────────────────────────────────────────────────────────── */
.bk-success {
  min-height: 100svh;
  padding: 32px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bk-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 28px;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
.bk-success-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--bk-text);
  margin-bottom: 16px;
}
.bk-success-text {
  font-size: 13px;
  color: var(--bk-muted);
  line-height: 1.75;
  max-width: 280px;
  margin: 0 auto 32px;
}
.bk-success-summary {
  background: var(--bk-accent-bg);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 32px;
  text-align: left;
  width: 100%;
  max-width: 360px;
}
.bk-success-summary-label {
  font-size: 11px;
  color: var(--bk-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bk-success-summary-svc  { font-size: 14px; font-weight: 600; color: var(--bk-text); margin-bottom: 4px; }
.bk-success-summary-meta { font-size: 12px; color: var(--bk-muted); margin-bottom: 6px; }
.bk-success-status       { font-size: 13px; color: var(--bk-accent); font-weight: 500; }
.bk-btn-outline {
  width: 100%;
  max-width: 360px;
  background: transparent;
  color: var(--bk-text);
  border: 1px solid var(--bk-line);
  border-radius: 50px;
  padding: 14px;
  font-size: 15px;
  font-family: inherit;
}

/* ════════════════════════════════════════════════════════════════════════════
   OWNER DASHBOARD
   ═══════════════════════════════════════════════════════════════════════════ */

.od-page { background: var(--od-bg); min-height: 100vh; }
.od-page .page-shell { width: 100%; max-width: 100%; padding: 0; }

.od-layout { display: flex; min-height: 100vh; }

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.od-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--od-sidebar);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.od-sidebar-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.od-sidebar-bottom {
  flex-shrink: 0;
}
.od-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.od-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #C4878A, #e8a0a0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.od-brand-name { color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; }
.od-brand-sub  { color: rgba(255,255,255,0.4); font-size: 11px; }
.od-nav {
  flex: 1;
  padding: 8px;
  overflow-y: auto;
}
.od-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  transition: all 0.15s;
}
.od-nav a:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.od-nav a.is-active { background: var(--od-accent); color: #fff; }
.od-nav-icon { font-size: 15px; flex-shrink: 0; }
.od-sidebar-foot {
  padding: 12px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.od-sidebar-foot a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  border-radius: 10px;
  font-size: 12px;
}
.od-sidebar-foot a:hover { color: rgba(255,255,255,0.6); }

/* Close button shown only on mobile at the bottom of the sidebar */
.od-sidebar-close-bottom {
  display: none;
}
@media (max-width: 600px) {
  .od-sidebar-close-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 9px 12px;
    background: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    cursor: pointer;
    border-radius: 0;
    transition: color 0.15s;
  }
  .od-sidebar-close-bottom:hover { color: rgba(255,255,255,0.8); }
  .od-sidebar-close-bottom i { font-size: 13px; }
}

/* ── Main content ──────────────────────────────────────────────────────────── */
.od-main {
  flex: 1;
  padding: 32px 28px;
  overflow-y: auto;
  max-width: 960px;
}

/* ── Section (shown/hidden via JS) ────────────────────────────────────────── */
.od-section { display: none; }
.od-section.active { display: block; }

/* ── Page heading row ──────────────────────────────────────────────────────── */
.od-page-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.od-page-title { font-size: 22px; font-weight: 700; color: var(--od-text); margin: 0 0 4px; }
.od-page-sub   { font-size: 13px; color: var(--od-muted); margin: 0; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.od-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.od-btn-primary { background: var(--od-accent); color: #fff; }
.od-btn-approve { background: #10B981; color: #fff; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 600; border: none; font-family: inherit; }
.od-btn-reject  { background: #EF4444; color: #fff; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 600; border: none; font-family: inherit; }
.od-btn-edit    { border: 1px solid #E5E7EB; background: #fff; color: #374151; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 500; font-family: inherit; }
.od-btn-msg     { border: 1px solid #C7D2FE; background: var(--od-accent-bg); color: var(--od-accent); border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 500; font-family: inherit; }
.od-btn-call    { border: 1px solid #BBF7D0; background: #F0FDF4; color: #15803D; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 500; font-family: inherit; text-decoration: none; display: inline-flex; align-items: center; }

/* ── Stats grid ────────────────────────────────────────────────────────────── */
.od-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.od-stat {
  background: #fff;
  border: 1px solid var(--od-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.od-stat-icon  { font-size: 20px; margin-bottom: 8px; display: block; }
.od-stat-value { font-size: 26px; font-weight: 700; color: var(--od-text); display: block; }
.od-stat-label { font-size: 12px; color: var(--od-muted); margin-top: 2px; display: block; }

/* ── Card ──────────────────────────────────────────────────────────────────── */
.od-card {
  background: #fff;
  border: 1px solid var(--od-border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}
.od-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.od-card-title { font-size: 15px; font-weight: 600; color: var(--od-text); margin: 0; }
.od-card-sub   { font-size: 12px; color: var(--od-muted); margin: 2px 0 0; }
.od-card-link  {
  font-size: 13px;
  color: var(--od-accent);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

/* ── Booking cards ─────────────────────────────────────────────────────────── */
.od-bk-list { display: flex; flex-direction: column; gap: 12px; }
.od-bk-card {
  border: 1px solid var(--od-border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.od-bk-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.od-bk-name { font-weight: 600; font-size: 15px; color: var(--od-text); }
.od-bk-svc  { font-size: 13px; color: #4B5563; font-weight: 500; margin-bottom: 4px; }
.od-bk-meta {
  font-size: 12px;
  color: var(--od-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.od-bk-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #F3F4F6;
}

/* ── Status badges ─────────────────────────────────────────────────────────── */
.od-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.od-badge-pending   { background: #FFF3CD; color: #856404;  border: 1px solid #FFE083; }
.od-badge-approved  { background: #D1FAE5; color: #065F46;  border: 1px solid #6EE7B7; }
.od-badge-rejected,
.od-badge-cancelled { background: #FEE2E2; color: #991B1B;  border: 1px solid #FCA5A5; }
.od-badge-completed { background: #DBEAFE; color: #1E40AF;  border: 1px solid #93C5FD; }
.od-badge-no_show   { background: #F3F4F6; color: #6B7280;  border: 1px solid #D1D5DB; }
.od-badge-photo     { background: var(--od-accent-bg); color: var(--od-accent); border: 1px solid #C7D2FE; }

/* ── Status tabs ───────────────────────────────────────────────────────────── */
.od-tabs {
  display: flex;
  gap: 4px;
  background: #F3F4F6;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.od-tab {
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: #6B7280;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.15s;
}
.od-tab.active { background: #fff; color: var(--od-text); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.od-tab-n {
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 4px;
  background: #E5E7EB;
  color: #6B7280;
}
.od-tab.active .od-tab-n { background: var(--od-accent-bg); color: var(--od-accent); }

/* ── Today's appointments ──────────────────────────────────────────────────── */
.od-today-list { display: flex; flex-direction: column; gap: 10px; }
.od-today-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  background: #FAFAFA;
}
.od-today-time { min-width: 52px; flex-shrink: 0; text-align: right; }
.od-today-time strong { display: block; font-size: 14px; color: var(--od-text); }
.od-today-time span   { font-size: 11px; color: var(--od-muted); }
.od-today-line { width: 1px; height: 36px; background: var(--od-border); flex-shrink: 0; }
.od-today-name { font-weight: 600; font-size: 14px; color: var(--od-text); margin-bottom: 2px; }
.od-today-svc  { font-size: 12px; color: var(--od-muted); }

/* ── Quick action buttons ──────────────────────────────────────────────────── */
.od-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.od-quick-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--od-border);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.od-quick-btn:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.od-quick-icon { font-size: 20px; }

/* ── Empty state ───────────────────────────────────────────────────────────── */
.od-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--od-muted);
}
.od-empty-icon { font-size: 36px; margin-bottom: 10px; display: block; }

/* ── Bookings table ────────────────────────────────────────────────────────── */
.od-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.od-table th {
  padding: 8px 12px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--od-muted);
  border-bottom: 1px solid var(--od-border);
  white-space: nowrap;
}
.od-table td {
  padding: 12px;
  border-bottom: 1px solid #F9FAFB;
  color: var(--od-text);
}
.od-table td span  { display: block; font-size: 12px; color: var(--od-muted); }
.od-table tr:last-child td { border-bottom: none; }

/* ── Responsive table wrapper ──────────────────────────────────────────────── */
.od-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.od-table-card { overflow: hidden; }  /* no extra padding around scroll */
.od-cell-sub { font-size: 11.5px; color: #94A3B8; margin-top: 2px; }
.od-actions-wrap { white-space: nowrap; }

/* Hide columns at small breakpoints */
@media (max-width: 560px) {
  .od-col-hide-xs { display: none !important; }
  .od-col-show-xs { display: block !important; }
}
@media (min-width: 561px) {
  .od-col-show-xs { display: none !important; }
}
@media (max-width: 760px) {
  .od-col-hide-sm { display: none !important; }
}

/* ── Services list ─────────────────────────────────────────────────────────── */
.od-svc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
}
.od-svc-row:last-child { border-bottom: none; }
.od-svc-icon  { font-size: 22px; width: 32px; text-align: center; flex-shrink: 0; }
.od-svc-name  { font-weight: 600; color: var(--od-text); font-size: 14px; margin-bottom: 2px; }
.od-svc-meta  { font-size: 12px; color: var(--od-muted); }
.od-svc-info  { flex: 1; }

/* ── Policy rows ───────────────────────────────────────────────────────────── */
.od-policy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F9FAFB;
  gap: 12px;
}
.od-policy-row:last-child { border-bottom: none; }
.od-policy-label { font-size: 13px; color: #374151; }
.od-policy-value {
  font-size: 13px;
  font-weight: 600;
  background: var(--od-accent-bg);
  color: var(--od-accent);
  padding: 4px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.od-policy-bool-on  { background: #D1FAE5; color: #065F46; }
.od-policy-bool-off { background: #F3F4F6; color: #6B7280; }

/* ── Working hours rows ────────────────────────────────────────────────────── */
.od-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
  gap: 12px;
}
.od-hours-row:last-child { border-bottom: none; }
.od-hours-day  { font-size: 14px; font-weight: 500; color: var(--od-text); min-width: 110px; }
.od-hours-day.closed { color: var(--od-muted); }
.od-hours-time { font-size: 13px; color: #374151; }
.od-hours-closed { font-size: 12px; font-weight: 600; color: #EF4444; }

/* ── Message modal ─────────────────────────────────────────────────────────── */
.od-modal-overlay {
  position: fixed;
  inset: 0;
  /* dvh tracks mobile browser chrome (Brave/Chrome address bar show/hide) */
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top, 0px));
  padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}
.od-modal-overlay.open { display: flex; }
.od-modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.od-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.od-modal-title { font-weight: 700; font-size: 16px; color: var(--od-text); }
.od-modal-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--od-muted);
  line-height: 1;
  padding: 0;
}
.od-modal-msg {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  color: var(--od-text);
  line-height: 1.7;
  min-height: 70px;
  margin-bottom: 16px;
  white-space: pre-wrap;
}
.od-modal-footer { display: flex; gap: 8px; }
.od-modal-copy {
  flex: 1;
  background: var(--od-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
}
.od-modal-cancel {
  flex: 1;
  background: #fff;
  color: #374151;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
}

/* ── Confirm dialog (replaces browser confirm) ───────────────────────────── */
.od-confirm-overlay { z-index: 1100; }
.od-confirm-modal {
  max-width: 380px;
  text-align: center;
  padding: 28px 24px 22px;
}
.od-confirm-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #FEF2F2;
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.od-confirm-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--od-text);
}
.od-confirm-message {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--od-muted);
}
.od-confirm-actions {
  display: flex;
  gap: 10px;
}
.od-confirm-actions .od-btn {
  flex: 1;
  min-height: 44px;
}

.od-svc-card.od-removing {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

/* ── Toast notification ────────────────────────────────────────────────────── */
.od-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #10B981;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 13px;
  font-weight: 500;
  z-index: 100;
  display: none;
}
.od-toast.show { display: block; }
.od-toast.error { background: #EF4444; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .od-sidebar { width: 64px; }
  .od-brand-name, .od-brand-sub,
  .od-nav a span:not(.od-nav-icon),
  .od-sidebar-foot a span { display: none; }
  .od-nav a { padding: 10px; justify-content: center; }
  .od-nav-icon { font-size: 18px; }
  .od-main { padding: 20px 16px; }
  .od-stats { grid-template-columns: repeat(2, 1fr); }
  .od-quick-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .od-stats { grid-template-columns: repeat(2, 1fr); }
  .od-bk-actions { gap: 6px; flex-wrap: wrap; }
  .od-today-row { flex-wrap: wrap; }
  .od-page-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .od-page-actions { width: 100%; }
  .od-page-actions .od-btn { flex: 1; justify-content: center; }
  .od-form-grid-2 { grid-template-columns: 1fr; }
  .od-cal-toolbar { flex-direction: column; gap: 10px; }
  .od-cal-nav { flex-wrap: wrap; }
  .od-cal-actions { width: 100%; justify-content: flex-end; }
  .od-bk-card-meta { flex-wrap: wrap; }
}

/* ── Owner additions (forms, calendar, salon page) ─────────────────────────── */
.od-page .page-shell { width: 100%; max-width: none; padding: 0; }
.od-nav a i { width: 18px; font-size: 15px; opacity: 0.85; }
.od-nav a.is-active i { opacity: 1; }
.od-page-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.od-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid transparent; border-radius: 8px; padding: 9px 14px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; font-family: inherit; background: #fff; color: var(--od-text); }
.od-btn-primary { background: var(--od-accent); color: #fff; }
.od-btn-ghost { border-color: #E5E7EB; background: #fff; }
.od-btn-success { background: #10B981; color: #fff; }
.od-btn-danger { background: #EF4444; color: #fff; }
.od-btn-sm { padding: 6px 10px; font-size: 12px; }
.od-btn-text { background: none; border: none; font-size: 12px; cursor: pointer; color: var(--od-accent); padding: 0; }
.od-btn-text.od-btn-danger { color: #EF4444; }
.od-btn-text-danger { background: none; border: none; font-size: 12px; cursor: pointer; color: #EF4444; padding: 0; }
.od-btn-text-muted { color: #6B7280 !important; }
/* Price item rows in modal */
.od-price-item-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid #F3F4F6; font-size: 13px;
}
.od-price-item-row:last-child { border-bottom: none; }
.od-price-item-row-name { flex: 1; color: #111827; }
.od-price-item-row-price { font-weight: 600; color: #374151; white-space: nowrap; }
.od-price-items-list { max-height: 280px; overflow-y: auto; padding: 4px 0 8px; }
.od-form-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; margin: 0 0 10px; }
.od-form-grid-3 { grid-template-columns: 1fr auto auto; }
.od-form-grid-2 { grid-template-columns: 1fr auto; align-items: end; }
.od-field-full { grid-column: 1 / -1; }
.od-price-group-heading {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #9B6B72;
  margin: 12px 0 4px; padding-bottom: 3px;
  border-bottom: 1px solid #F3EEED;
}

/* Salon page price group label */
.sp-price-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-rose-dark);
  margin: 14px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(181,132,139,0.2);
}
.sp-price-group-label:first-child { margin-top: 4px; }
.od-link { color: var(--od-accent); text-decoration: none; font-size: 13px; font-weight: 600; }
.od-stat-revenue .od-stat-value small { font-size: 12px; font-weight: 500; opacity: 0.7; }
.od-revenue-note { font-size: 12px; color: var(--od-muted); margin: -8px 0 20px; }
.od-modal-wide { max-width: 640px; }

/* Booking modal: constrain height on desktop so long forms stay on screen */
#od-booking-modal .od-modal-box {
  max-height: min(90vh, 860px);
  max-height: min(90dvh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
#od-booking-modal .od-modal-header {
  flex-shrink: 0;
  margin-bottom: 0;
  padding: 20px 24px 14px;
  border-bottom: 1px solid #F3F4F6;
}
#od-booking-modal .od-modal-box > form {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 24px 8px;
}
#od-booking-modal .od-modal-footer {
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #F3F4F6;
  padding: 14px 0 0;
  margin-top: 12px;
  z-index: 2;
}

.od-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.od-modal-links .od-btn {
  flex: 1 1 calc(50% - 5px);
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  font-size: 14px;
}

/* Prepared message modal — scrollable body on small screens */
#od-msg-modal .od-modal-box {
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 520px);
  max-height: min(88dvh, 520px);
  overflow: hidden;
  padding: 0;
}
#od-msg-modal .od-modal-header {
  flex-shrink: 0;
  margin-bottom: 0;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #F3F4F6;
}
#od-msg-modal .od-modal-msg {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
}
  #od-msg-modal .od-modal-links {
    flex-shrink: 0;
    padding: 14px 16px max(18px, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #F3F4F6;
    background: #fff;
  }
  #od-msg-modal .od-modal-links .od-btn {
    min-height: 50px;
    padding: 14px 16px;
    font-size: 15px;
  }

/* Hide floating lang switcher while a modal or mobile sidebar is open */
body.od-modal-open .od-dashboard-lang,
body.od-sidebar-open .od-dashboard-lang {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.od-modal-open,
body.od-sidebar-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.od-form-grid { display: grid; gap: 12px; }
.od-form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.od-field label { display: block; font-size: 12px; font-weight: 600; color: #374151; margin-bottom: 4px; }
.od-input, .od-form input[type="text"], .od-form input[type="tel"], .od-form input[type="email"], .od-form input[type="date"], .od-form input[type="time"], .od-form select, .od-form textarea { width: 100%; border: 1px solid #E5E7EB; border-radius: 8px; padding: 8px 10px; font-size: 13px; font-family: inherit; }
.od-field-check label { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.od-field-error { color: #EF4444; font-size: 12px; }
.od-field-hint {
  font-size: 12px;
  color: #6B7280;
  margin: 8px 0 0;
  line-height: 1.5;
}
.od-field-disabled { opacity: 0.45; pointer-events: none; }
.od-hours-edit-row { display: grid; grid-template-columns: 120px auto 1fr; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid #F3F4F6; }
@media (max-width: 600px) {
  .od-hours-edit-row { grid-template-columns: 1fr auto; }
  .od-hours-edit-row .od-hours-day { grid-column: 1; grid-row: 1; }
  .od-hours-edit-row .od-check-label { grid-column: 2; grid-row: 1; }
  .od-hours-edit-row .od-hours-fields { grid-column: 1 / -1; grid-row: 2; }
  .od-hours-fields { flex-wrap: wrap; }
  .od-hours-fields input { min-width: 100px; flex: 1; }
}
.od-hours-fields { display: flex; gap: 8px; }
.od-public-hours-form { margin-top: 16px; }
.od-public-hours-intro { margin-bottom: 12px; }
.od-check-label { font-size: 13px; display: flex; align-items: center; gap: 6px; }
.od-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.od-list { list-style: none; padding: 0; margin: 16px 0 0; }
.od-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #F3F4F6; font-size: 13px; }
.od-muted, .sp-muted { color: var(--od-muted); font-size: 13px; }
.od-inline-form, .od-block-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: end; margin-bottom: 12px; }
.od-inline-actions { display: contents; }
.od-tag-muted { font-size: 11px; background: #F3F4F6; color: #6B7280; padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.od-bk-note { font-size: 12px; color: #6B7280; margin-top: 6px; }
.od-bk-note-readonly {
  background: #F9FAFB;
  border: 1px solid var(--od-line, #E5E7EB);
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.od-standalone { max-width: 900px; margin: 0 auto; padding: 32px 24px; }
.od-standalone-top h1 { margin: 8px 0; font-size: 24px; }
.od-back-link { color: var(--od-accent); text-decoration: none; font-size: 13px; font-weight: 600; }
.od-customer-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #6B7280; }
#od-calendar { min-height: 520px; }

/* Salon public page */
.sp-page { background: #FAFAF8; min-height: 100vh; }
.sp-page .page-shell { width: min(100% - 32px, 960px); padding: 0 0 48px; }
.sp-wrap { padding-top: 8px; }
.sp-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; border-bottom: 1px solid #E8E4E0; }
.sp-brand { display: flex; align-items: center; gap: 14px; }
.sp-logo { width: 48px; height: 48px; border-radius: 12px; background: #2C2426; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 20px; }
.sp-name { margin: 0; font-size: 22px; font-weight: 700; color: #1a1a1a; }
.sp-address { margin: 2px 0 0; font-size: 13px; color: #777; }
.sp-book-btn { display: inline-flex; align-items: center; justify-content: center; background: #2C2426; color: #fff; text-decoration: none; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; border: none; }
.sp-book-btn-lg { padding: 12px 24px; font-size: 15px; }
.sp-hero { padding: 48px 0 40px; max-width: 620px; }
.sp-eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; font-weight: 700; color: #888; margin-bottom: 10px; }
.sp-headline { font-size: clamp(28px, 5vw, 38px); line-height: 1.15; margin-bottom: 14px; font-weight: 700; color: #1a1a1a; }
.sp-lead { color: #555; line-height: 1.6; margin-bottom: 24px; font-size: 15px; }
.sp-section { padding: 32px 0; border-top: 1px solid #E8E4E0; }
.sp-section-title { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.sp-services { display: grid; gap: 12px; }
.sp-service-card { background: #fff; border: 1px solid #E8E4E0; border-radius: 12px; padding: 18px; }
.sp-service-top { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.sp-service-top h4 { margin: 0; font-size: 16px; }
.sp-price { font-weight: 700; color: #2C2426; white-space: nowrap; }
.sp-service-desc { color: #666; font-size: 14px; line-height: 1.5; margin: 8px 0; }
.sp-service-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #777; align-items: center; }
.sp-tag { background: #F3F0ED; color: #666; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.sp-tag-required { background: #FEE2E2; color: #991B1B; }
.sp-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.sp-hours-list, .sp-rules-list { list-style: none; padding: 0; margin: 0; }
.sp-hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #F0ECE8; font-size: 14px; }
.sp-closed { color: #999; font-weight: 600; }
.sp-rules-list li { padding: 8px 0; font-size: 14px; color: #555; border-bottom: 1px solid #F0ECE8; }
.sp-cta { margin-top: 16px; background: #fff; border: 1px solid #E8E4E0; border-radius: 16px; padding: 32px; text-align: center; }
.sp-cta h3 { margin-bottom: 8px; }
.sp-cta p { color: #666; margin-bottom: 20px; }
.sp-footer { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 24px; font-size: 13px; color: #777; }

@media (max-width: 768px) {
  .od-grid-2, .od-form-grid-2, .sp-grid-2 { grid-template-columns: 1fr; }
  .sp-header { flex-direction: column; align-items: flex-start; }
  .od-cal-toolbar { flex-direction: column; align-items: stretch; }
  .od-cal-actions { flex-wrap: wrap; }
}

/* Calendar redesign */
.od-cal-header { margin-bottom: 16px; }
.od-cal-card {
  background: #fff;
  border: 1px solid var(--od-border);
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
}
.od-cal-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.od-cal-nav { display: flex; align-items: center; gap: 8px; }
.od-cal-nav-btn {
  width: 32px; height: 32px;
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.od-cal-range { font-size: 14px; font-weight: 600; min-width: 180px; text-align: center; color: var(--od-text); }
.od-cal-actions { display: flex; align-items: center; gap: 8px; }
.od-cal-view-toggle {
  display: inline-flex;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}
.od-cal-view-btn {
  border: none;
  background: #fff;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: #6B7280;
}
.od-cal-view-btn.active { background: #F3F4F6; color: var(--od-text); }
.od-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F3F4F6;
  font-size: 12px;
  color: #6B7280;
}
.od-cal-legend-title { font-weight: 700; color: var(--od-text); margin-right: 4px; }
.od-legend-item { display: inline-flex; align-items: center; gap: 6px; }
.od-legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.od-legend-pending   { background: #FEF9C3; border: 1px solid #D97706; }
.od-legend-approved  { background: #D1FAE5; border: 1px solid #059669; }
.od-legend-completed { background: #DBEAFE; border: 1px solid #2563EB; }
.od-legend-rejected  { background: #FCE7F3; border: 1px solid #DB2777; }
.od-legend-cancelled { background: #F3F4F6; border: 1px solid #6B7280; }
.od-legend-no_show   { background: #FEE0CC; border: 1px solid #C2410C; }
.od-legend-block     { background: #EDE9FE; border: 1px solid #7C3AED; }
.od-cal-hint { font-size: 12px; color: #9CA3AF; margin: 10px 0 0; }

/* ── Toggle switch (checkbox appearance override) ──────────────────────────── */
input[type="checkbox"].od-toggle-cb {
  -webkit-appearance: none;
  appearance: none;
  width: 38px;
  height: 22px;
  background: #D1D5DB;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  vertical-align: middle;
  margin: 0;
  border: none;
  outline: none;
  transition: background 0.18s;
}
input[type="checkbox"].od-toggle-cb:checked { background: #B5848B; }
input[type="checkbox"].od-toggle-cb::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
input[type="checkbox"].od-toggle-cb:checked::before { transform: translateX(16px); }
input[type="checkbox"].od-toggle-cb:focus-visible { box-shadow: 0 0 0 3px rgba(181,132,139,0.25); }

/* ── FullCalendar base ─────────────────────────────────────────────────────── */
#od-calendar .fc { font-family: 'Inter', system-ui, sans-serif; }
#od-calendar .fc-timegrid-slot { height: 2.8em; }
#od-calendar .fc-timegrid-slot:hover { background: transparent !important; }
#od-calendar .fc-timegrid-col-frame { position: relative; }
#od-calendar .fc-col-header-cell { padding: 8px 0; background: #FAFAFA; border-color: #F0F0F0; }
#od-calendar .fc-timegrid-axis { font-size: 11px; color: #9CA3AF; padding-right: 8px; }
#od-calendar .fc-scrollgrid { border-radius: 10px; overflow: hidden; }
#od-calendar .fc-scrollgrid-section > td { border-color: #F0F0F0; }

/* Closed days */
#od-calendar .fc-timegrid-col.fc-day-closed-cell { background: repeating-linear-gradient(135deg, #F9FAFB 0px, #F9FAFB 6px, #F3F4F6 6px, #F3F4F6 12px); }
#od-calendar .fc-col-header-cell.fc-day-closed-cell { background: #F3F4F6; }

/* Day header */
.fc-day-head { text-align: center; line-height: 1.3; padding: 4px 0; }
.fc-day-head .fc-day-name { display: block; font-size: 10px; color: #9CA3AF; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.fc-day-head .fc-day-num { display: block; font-size: 18px; font-weight: 700; color: var(--od-text); line-height: 1.1; margin-top: 1px; }
.fc-day-head.is-closed .fc-day-name,
.fc-day-head.is-closed .fc-day-num { color: #9CA3AF; }
.fc-day-closed { display: block; font-size: 9px; color: #C4B5C8; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-top: 3px; }

/* Today column highlight */
#od-calendar .fc-day-today { background: rgba(185,132,139,0.04) !important; }
#od-calendar .fc-day-today .fc-day-head .fc-day-num { color: var(--od-accent); background: rgba(185,132,139,0.12); border-radius: 50%; width: 28px; height: 28px; line-height: 28px; display: inline-block; }

/* ── Event blocks ──────────────────────────────────────────────────────────── */
#od-calendar .fc-event {
  border-width: 0 0 0 3px !important;
  border-radius: 7px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
  cursor: pointer !important;
  transition: filter 0.13s ease, transform 0.1s ease, box-shadow 0.13s ease !important;
  overflow: hidden;
}
#od-calendar .fc-event:hover {
  filter: brightness(0.93) saturate(1.1);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 14px rgba(0,0,0,0.14) !important;
  z-index: 6 !important;
}
#od-calendar .fc-event:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(0.87);
  transition-duration: 0.05s !important;
}
#od-calendar .fc-event-resizer { display: none !important; }

/* Unavailable block events */
#od-calendar .fc-event-block {
  border-left-width: 3px !important;
  background: repeating-linear-gradient(135deg, #EDE9FE 0px, #EDE9FE 6px, #DDD6FE 6px, #DDD6FE 12px) !important;
}

/* Event inner content */
.fc-custom-event { padding: 4px 7px; line-height: 1.3; overflow: hidden; height: 100%; }
.fc-custom-event .fc-ev-name { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fc-custom-event .fc-ev-svc { font-size: 10px; opacity: 0.8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.fc-custom-event .fc-ev-dur { font-size: 10px; opacity: 0.65; }
.fc-custom-block { font-size: 11px; padding: 3px 6px; font-weight: 600; color: #4C1D95; }

/* Now indicator */
#od-calendar .fc-timegrid-now-indicator-line { border-color: var(--od-accent) !important; border-width: 2px !important; }
#od-calendar .fc-timegrid-now-indicator-arrow { border-color: var(--od-accent) !important; }

.od-field-full { grid-column: 1 / -1; }
.od-modal-footer-split { justify-content: space-between; align-items: center; }
.od-modal-footer-right { display: flex; gap: 8px; margin-left: auto; }
.od-row-actions { display: flex; gap: 10px; align-items: center; white-space: nowrap; }
.od-delete-btn { margin-right: auto; }

/* ════════════════════════════════════════════════════════════════════════════
   OWNER DASHBOARD MODERNIZATION  — sharpened design pass
   ═══════════════════════════════════════════════════════════════════════════ */

/* Force Inter throughout the owner panel */
.od-layout, .od-layout * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

/* ── Refined sidebar ──────────────────────────────────────────────────────── */
.od-sidebar {
  background: #141B27;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Wordmark (replaces gradient avatar) ─────────────────────────────────── */
.od-brand { padding: 20px 16px 16px; }
.od-wordmark { display: flex; align-items: center; gap: 12px; }
.od-wordmark-initials {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1.5px solid rgba(181,132,139,0.55);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(181,132,139,0.9);
  font-family: 'Inter', sans-serif;
}
.od-wordmark-text { overflow: hidden; }
.od-brand-name { font-size: 13px; font-weight: 700; letter-spacing: -0.2px; color: #F9FAFB; white-space: nowrap; }
.od-brand-sub  { font-size: 9.5px; opacity: 0.32; letter-spacing: 0.7px; text-transform: uppercase; color: #fff; }

/* ── Sidebar toggle buttons ────────────────────────────────────────────────── */
.od-brand-header {
  display: none;            /* hidden on desktop/tablet */
  justify-content: center;
  margin-bottom: 6px;
}
/* Shared base for both expand + close */
.od-ham-expand,
.od-ham-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.45); font-size: 14px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.od-ham-expand:hover,
.od-ham-close:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); }

.od-nav { padding: 10px; }
.od-nav a {
  font-size: 12.5px; font-weight: 500; letter-spacing: -0.1px;
  border-radius: 8px; padding: 9px 12px; gap: 10px;
  transition: background 0.12s, color 0.12s;
}
.od-nav a i { font-size: 14px; width: 16px; }
.od-nav a.is-active { background: rgba(181,132,139,0.18); color: #E8B8BC; }
.od-nav a:hover:not(.is-active) { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); }
.od-sidebar-foot a { font-size: 11px; color: rgba(255,255,255,0.22); }
.od-sidebar-foot a:hover { color: rgba(255,255,255,0.5); }

/* ── od-ham-btn: hidden on desktop/tablet, used only as "More" in bottom nav */
.od-ham-btn { display: none; }

/* ── Backdrop overlay ────────────────────────────────────────────────────── */
.od-backdrop {
  display: none;
  position: fixed; inset: 0;
  height: 100vh;
  height: 100dvh;
  background: rgba(0,0,0,0.45);
  z-index: 950;
  backdrop-filter: blur(2px);
}
.od-backdrop.is-visible { display: block; }

/* ── Collapsed sidebar (tablet 600–900px): fix user-footer glitch ────────── */
@media (max-width: 900px) {
  .od-user-name { display: none; }
  .od-user-action-link span { display: none; }
  .od-user-actions { flex-direction: row; justify-content: center; gap: 8px; }
  .od-user-footer { padding: 10px 8px; }
  .od-wordmark-text { display: none; }
  .od-wordmark-initials { margin: 0 auto; }
  .od-brand { padding: 16px 8px 12px; }
}

/* ── Mobile sidebar (≤ 600px): fully hidden, slides in from right as overlay  */
@media (max-width: 600px) {
  .od-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(240px, 88vw) !important;
    height: auto;
    max-height: none;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
  }
  .od-sidebar.is-open { transform: translateX(0); }

  /* Scrollable top section — nav links scroll, account block stays pinned */
  .od-sidebar-main {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .od-sidebar-bottom {
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #141B27;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
  .od-sidebar-bottom .od-user-footer {
    margin-top: 0;
    padding-top: 12px;
    border-top: none;
  }

  /* show close button inside sidebar */
  .od-brand-header { display: flex; justify-content: flex-end; padding-right: 4px; }
  .od-ham-expand  { display: none; }
  .od-ham-close   { display: flex; }

  /* restore full labels inside overlay */
  .od-wordmark-text { display: block !important; }
  .od-wordmark-initials { margin: 0 !important; }
  .od-brand { padding: 14px 16px 12px !important; }
  .od-user-name { display: block !important; }
  .od-user-action-link span { display: inline !important; }
  .od-user-actions { flex-direction: column !important; justify-content: flex-start !important; }
  .od-nav a span:not(.od-nav-icon) { display: inline !important; }
  .od-nav a { padding: 9px 12px !important; justify-content: flex-start !important; }
  .od-nav-icon { font-size: 15px !important; }
  .od-sidebar-foot a span { display: inline !important; }

  /* Hide app bottom nav while sidebar overlay is open */
  body.od-sidebar-open .od-bottom-nav {
    visibility: hidden;
    pointer-events: none;
  }

  .od-main { padding: 20px 14px; padding-bottom: 74px; }
}

/* Main area */
.od-main { padding: 28px 32px; background: #F7F8FA; }
@media (max-width: 900px) { .od-main { padding: 20px 16px; } }
/* Bottom nav is ~58px + safe area — add clearance so last card is never hidden under it */
@media (max-width: 600px) {
  .od-main { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important; }
  /* Kill any white bleed-through below the nav bar */
  .od-layout { background: #141B27; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.od-bottom-nav {
  display: none; /* hidden on desktop/tablet */
}
@media (max-width: 600px) {
  .od-bottom-nav {
    display: flex;
    position: fixed;
    bottom: -1px; left: 0; right: 0;
    z-index: 800;
    height: 58px;
    background: #141B27;
    border-top: 1px solid rgba(255,255,255,0.07);
    align-items: stretch;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  }
  .od-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
  align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.38);
    font-size: 10.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    padding: 0 4px;
    transition: color 0.15s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }
  .od-bn-item i {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.15s;
  }
  .od-bn-item:active i { transform: scale(0.88); }
  .od-bn-item.is-active {
    color: #E8B8BC;
  }
  /* Small indicator dot on active item */
  .od-bn-item.is-active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #E8B8BC;
  }
  /* "More" item slight difference */
  .od-bn-more { color: rgba(255,255,255,0.32); }
  .od-bn-more.is-active { color: rgba(255,255,255,0.7); }
}

/* Page headings */
.od-page-title { font-size: 21px; font-weight: 700; letter-spacing: -0.4px; }
.od-page-sub   { font-size: 12.5px; color: #94A3B8; }

/* Stat cards */
.od-stats { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; margin-bottom: 24px; }
.od-stat {
  background: #fff; border: 1px solid #EEF1F6; border-radius: 14px;
  padding: 20px 18px; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s;
}
.od-stat:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.07); }
.od-stat-value { font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.od-stat-label { font-size: 11px; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; font-weight: 600; }

/* Cards */
.od-card {
  background: #fff; border: 1px solid #EEF1F6; border-radius: 14px;
  padding: 20px 22px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); margin-bottom: 18px;
}
.od-card-title { font-size: 14px; font-weight: 700; letter-spacing: -0.2px; }

/* Buttons (refined) */
.od-btn {
  border-radius: 9px; padding: 8px 15px; font-size: 12.5px; font-weight: 600;
  letter-spacing: -0.1px; gap: 5px; transition: opacity 0.13s, transform 0.1s, box-shadow 0.13s;
}
.od-btn:hover { opacity: 0.87; }
.od-btn:active { transform: scale(0.97); }
.od-btn-primary { background: #B5848B; color: #fff; border: none; }
.od-btn-primary:hover { opacity: 1; background: #9B6B72; }
.od-btn-ghost { border: 1.5px solid #DFE4EC; background: #fff; color: #374151; }
.od-btn-ghost:hover { background: #F8F9FB; opacity: 1; }
.od-btn-sm { padding: 5px 10px; font-size: 11.5px; }

/* Status badges */
.od-badge { font-size: 10.5px; padding: 3px 9px; border-radius: 6px; font-weight: 700; letter-spacing: 0.2px; }
.od-badge-pending   { background: #FEF9C3; color: #78350F;  border: 1px solid #FDE68A; }
.od-badge-approved  { background: #D1FAE5; color: #064E3B;  border: 1px solid #6EE7B7; }
.od-badge-rejected  { background: #FCE7F3; color: #831843;  border: 1px solid #F9A8D4; }
.od-badge-cancelled { background: #F3F4F6; color: #4B5563;  border: 1px solid #D1D5DB; }
.od-badge-completed { background: #DBEAFE; color: #1E3A8A;  border: 1px solid #93C5FD; }
.od-badge-no_show   { background: #FEE0CC; color: #7C2D12;  border: 1px solid #FDBA74; }

/* Booking cards */
.od-bk-card {
  border: 1px solid #EEF1F6; border-radius: 12px; padding: 15px 16px;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  border-left: 3px solid #EEF1F6;
  transition: box-shadow 0.14s;
}
.od-bk-card[data-status="pending"]   { border-left-color: #D97706; }
.od-bk-card[data-status="approved"]  { border-left-color: #059669; }
.od-bk-card[data-status="rejected"]  { border-left-color: #DB2777; }
.od-bk-card[data-status="cancelled"] { border-left-color: #9CA3AF; }
.od-bk-card[data-status="completed"] { border-left-color: #2563EB; }
.od-bk-card[data-status="no_show"]   { border-left-color: #C2410C; }
.od-bk-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.07); }
.od-bk-name { font-size: 14.5px; font-weight: 700; letter-spacing: -0.2px; }
.od-bk-svc  { font-size: 12.5px; font-weight: 500; }
.od-bk-meta { font-size: 11.5px; }
.od-bk-actions { gap: 6px; flex-wrap: wrap; }
.od-btn-approve { background: #059669; color: #fff; border-radius: 7px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; border: none; font-family: inherit; cursor: pointer; transition: background 0.12s; }
.od-btn-approve:hover { background: #047857; }
.od-btn-reject  { background: #DB2777; color: #fff; border-radius: 7px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; border: none; font-family: inherit; cursor: pointer; transition: background 0.12s; }
.od-btn-reject:hover  { background: #BE185D; }
.od-btn-edit    { border: 1.5px solid #E5E7EB; background: #fff; color: #374151; border-radius: 7px; padding: 6px 12px; font-size: 11.5px; font-weight: 600; font-family: inherit; cursor: pointer; transition: background 0.12s; }
.od-btn-edit:hover  { background: #F3F4F6; }
.od-btn-msg     { border: 1.5px solid #E5E7EB; background: #fff; color: #374151; border-radius: 7px; padding: 6px 12px; font-size: 11.5px; font-weight: 500; font-family: inherit; cursor: pointer; }
.od-btn-call    { border: 1.5px solid #BBF7D0; background: #F0FDF4; color: #065F46; border-radius: 7px; padding: 6px 12px; font-size: 11.5px; font-weight: 500; font-family: inherit; text-decoration: none; display: inline-flex; align-items: center; }

/* Today list */
.od-today-row {
  background: #FAFBFD; border: 1px solid #EEF1F6; border-radius: 10px;
  padding: 12px 14px;
}
.od-today-time strong { font-size: 13.5px; font-weight: 800; letter-spacing: -0.3px; }
.od-today-name { font-weight: 700; font-size: 13.5px; }
.od-today-svc  { font-size: 11.5px; color: #94A3B8; }

/* Tables */
.od-table { font-size: 12.5px; }
.od-table th { font-size: 10px; color: #94A3B8; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 8px 14px; }
.od-table td { padding: 12px 14px; }
.od-table tr:hover td { background: #FAFBFD; }

/* Services list */
.od-svc-row { padding: 14px 4px; }
.od-svc-name { font-size: 13.5px; font-weight: 700; letter-spacing: -0.2px; }
.od-svc-meta { font-size: 11.5px; color: #94A3B8; }
.od-tag-muted { font-size: 10px; padding: 2px 7px; background: #F3F4F6; color: #6B7280; border-radius: 5px; font-weight: 600; }

/* Working hours */
.od-hours-day { font-weight: 700; font-size: 13px; }
.od-check-label { font-size: 12.5px; color: #4B5563; }
.od-hours-edit-row { padding: 12px 0; }

/* Alert messages */
.od-alert { padding: 12px 16px; border-radius: 10px; font-size: 13px; margin-bottom: 16px; font-weight: 500; }
.od-alert-success { background: #D1FAE5; color: #064E3B; border: 1px solid #6EE7B7; }
.od-alert-error   { background: #FCE7F3; color: #831843; border: 1px solid #F9A8D4; }
.od-alert-warning { background: #FEF9C3; color: #78350F; border: 1px solid #FDE68A; }

/* List items */
.od-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid #F3F4F6;
  font-size: 12.5px; gap: 10px; flex-wrap: wrap;
}
.od-list li:last-child { border-bottom: none; }

/* Calendar toolbar */
.od-cal-card { background: #fff; border: 1px solid #EEF1F6; border-radius: 16px; padding: 18px 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.od-cal-range { font-size: 14px; font-weight: 700; letter-spacing: -0.3px; }
.od-cal-nav-btn {
  width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid #E5E7EB; border-radius: 7px; background: #fff; cursor: pointer; font-size: 13px;
  transition: background 0.12s; color: #374151;
}
.od-cal-nav-btn:hover { background: #F3F4F6; }
.od-cal-view-btn { border: none; background: none; padding: 5px 11px; border-radius: 7px; font-size: 12px; font-weight: 600; cursor: pointer; color: #6B7280; font-family: inherit; transition: background 0.12s; }
.od-cal-view-btn.active { background: #F3F4F6; color: #1E2A3A; }
.od-cal-hint { font-size: 11px; color: #94A3B8; margin: 10px 0 0; }

/* Calendar legend */
.od-cal-legend { flex-wrap: wrap; gap: 6px 14px; padding: 12px 0 4px; font-size: 11.5px; }
.od-cal-legend-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: #94A3B8; margin-right: 6px; }
.od-legend-item { gap: 5px; font-size: 11px; color: #4B5563; font-weight: 500; }
.od-legend-dot { width: 10px; height: 10px; border-radius: 3px; }

/* Tabs */
.od-tabs { background: #F0F2F6; border-radius: 10px; }
.od-tab { font-size: 12.5px; font-weight: 600; }
.od-tab.active { background: #fff; color: #1E2A3A; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.od-tab-n { font-size: 10px; background: #E5E7EB; color: #6B7280; border-radius: 6px; }
.od-tab.active .od-tab-n { background: #FCE7F3; color: #9B6B72; }

/* Form inputs in owner modals and settings */
.od-input,
.od-form input[type="text"],
.od-form input[type="tel"],
.od-form input[type="email"],
.od-form input[type="date"],
.od-form input[type="time"],
.od-form input[type="number"],
.od-form select,
.od-form textarea {
  width: 100%; border: 1.5px solid #E5E7EB; border-radius: 9px; padding: 9px 12px;
  font-size: 13px; font-family: 'Inter', system-ui, sans-serif; background: #fff;
  color: #1E2A3A; transition: border-color 0.15s;
}
.od-input:focus,
.od-form input:focus,
.od-form select:focus,
.od-form textarea:focus { outline: none; border-color: #B5848B; box-shadow: 0 0 0 3px rgba(181,132,139,0.12); }
.od-field label { font-size: 11.5px; font-weight: 700; color: #4B5563; margin-bottom: 5px; letter-spacing: 0.1px; }
.od-field-error { font-size: 11px; color: #DB2777; }

/* Owner date field — always dd/mm/yyyy display, ISO in hidden input */
.od-date-wrap { position: relative; }
.od-date-input-row {
  display: flex;
  align-items: stretch;
}
.od-date-input-row .od-date-display {
  flex: 1;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.od-date-picker-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #E5E7EB;
  border-left: none;
  border-radius: 0 9px 9px 0;
  background: #fff;
  padding: 0 12px;
  color: #6B7280;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.od-date-input-row:focus-within .od-date-display,
.od-date-input-row:focus-within .od-date-picker-btn {
  border-color: #B5848B;
}
.od-date-input-row:focus-within .od-date-display {
  box-shadow: 0 0 0 3px rgba(181,132,139,0.12);
}
.od-date-picker-btn:hover { color: #B5848B; }
.od-date-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.od-date-display:user-invalid:not(:focus) {
  border-color: #DB2777;
}

/* Empty states */
.od-empty { padding: 40px 20px; color: #94A3B8; font-size: 13px; }

/* Modal polish */
.od-modal-box { border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.od-modal-title { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; }

/* ── Mobile modal: bottom-sheet style, sticky header+footer, scrollable body ─ */
@media (max-width: 640px) {
  .od-modal-overlay {
    padding: 0;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: flex-end;
  }
  .od-modal-box {
    border-radius: 20px 20px 0 0;
    max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top, 0px)));
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  #od-booking-modal .od-modal-box {
    max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top, 0px)));
  }
  #od-msg-modal .od-modal-box {
    max-height: min(92dvh, calc(100dvh - env(safe-area-inset-top, 0px)));
  }
  /* Header: never scrolls away, always shows X */
  .od-modal-header {
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #F3F4F6;
    padding: 14px 18px !important;
    background: #fff;
    z-index: 5;
  }
  /* Form or plain div inside the box scrolls */
  .od-modal-box > form,
  .od-modal-box > .od-modal-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
  /* Footer: pinned to bottom inside the scrollable area */
  .od-modal-footer {
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #F3F4F6;
    padding: 12px 18px !important;
    z-index: 5;
    margin: 0 !important;
  }
  /* Make form fields inside the modal have tighter spacing */
  .od-modal-box .od-form-grid { gap: 10px; }
  .od-modal-box .od-field label { font-size: 12px; }
  .od-modal-box .od-input { font-size: 14px; padding: 8px 10px; }
}

/* Grid utilities */
.od-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .od-grid-2 { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════════════════
   SALON PUBLIC PAGE  (sp-*)  —  Full redesign
   Fonts: Cormorant Garamond (serif headings) + Inter (body)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --sp-serif:      'Cormorant Garamond', Georgia, "Times New Roman", serif;
  --sp-sans:       'Inter', system-ui, -apple-system, sans-serif;
  --sp-dark:       #1C1018;
  --sp-cream:      #F9F5F0;
  --sp-white:      #FFFFFF;
  --sp-rose:       #B5848B;
  --sp-rose-dark:  #9B6B72;
  --sp-warm-gray:  #8C7B74;
  --sp-line:       #E8E1DB;
}

.sp-page {
  background: #130B11;
  font-family: var(--sp-sans);
  color: var(--sp-dark);
  overflow-x: hidden; /* prevent any element from causing horizontal scroll */
}
.sp-page .page-shell { max-width: 100%; width: 100%; padding: 0; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.sp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(28, 16, 24, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sp-nav-brand {
  font-family: var(--sp-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.sp-nav-links { display: flex; align-items: center; gap: 32px; }
.sp-nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.sp-nav-links a:hover { color: rgba(255,255,255,0.9); }
.sp-nav-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.sp-nav-ig:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}
.sp-nav-ig i { font-size: 15px; }
/* Hidden on mobile — Instagram lives in hero instead */
@media (max-width: 768px) {
  .sp-nav-ig { display: none; }
}
.sp-nav-cta {
  background: var(--sp-rose);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  flex-shrink: 0;
}
.sp-nav-cta:hover { background: var(--sp-rose-dark); color: #fff; }
.sp-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sp-nav-lang .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.sp-nav-lang .lang-switcher-btn {
  color: rgba(255, 255, 255, 0.65);
}
.sp-nav-lang .lang-switcher-btn.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}
@media (max-width: 640px) {
  .sp-nav-right { gap: 8px; }
  .sp-nav-lang .lang-switcher-btn { padding: 5px 8px; }
  .sp-nav-cta { padding: 10px 16px; }
}

/* ── Hero section ───────────────────────────────────────────────────────── */
.sp-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: -1px; /* pull trust bar flush with gallery bottom seal */
  background:
    linear-gradient(160deg, rgba(20,10,16,0.82) 0%, rgba(28,14,22,0.78) 55%, rgba(28,14,22,0.90) 100%),
    linear-gradient(135deg, #2C1820 0%, #3D2030 30%, #4A2840 65%, #1C1018 100%);
}
.sp-hero-section::before {
  content: '';
  position: absolute;
  /* extend 4px past the bottom edge so it fully covers the seam */
  bottom: -4px; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #1C1018 0%, #1C1018 10%, transparent 100%);
  z-index: 20;
  pointer-events: none;
}
.sp-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 45%, rgba(181,132,139,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,10,16,0.20) 0%, transparent 100%);
}
.sp-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 5%;
  max-width: 740px;
}
.sp-eyebrow {
  font-family: var(--sp-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sp-rose);
  margin-bottom: 20px;
}
.sp-hero-title {
  font-family: var(--sp-serif);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.04;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.sp-hero-sub {
  font-family: var(--sp-serif);
  font-size: clamp(19px, 2.5vw, 26px);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  font-weight: 400;
  margin: 0 0 18px;
}
.sp-hero-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 500px;
}
.sp-hero-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.5;
}
.sp-hero-note i { flex-shrink: 0; margin-top: 2px; opacity: 0.85; }
.sp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.sp-hero-ig {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.sp-hero-ig i { font-size: 17px; }
.sp-hero-ig:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .sp-hero-ig { display: inline-flex; }
}
.sp-btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-rose);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  font-family: var(--sp-sans);
}
.sp-btn-hero:hover { background: var(--sp-rose-dark); color: #fff; transform: translateY(-1px); }
.sp-btn-hero-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.80);
}
.sp-btn-hero-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  transform: translateY(-1px);
}
.sp-hero-badge {
  position: absolute;
  bottom: 52px;
  right: 6%;
  z-index: 2;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── Trust bar ──────────────────────────────────────────────────────────── */
.sp-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  background: var(--sp-dark);
  padding: 22px 5%;
  overflow-x: auto;
  scrollbar-width: none;
}
.sp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  gap: 5px;
  flex-shrink: 0;
}
.sp-trust-item span { font-size: 13px; color: rgba(255,255,255,0.60); }
.sp-trust-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28) !important;
}
.sp-trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* ── Content section (white bg) ─────────────────────────────────────────── */
.sp-content-section {
  background: var(--sp-white);
  padding: 90px 5%;
}
.sp-section-inner { max-width: 1100px; margin: 0 auto; }
.sp-section-heading { margin-bottom: 52px; }
.sp-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sp-rose);
  margin-bottom: 12px;
}
.sp-section-title {
  font-family: var(--sp-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--sp-dark);
  line-height: 1.08;
  margin: 0;
}
.sp-section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sp-rose);
}

/* ── Services grid ──────────────────────────────────────────────────────── */
.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start; /* cards keep their own height when a sibling expands */
}
.sp-service-card {
  background: var(--sp-cream);
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(28,16,24,0.09);
}
.sp-service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.sp-service-name {
  font-family: var(--sp-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--sp-dark);
  margin: 0;
  line-height: 1.15;
}
.sp-service-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--sp-rose);
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-service-desc {
  font-size: 14px;
  color: var(--sp-warm-gray);
  line-height: 1.65;
  margin: 0;
}
.sp-service-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.sp-service-dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--sp-warm-gray);
  font-weight: 500;
}
.sp-service-note { font-size: 12px; color: var(--sp-warm-gray); font-style: italic; }
.sp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  background: #F3EEED;
  color: var(--sp-rose-dark);
  border: 1px solid #E8D5D6;
}
.sp-badge-required { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }
.sp-badge-soft     { background: #F3EEED; color: var(--sp-rose-dark); border-color: #E8D5D6; }
.sp-service-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-rose);
  margin-top: 8px;
  gap: 6px;
  transition: color 0.2s;
}
.sp-service-cta::after { content: '→'; transition: transform 0.2s; }
.sp-service-cta:hover { color: var(--sp-rose-dark); }
.sp-service-cta:hover::after { transform: translateX(4px); }
.sp-muted-msg { color: var(--sp-warm-gray); font-size: 15px; font-style: italic; }

/* ── Service header right (price + chevron) ──────────────────────────────── */
.sp-service-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.sp-service-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sp-expand-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(181,132,139,0.12);
  color: var(--sp-rose-dark);
  font-size: 11px;
  transition: transform 0.3s ease, background 0.2s;
  flex-shrink: 0;
}

/* ── Expandable card ─────────────────────────────────────────────────────── */
.sp-service-card--expandable { cursor: pointer; user-select: none; }
.sp-service-card--expandable:hover { box-shadow: 0 8px 28px rgba(181,132,139,0.18); }
.sp-service-card--expandable[aria-expanded="true"] { border-color: rgba(181,132,139,0.45); }
.sp-service-card--expandable[aria-expanded="true"] .sp-expand-icon {
  transform: rotate(180deg);
  background: rgba(181,132,139,0.22);
}

/* ── Price list (collapsed by default) ───────────────────────────────────── */
.sp-price-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  opacity: 0;
}
.sp-service-card--expandable[aria-expanded="true"] .sp-price-list {
  max-height: 800px;
  opacity: 1;
}
.sp-price-list-inner {
  padding-top: 12px;
  border-top: 1px solid var(--sp-line);
}
.sp-price-list-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-rose-dark);
  margin: 0 0 10px;
  opacity: 0.7;
}
.sp-price-items {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sp-price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(181,132,139,0.12);
  font-size: 13.5px;
}
.sp-price-item:last-child { border-bottom: none; }
.sp-price-item-name { color: var(--sp-dark); flex: 1; }
.sp-photo-badge { font-size: 11px; opacity: .7; cursor: default; }

/* Photo required note under price list item */
.sp-price-item--photo {
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.sp-photo-note {
  flex: 0 0 100%;           /* full row below name + price */
  font-size: 11px;
  font-weight: 600;
  color: #9B6B72;
  letter-spacing: .02em;
  margin-top: 3px;
  opacity: .9;
}

/* "Повеќе" hint on expandable service cards */
.sp-more-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sp-rose);
  opacity: .75;
  padding-top: 4px;
  transition: opacity .2s;
  pointer-events: none;
  user-select: none;
}
.sp-more-hint i { font-size: 10px; transition: transform .25s; }
/* Hide hint when card is expanded, animate chevron */
.sp-service-card--expandable[aria-expanded="true"] .sp-more-hint {
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.sp-service-card--expandable[aria-expanded="true"] .sp-more-hint i { transform: rotate(180deg); }
.sp-price-item-price {
  font-weight: 700;
  color: var(--sp-rose-dark);
  white-space: nowrap;
  font-size: 13px;
}
.sp-price-list-cta {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 4px;
}

/* ── Info section (hours + rules) ───────────────────────────────────────── */
.sp-info-section {
  background: #F2EDE8;
  padding: 90px 5%;
  border-top: 1px solid var(--sp-line);
  border-bottom: 1px solid var(--sp-line);
  position: relative;
  overflow: hidden;
}
/* Soft radial glows for depth */
.sp-info-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(181,132,139,0.13) 0%, transparent 68%);
  pointer-events: none;
}
.sp-info-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(181,132,139,0.09) 0%, transparent 68%);
  pointer-events: none;
}
.sp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* White lifted cards */
.sp-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 28px rgba(28,16,24,0.07), 0 1px 4px rgba(28,16,24,0.04);
  border: 1px solid rgba(181,132,139,0.14);
  position: relative;
  overflow: hidden;
}
/* Rose accent bar top-left */
.sp-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--sp-rose);
}

/* Card header row (kicker + open badge) */
.sp-info-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.sp-info-card-head .sp-kicker { margin-bottom: 0; }

/* Open now / Closed now live card */
.sp-open-badge {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  line-height: 1;
}
.sp-open-badge.sp-open-now {
  display: inline-flex;
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
}
.sp-open-badge.sp-closed-now {
  display: inline-flex;
  background: #FEF2F2;
  color: #991B1B;
  border-color: #FECACA;
}

/* Pulsing dot inside the card */
.sp-open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-open-now .sp-open-dot {
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: sp-pulse-green 2s ease-in-out infinite;
}
.sp-closed-now .sp-open-dot {
  background: #EF4444;
}
@keyframes sp-pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  60%  { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.sp-info-title {
  font-family: var(--sp-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--sp-dark);
  margin-top: 12px;
  margin-bottom: 28px;
  line-height: 1.15;
}
.sp-info-title em { font-style: italic; font-weight: 400; color: var(--sp-rose); }

/* Hours list */
.sp-hours-list, .sp-rules-list { list-style: none; padding: 0; margin: 0; }
.sp-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 10px;
  margin: 0 -10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--sp-dark);
  transition: background 0.15s;
}
.sp-hours-row + .sp-hours-row { border-top: 1px solid rgba(181,132,139,0.12); }
.sp-hours-row:hover { background: rgba(181,132,139,0.05); }
.sp-hours-day { font-weight: 500; display: flex; align-items: center; gap: 8px; }
.sp-hours-time { font-variant-numeric: tabular-nums; color: #555; }
.sp-hours-closed { opacity: 0.45; }
.sp-closed-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sp-warm-gray);
}

/* Today highlight */
.sp-hours-row.is-today {
  background: rgba(181,132,139,0.1) !important;
  border-top-color: transparent !important;
}
.sp-hours-row.is-today + .sp-hours-row { border-top-color: transparent; }
.sp-hours-row.is-today .sp-hours-day { color: var(--sp-rose); font-weight: 700; }
.sp-hours-row.is-today .sp-hours-time { color: var(--sp-rose); }
.sp-today-badge {
  display: none;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-rose);
  background: rgba(181,132,139,0.15);
  border-radius: 4px;
  padding: 2px 6px;
}

/* Rules list */
.sp-rules-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(181,132,139,0.12);
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  align-items: flex-start;
}
.sp-rules-list li:last-child { border-bottom: none; }

/* Circular icon pill */
.sp-rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(181,132,139,0.1);
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── CTA section ────────────────────────────────────────────────────────── */
.sp-cta-section {
  background: var(--sp-dark);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: -1px; /* seal bottom seam with footer */
}
/* Photo collage grid — fills the section background */
.sp-cta-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  z-index: 0;
}
.sp-cta-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.52) saturate(1.1) contrast(1.05);
}
/* Dark gradient overlay so text stays readable */
.sp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, #1C1018 0%, rgba(28,16,24,0.38) 28%, rgba(28,16,24,0.38) 72%, #1C1018 100%),
    radial-gradient(ellipse at 50% 50%, rgba(181,132,139,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.sp-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
@media (max-width: 600px) {
  .sp-cta-photos { grid-template-columns: repeat(3, 1fr); }
}
.sp-cta-title {
  font-family: var(--sp-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.sp-cta-title em { font-style: italic; font-weight: 400; color: var(--sp-rose); }
.sp-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.sp-footer-section {
  position: relative;
  background: #130B11;
  padding: 56px 5% max(20px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: -1px; /* seal bottom seam with page edge */
}

/* Top row: brand left, contact right */
.sp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}
.sp-footer-col { display: flex; flex-direction: column; gap: 10px; }

/* Brand */
.sp-footer-brand {
  font-family: var(--sp-serif);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.01em;
}
.sp-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin: 0;
  line-height: 1.5;
}

/* Contact (right) */
.sp-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.sp-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.sp-footer-contact a:hover { color: rgba(255,255,255,0.80); }

/* Bottom bar */
.sp-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  margin-bottom: 6px;
}

/* Horizontal nav in bottom bar */
.sp-footer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-footer-nav a:hover { color: rgba(255,255,255,0.75); }
.sp-footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Right side of bottom bar */
.sp-footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-footer-copy { font-size: 12px; color: rgba(255,255,255,0.20); }
.sp-footer-sep { font-size: 12px; color: rgba(255,255,255,0.14); }
.sp-footer-credit { font-size: 12px; color: rgba(255,255,255,0.20); }
.sp-footer-credit a {
  color: rgba(181,132,139,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-footer-credit a:hover { color: var(--sp-rose); }

/* ── Home page ──────────────────────────────────────────────────────────── */
.sp-home-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(20,10,16,0.78), rgba(20,10,16,0.92)),
    linear-gradient(135deg, #1C1018 0%, #2C1820 55%, #3A2030 100%);
  padding: 80px 5%;
}
.sp-home-hero-content { position: relative; z-index: 1; max-width: 680px; }
.sp-salon-grid { display: flex; flex-direction: column; gap: 16px; }
.sp-salon-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sp-cream);
  border: 1px solid var(--sp-line);
  border-radius: 16px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.sp-salon-card:hover { box-shadow: 0 8px 28px rgba(28,16,24,0.08); }
.sp-salon-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sp-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sp-serif);
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}
.sp-salon-info { flex: 1; }
.sp-salon-name {
  font-family: var(--sp-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--sp-dark);
}
.sp-salon-address {
  font-size: 13px;
  color: var(--sp-warm-gray);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sp-btn-small {
  display: inline-flex;
  align-items: center;
  background: var(--sp-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sp-btn-small:hover { background: var(--sp-rose-dark); color: #fff; }
.sp-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--sp-warm-gray);
  font-size: 15px;
  font-style: italic;
  font-family: var(--sp-serif);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sp-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .sp-info-card { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .sp-nav-links { display: none; }
  .sp-hero-section { min-height: 80vh; }
  .sp-hero-content { padding: 60px 5%; }
  .sp-hero-badge { display: none; }
  .sp-trust-bar { justify-content: center; }
  .sp-trust-item { padding: 0 20px; }
  .sp-content-section, .sp-info-section, .sp-cta-section { padding: 64px 5%; }
  .sp-services-grid { grid-template-columns: 1fr; }
  .sp-footer-section { padding: 44px 5% 0; }
  .sp-footer-inner { flex-direction: column; gap: 28px; }
  .sp-footer-contact { align-items: flex-start; }
  .sp-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .sp-footer-nav { justify-content: center; }
  .sp-footer-bottom-right {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .sp-hero-title { font-size: 40px; }
  .sp-hero-actions { flex-direction: column; }
  .sp-btn-hero { width: 100%; text-align: center; }
  .sp-salon-card { flex-wrap: wrap; }
  .sp-btn-small { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════════════════
   BOOKING FORM  (bk-*)  —  New & updated classes
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Page background ─────────────────────────────────────────────────────── */
.bk-page { background: var(--bk-bg); }
.bk-page .page-shell { width: min(100%, 440px); padding: 0 0 80px; }

/* ── Progress bar ────────────────────────────────────────────────────────── */
.bk-progress {
  display: flex;
  align-items: center;
  padding: 16px 20px 12px;
  background: var(--bk-bg);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--bk-line);
}
.bk-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.bk-ps-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bk-line);
  color: var(--bk-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.bk-progress-step.active .bk-ps-num { background: var(--bk-accent); color: #fff; }
.bk-progress-step.done .bk-ps-num   { background: var(--bk-accent); color: #fff; }
.bk-ps-label {
  font-size: 9px;
  color: var(--bk-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}
.bk-progress-step.active .bk-ps-label { color: var(--bk-accent); }
.bk-progress-step.done   .bk-ps-label { color: var(--bk-accent); }
.bk-progress-line {
  flex: 1;
  height: 2px;
  background: var(--bk-line);
  margin-bottom: 14px;
  transition: background 0.3s;
}
.bk-progress-line.done { background: var(--bk-accent); }

/* ── Brand header (step 1) ───────────────────────────────────────────────── */
.bk-brand-header {
  display: flex;
  align-items: flex-start;
  padding: 28px 0 24px;
  gap: 12px;
}
.bk-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding-right: 28px;
}
.bk-salon-initial { display: none; }
.bk-logo-wrap { display: flex; justify-content: center; margin-bottom: 12px; }
.bk-logo-placeholder {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--bk-accent-bg, #F5ECEB);
  border: 1.5px dashed rgba(196,135,138,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--bk-accent, #C4878A); font-size: 26px;
  transition: border-color 0.15s, background 0.15s;
}
.bk-logo-img {
  width: 72px; height: 72px;
  border-radius: 20px;
  object-fit: contain;
}
.bk-salon-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--bk-text);
  margin-bottom: 2px;
  text-align: center;
}

/* ── Service rows ────────────────────────────────────────────────────────── */
.bk-service-row {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: left;
  gap: 14px;
  margin-bottom: 10px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.08s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bk-service-row:hover  { border-color: var(--bk-accent); box-shadow: 0 4px 16px rgba(196,135,138,0.10); }
.bk-service-row:active { transform: scale(0.985); box-shadow: none; }
.bk-service-body { flex: 1; }
.bk-service-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.bk-service-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-accent);
}
.bk-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 7px;
}
.bk-service-dur {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--bk-muted);
}
.bk-service-note { font-size: 11px; color: var(--bk-muted); font-style: italic; }
.bk-service-desc { font-size: 13px; color: var(--bk-muted); line-height: 1.5; margin: 5px 0 0; }
.bk-photo-badge {
  display: inline-flex;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #FDECEA;
  color: var(--bk-accent);
  border: 1px solid #F0C8C8;
  font-weight: 600;
}
.bk-photo-badge.required { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }
.bk-chevron { color: var(--bk-muted); font-size: 14px; flex-shrink: 0; }
.bk-empty-msg { font-size: 13px; color: var(--bk-muted); font-style: italic; margin: 12px 0; }

/* ── Selected service pill ───────────────────────────────────────────────── */
.bk-selected-service {
  background: var(--bk-accent-bg);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bk-text);
  margin: 8px 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Calendar improvements ───────────────────────────────────────────────── */
.bk-cal-empty { pointer-events: none; min-height: 40px; }
.bk-cal-day {
  width: 40px;
  height: 40px;
  font-size: 13px;
  border-radius: 50%;
  transition: background 0.15s, transform 0.08s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bk-cal-day:not(.disabled):hover  { background: var(--bk-accent-bg); transform: scale(1.06); }
.bk-cal-day:not(.disabled):active { background: var(--bk-accent); color: #fff; transform: scale(0.93); }
.bk-cal-day.selected {
  background: var(--bk-accent);
  color: #fff;
  font-weight: 700;
  transform: scale(1.06);
  box-shadow: 0 3px 10px rgba(196,135,138,0.28);
}
/* Today ring — visible even when date is disabled */
.bk-cal-day.today:not(.selected) {
  font-weight: 700;
  color: var(--bk-accent);
  box-shadow: inset 0 0 0 1.5px var(--bk-accent);
}

/* ── Slots ───────────────────────────────────────────────────────────────── */
.bk-slots-section {
  margin: 16px 0 8px;
  flex-shrink: 0;
}
.bk-slot {
  border-radius: 10px;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  min-height: 44px;
  min-width: 0;
  width: 100%;
  opacity: 1;
  transition: border-color 0.14s, background 0.14s, transform 0.08s, box-shadow 0.14s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bk-slot.bk-slot-animate {
  animation: bk-slot-in 0.42s ease-out var(--bk-slot-delay, 0ms) both;
}
.bk-slot:hover  { border-color: var(--bk-accent); transform: translateY(-2px); box-shadow: 0 3px 10px rgba(196,135,138,0.18); }
.bk-slot:active { transform: scale(0.93); }
.bk-slot.selected {
  background: var(--bk-accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196,135,138,0.32);
}
.bk-slot.selected:active { transform: scale(0.96); }
@keyframes bk-slot-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (hover: hover) and (pointer: fine) and (min-width: 641px) {
  @keyframes bk-slot-in-rich {
    from { opacity: 0; transform: translateY(6px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .bk-slot.bk-slot-animate {
    animation-name: bk-slot-in-rich;
    animation-duration: 0.4s;
  }
}
.bk-slots-hint {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--bk-muted);
  margin: 4px 0;
  padding: 8px 0;
  text-align: center;
}
.bk-slots-loading {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bk-muted);
  padding: 8px 0;
}
.bk-slots-loading i { animation: bk-spin 0.9s linear infinite; }
@keyframes bk-spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .bk-slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .bk-slot {
    padding: 13px 10px;
    font-size: 14px;
  }
  .bk-slot.bk-slot-animate {
    animation-name: bk-slot-in;
    animation-duration: 0.42s;
    animation-timing-function: ease-out;
  }
}

/* ── Expandable service cards (with price sub-items) ─────────────────────── */
.bk-svc-card {
  border: 1px solid var(--bk-line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bk-white);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.bk-svc-card.has-selection {
  border-color: var(--bk-accent);
  box-shadow: 0 0 0 2.5px rgba(196,135,138,0.18);
}
.bk-svc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.12s, transform 0.08s;
  -webkit-tap-highlight-color: transparent;
}
.bk-svc-card-header:hover  { background: rgba(196,135,138,0.05); }
.bk-svc-card-header:active { background: rgba(196,135,138,0.11); transform: scale(0.99); }
.bk-svc-chevron {
  font-size: 14px;
  color: var(--bk-muted);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.bk-svc-chevron--open { transform: rotate(180deg); }

/* ── Selected summary shown inside card header when collapsed ─────────────── */
.bk-svc-selected-summary {
  display: none;
  font-size: 11px;
  color: var(--bk-accent);
  font-weight: 600;
  margin-top: 5px;
  align-items: center;
  gap: 4px;
}
.bk-svc-card.has-selection .bk-svc-selected-summary { display: flex; }

/* ── Animated item drawer ─────────────────────────────────────────────────── */
.bk-svc-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.4,0,0.2,1),
              border-top-color 0.28s;
  border-top: 1px solid transparent;
}
.bk-svc-items.open {
  grid-template-rows: 1fr;
  border-top-color: var(--bk-line);
}
.bk-svc-items-inner {
  overflow: hidden;
  padding: 6px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
}
.bk-svc-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bk-muted);
  padding: 8px 6px 4px;
}
.bk-price-item-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 11px 12px;
  cursor: pointer;
  text-align: left;
  gap: 10px;
  min-height: 52px;
  transition: background 0.14s, border-color 0.14s, box-shadow 0.14s, transform 0.08s;
  -webkit-tap-highlight-color: transparent;
}
.bk-price-item-btn:hover  { background: var(--bk-accent-bg); border-color: rgba(196,135,138,0.3); }
.bk-price-item-btn:active { transform: scale(0.97); background: var(--bk-accent-bg); }
.bk-price-item-btn.selected {
  background: var(--bk-accent-bg);
  border-color: var(--bk-accent);
  box-shadow: 0 0 0 2px rgba(196,135,138,0.13);
}

/* ── Check circle shown on selected price item ──────────────────────────── */
.bk-pi-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bk-line);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  margin-right: 2px;
}
.bk-price-item-btn.selected .bk-pi-check {
  background: var(--bk-accent);
  color: #fff;
  transform: scale(1.05);
}
.bk-pi-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.bk-pi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--bk-text);
}
.bk-pi-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--bk-accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.bk-cal-day.closed {
  opacity: 0.28;
  text-decoration: line-through;
}
.bk-cal-day.early-open:not(.selected) {
  box-shadow: inset 0 0 0 2px var(--bk-accent);
  font-weight: 600;
}
.bk-early-open-hint {
  font-size: 0.85rem;
  color: var(--bk-accent);
  margin: 0 0 10px;
  line-height: 1.4;
}

/* ── Selection summary ───────────────────────────────────────────────────── */
.bk-selection-summary {
  background: var(--bk-accent-bg);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(196,135,138,0.18);
}
.bk-sum-svc  { font-size: 14px; font-weight: 700; color: var(--bk-text); margin-bottom: 4px; }
.bk-sum-when { font-size: 12px; color: var(--bk-muted); margin-bottom: 3px; }
.bk-sum-price { font-size: 14px; color: var(--bk-accent); font-weight: 700; }

/* ── Form fields ─────────────────────────────────────────────────────────── */
.bk-fields-group { margin-top: 16px; }
.bk-field input, .bk-field textarea {
  border-radius: 8px;
  border: 1px solid var(--bk-line) !important;
  border-bottom: 1px solid var(--bk-line) !important;
  background: var(--bk-white) !important;
  padding: 11px 12px !important;
}
.bk-field input:focus, .bk-field textarea:focus {
  border-color: var(--bk-accent) !important;
  border-bottom-color: var(--bk-accent) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,135,138,0.10);
}
.bk-req { color: var(--bk-accent); font-size: 11px; }
.bk-opt { color: var(--bk-muted); font-size: 11px; }

/* ── Review cards ────────────────────────────────────────────────────────── */
.bk-review-label {
  font-size: 10px;
  color: var(--bk-muted);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bk-review-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--bk-muted);
  margin-bottom: 5px;
}
.bk-review-row i { font-size: 13px; flex-shrink: 0; color: var(--bk-accent); }
.bk-review-svc { font-size: 15px; font-weight: 700; color: var(--bk-text); margin-bottom: 8px; }

/* ── Rules section ───────────────────────────────────────────────────────── */
.bk-rules-section { margin-bottom: 16px; }
.bk-rules-intro {
  font-size: 13px;
  font-weight: 500;
  color: var(--bk-muted, #6B7280);
  margin: -6px 0 12px;
  line-height: 1.4;
}
.bk-rules-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 16px;
}
.bk-rules-list li {
  font-size: 12px;
  color: var(--bk-text);
  line-height: 1.55;
  margin-bottom: 8px;
}
.bk-rules-list li:last-child { margin-bottom: 0; }
.bk-legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
  user-select: none;
}
.bk-consent-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  border: 1.5px solid var(--bk-line, #D1D5DB);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  display: inline-grid;
  place-content: center;
}
.bk-consent-check:checked {
  background: var(--bk-accent);
  border-color: var(--bk-accent);
}
.bk-consent-check:checked::before {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.bk-consent-text {
  font-size: 12px;
  color: var(--bk-text);
  line-height: 1.55;
}
.bk-rules-legal-line a {
  color: var(--bk-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bk-rules-legal-line a:hover { opacity: 0.85; }

/* ── Notice strip ────────────────────────────────────────────────────────── */
.bk-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #92400E;
  line-height: 1.6;
}
.bk-notice i { flex-shrink: 0; margin-top: 2px; }

/* ── Primary button ──────────────────────────────────────────────────────── */
.bk-btn-primary {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px;
  margin-top: 12px;
  transition: background 0.2s, transform 0.08s, opacity 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bk-btn-primary:not(:disabled):hover  { transform: translateY(-1px); opacity: 0.92; box-shadow: 0 4px 14px rgba(196,135,138,0.3); }
.bk-btn-primary:not(:disabled):active { transform: scale(0.97); opacity: 0.85; box-shadow: none; }
.bk-btn-primary.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.bk-btn-primary.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bk-spin 0.8s linear infinite;
}

/* ── Back button — enlarged touch target ─────────────────────────────────── */
.bk-back-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--bk-text);
  transition: background 0.12s, transform 0.08s;
  -webkit-tap-highlight-color: transparent;
}
.bk-back-btn:hover  { background: var(--bk-accent-bg); }
.bk-back-btn:active { transform: scale(0.88); background: var(--bk-accent-bg); }

/* ── Contact pill ────────────────────────────────────────────────────────── */
.bk-contact-pill {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.12s, transform 0.08s;
}
.bk-contact-pill:active { transform: scale(0.92); }

/* ── Success page ────────────────────────────────────────────────────────── */
.bk-success-wrap {
  min-height: 100svh;
  background: var(--bk-bg);
  padding: 24px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bk-success-top {
  width: 100%;
  max-width: 440px;
  margin-bottom: 20px;
}
.bk-success-card {
  position: relative;
  background: var(--bk-white);
  border-radius: 22px;
  padding: 36px 28px 28px;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 48px rgba(0,0,0,0.07);
  border: 1px solid var(--bk-line);
}
.bk-success-icon-wrap {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Animated SVG check ─────────────────────────────────────────────────── */
.bk-check-svg {
  width: 90px;
  height: 90px;
  overflow: visible;
}
.bk-check-circle {
  stroke: var(--bk-accent);
  fill: none;
  stroke-dasharray: 167;
  stroke-dashoffset: 167;
  animation: bk-circle-draw 0.65s cubic-bezier(0.65,0,0.45,1) forwards 0.1s;
}
.bk-check-mark {
  stroke: var(--bk-accent);
  fill: none;
  stroke-dasharray: 62;
  stroke-dashoffset: 62;
  animation: bk-mark-draw 0.4s ease forwards 0.75s;
}
@keyframes bk-circle-draw { to { stroke-dashoffset: 0; } }
@keyframes bk-mark-draw   { to { stroke-dashoffset: 0; } }

/* ── Confetti dots ──────────────────────────────────────────────────────── */
.bk-confetti-dot {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: bk-confetti-fly 1.9s ease forwards;
}
@keyframes bk-confetti-fly {
  0%   { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty) + 130px)) rotate(400deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bk-check-circle  { animation: none; stroke-dashoffset: 0; }
  .bk-check-mark    { animation: none; stroke-dashoffset: 0; }
  .bk-slot.bk-slot-animate { animation: none; opacity: 1; transform: none; }
  .bk-confirm-bar   { animation: none; }
}

/* ── Sub-service confirm bar (sticky bottom of step 1) ──────────────────── */
.bk-confirm-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  background: #fff;
  border-top: 1px solid var(--bk-line);
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.10);
  z-index: 200;
  animation: bk-bar-up 0.22s cubic-bezier(0.3,0,0.3,1);
}
@keyframes bk-bar-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.bk-confirm-bar-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bk-confirm-bar-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--bk-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bk-confirm-bar-meta {
  font-size: 12px;
  color: var(--bk-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bk-confirm-bar-btn {
  flex-shrink: 0;
  background: var(--bk-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.08s, opacity 0.1s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bk-confirm-bar-btn:active { transform: scale(0.95); opacity: 0.82; }

/* ── Customer-side toast notification ───────────────────────────────────── */
.bk-toast {
  position: fixed;
  bottom: 28px;
  right: 16px;
  max-width: 300px;
  background: #1F2937;
  color: #fff;
  padding: 12px 16px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  z-index: 9999;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  pointer-events: none;
  animation: bk-toast-in 0.2s cubic-bezier(0.3,0,0.3,1);
}
.bk-toast-hiding {
  animation: bk-toast-out 0.18s ease forwards;
}
@keyframes bk-toast-in  {
  from { transform: translateY(12px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
@keyframes bk-toast-out {
  to { transform: translateY(10px) scale(0.94); opacity: 0; }
}

.bk-success-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--bk-text);
  margin-bottom: 12px;
}
.bk-success-msg {
  font-size: 14px;
  color: var(--bk-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.bk-success-summary {
  background: var(--bk-accent-bg);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}
.bk-ss-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--bk-muted);
  margin-bottom: 14px;
}
.bk-ss-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--bk-text);
  margin-bottom: 8px;
}
.bk-ss-row:last-child { margin-bottom: 0; }
.bk-ss-row i { font-size: 14px; color: var(--bk-accent); flex-shrink: 0; }
.bk-ss-status { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--bk-line); }
.bk-status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  background: #FFF3CD;
  color: #856404;
  border: 1px solid #FFE083;
}
.bk-success-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #F9FAFB;
  border: 1px solid var(--bk-line);
  border-radius: 10px;
  padding: 13px 14px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--bk-muted);
  text-align: left;
  width: 100%;
  line-height: 1.6;
}
.bk-success-notice i { flex-shrink: 0; margin-top: 1px; }
.bk-success-notice--warn {
  background: #FEF3C7;
  border-color: #FCD34D;
  color: #92400E;
}

/* ── Success page btn-primary (full-width link) ──────────────────────────── */
.bk-success-card .bk-btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── Error banner ────────────────────────────────────────────────────────── */
.bk-error-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid #fecaca;
}
.bk-error-banner i { flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   HERO MASONRY GALLERY  (sp-gallery-*)
   Replace placeholder .sp-gal-card divs with <img> tags pointing to your
   nail photos whenever you have them — the layout/animation stays the same.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero split layout ───────────────────────────────────────────────────── */
.sp-hero-section {
  background: #1C1018; /* solid dark base so gallery has something to render onto */
}

/* Desktop: overlay exposes the gallery on the right */
@media (min-width: 900px) {
  .sp-hero-overlay {
    background: linear-gradient(
      to right,
      #1C1018       0%,
      #1C1018       36%,
      rgba(28,16,24,0.94) 48%,
      rgba(28,16,24,0.38) 66%,
      rgba(28,16,24,0.14) 88%,
      rgba(28,16,24,0.06) 100%
    ) !important;
  }
  .sp-hero-content {
    width: 48%;
    max-width: none !important;
    min-width: 340px;
  }
}

/* Mobile: full dark overlay keeps text readable over background gallery */
@media (max-width: 899px) {
  .sp-hero-overlay {
    background: rgba(28,16,24,0.86) !important;
  }
  .sp-hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ── Gallery container ───────────────────────────────────────────────────── */
.sp-gallery {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 1px;        /* seal the 1px gap at the section bottom edge */
  width: 100%;         /* full-width on mobile (behind text) */
  z-index: 1;
  overflow: hidden;
}

.sp-gallery-inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 8px 0 0;
  position: relative;
  /* Avoid filter here — it breaks transform animations in WebKit/Blink/Firefox. */
}

/* Dim photos with an overlay instead of filter (works in all browsers). */
.sp-gallery-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 16, 0.36);
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 900px) {
  .sp-gallery {
    width: 63%;
  }
  .sp-gallery-inner {
    padding: 0 24px 0 0;
  }
  .sp-gallery-inner::before {
    background: rgba(20, 10, 16, 0.30);
  }
}

/* Top & bottom fade — matches the hero dark base */
.sp-gallery::before,
.sp-gallery::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  pointer-events: none;
  z-index: 10;
}
.sp-gallery::before {
  top: 0;
  background: linear-gradient(to bottom, #1C1018, transparent);
}
.sp-gallery::after {
  bottom: 0;
  background: linear-gradient(to top, #1C1018, transparent);
}

/* ── Column ──────────────────────────────────────────────────────────────── */
.sp-gallery-col {
  flex: 1;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (min-width: 900px) {
  @supports (overflow: clip) {
    .sp-gallery-col {
      overflow: clip;
    }
  }
}

/* Show only 3 columns on small mobile, 4 on tablet */
@media (max-width: 480px) {
  .sp-gallery-col:nth-child(n+4) { display: none; }
}
@media (min-width: 481px) and (max-width: 899px) {
  .sp-gallery-col:nth-child(n+5) { display: none; }
}

/* ── Track (the scrolling list) ──────────────────────────────────────────── */
.sp-gallery-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sp-gallery-track.sp-track-up {
  -webkit-animation: sp-scroll-up var(--dur, 24s) linear infinite;
  -moz-animation: sp-scroll-up var(--dur, 24s) linear infinite;
  animation: sp-scroll-up var(--dur, 24s) linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sp-gallery-track.sp-track-down {
  -webkit-animation: sp-scroll-up var(--dur, 24s) linear infinite reverse;
  -moz-animation: sp-scroll-up var(--dur, 24s) linear infinite reverse;
  animation: sp-scroll-up var(--dur, 24s) linear infinite reverse;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@-webkit-keyframes sp-scroll-up {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); }
}
@keyframes sp-scroll-up {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); }
}

/* Honour prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .sp-gallery-track {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    animation: none !important;
  }
}

/* ── Individual card (now <img> tags with real photos) ───────────────────── */
.sp-gal-card {
  border-radius: 14px;
  flex-shrink: 0;
  width: 100%;
  min-height: 120px;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #1a1018;
  box-shadow: 0 4px 18px rgba(0,0,0,0.30);
}

/* ── Placeholder colour classes no longer needed (kept for fallback) ──────── */

/* Soft blush pink */
.nc-a {
  background: linear-gradient(148deg, #F8CDD0 0%, #EDB5BA 55%, #E0A0A8 100%);
}
/* Warm nude / beige */
.nc-b {
  background: linear-gradient(148deg, #EDD5C0 0%, #D8BCA0 55%, #C8A890 100%);
}
/* Pearl cream (shimmer added below) */
.nc-c {
  background: linear-gradient(152deg, #FAF5F0 0%, #EEE6DC 50%, #E4D8CC 100%);
}
/* Dusty mauve */
.nc-d {
  background: linear-gradient(148deg, #CCA8B5 0%, #B09098 55%, #A07888 100%);
}
/* Rose gold (shimmer added below) */
.nc-e {
  background: linear-gradient(148deg, #ECCAB8 0%, #D8A898 55%, #C89080 100%);
}
/* Deep wine / berry */
.nc-f {
  background: linear-gradient(148deg, #703060 0%, #542850 55%, #402040 100%);
}
/* Champagne gold (shimmer added below) */
.nc-g {
  background: linear-gradient(148deg, #EED090 0%, #D4B060 55%, #BCA040 100%);
}
/* Warm cream (shimmer added below) */
.nc-h {
  background: linear-gradient(152deg, #FAF0E8 0%, #EDE0D0 50%, #E0CFBC 100%);
}
/* Mink / taupe */
.nc-i {
  background: linear-gradient(148deg, #B89880 0%, #907868 55%, #786055 100%);
}
/* Dusty rose */
.nc-j {
  background: linear-gradient(148deg, #D8B0B8 0%, #C09098 55%, #B07880 100%);
}

/* Shimmer highlight on light / metallic cards */
.nc-c::after,
.nc-e::after,
.nc-g::after,
.nc-h::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 18%,
    rgba(255,255,255,0.28) 38%,
    rgba(255,255,255,0.10) 52%,
    transparent 68%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Subtle sheen stripe on dark cards to give depth */
.nc-f::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 40%,
    rgba(255,255,255,0.04) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════════
   TRUST BAR — mobile fix  +  SERVICE CARDS — adaptive sizing
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Trust bar: phone → 2×2 grid ─────────────────────────────────────────── */

/*
 * On tablets (≤ 768 px) tighten padding so all 4 items fit in one row
 * and override the old flex-start that was causing left-alignment.
 */
@media (max-width: 768px) {
  .sp-trust-bar {
    justify-content: center !important;
    overflow-x: visible;
  }
  .sp-trust-item { padding: 0 18px; }
}

/*
 * On phones (≤ 560 px) one row no longer fits.
 * Switch to a 2 × 2 grid: hide separators, wrap items into 2 columns.
 */
@media (max-width: 560px) {
  .sp-trust-bar {
    flex-wrap: wrap;
    padding: 0;
    overflow-x: hidden;
  }
  .sp-trust-sep { display: none; }
  .sp-trust-item {
    flex: 0 0 50%;
    padding: 16px 8px;
    text-align: center;
  }
  /* Horizontal divider between the two rows (items at child-positions 1 and 3) */
  .sp-trust-item:nth-child(1),
  .sp-trust-item:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  /* Vertical divider between the two columns (left column = child 1 and 5) */
  .sp-trust-item:nth-child(1),
  .sp-trust-item:nth-child(5) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ── Service cards: progressive density ──────────────────────────────────── */
/*
 * sp-svcs-many    = 3–4 services (applied from template via |length check)
 * sp-svcs-compact = 5+ services
 *
 * Grid minmax also narrows so more cards fit per row on desktop as
 * the count grows, keeping the section from becoming too tall.
 */

/* ─ 3-4 services ─────────────────────────────────────────────────────────── */
.sp-svcs-many {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.sp-svcs-many .sp-service-card {
  padding: 20px 22px 18px;
  gap: 10px;
}
.sp-svcs-many .sp-service-name  { font-size: 20px; }
.sp-svcs-many .sp-service-desc  { font-size: 13px; }
.sp-svcs-many .sp-service-price { font-size: 16px; }
.sp-svcs-many .sp-service-cta   { margin-top: 4px; }

/* ── Toast notification ──────────────────────────────────────────────────── */
.od-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1F2937;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  white-space: nowrap;
}
.od-toast.od-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.od-toast.od-toast-success { background: #065F46; }
.od-toast.od-toast-error   { background: #991B1B; }

.od-btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.od-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: od-spin 0.65s linear infinite;
  color: #fff;
}
@keyframes od-spin {
  to { transform: rotate(360deg); }
}

.vm-filter-pills .vm-pill {
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ─ 1-2 services: center in a max-width container ───────────────────────── */
.sp-svcs-centered {
  grid-template-columns: repeat(2, minmax(300px, 420px));
  justify-content: center;
}
@media (max-width: 700px) {
  .sp-svcs-centered { grid-template-columns: 1fr; }
}

/* ─ 5+ services ──────────────────────────────────────────────────────────── */
.sp-svcs-compact {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.sp-svcs-compact .sp-service-card {
  padding: 16px 18px 14px;
  gap: 8px;
  border-radius: 14px;
}
.sp-svcs-compact .sp-service-card:hover { transform: translateY(-3px); }
.sp-svcs-compact .sp-service-name  { font-size: 18px; }
.sp-svcs-compact .sp-service-desc  { font-size: 12px; line-height: 1.5; }
.sp-svcs-compact .sp-service-price { font-size: 15px; }
.sp-svcs-compact .sp-service-dur   { font-size: 11px; }
.sp-svcs-compact .sp-service-cta   { font-size: 12px; margin-top: 2px; }

/* ── Price table group rows ─────────────────────────────────────────────── */
.od-price-group-row td { padding: 0 !important; border-bottom: none !important; }
.od-price-group-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 10px 10px 6px;
  background: #F8F9FB;
  border: none;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #374151;
  transition: background .1s;
  text-align: left;
}
.od-price-group-toggle:hover { background: #F1F5F9; }
.od-group-chevron { font-size: 11px; color: #9CA3AF; transition: transform .2s; }
.od-price-group-toggle.od-group-collapsed .od-group-chevron { transform: rotate(-90deg); }
.od-price-group-name { flex: 1; }
.od-price-group-count {
  font-size: 10px; font-weight: 700;
  background: #E5E7EB; color: #374151;
  border-radius: 8px; padding: 1px 6px; min-width: 18px; text-align: center;
}
.od-price-group-item { background: #FDFCFC; }
.od-price-group-item.od-group-hidden { display: none; }

/* Photo required note in name cell */
.od-price-photo-note {
  display: block;
  font-size: 10.5px;
  color: #4F46E5;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: .02em;
}
.od-price-photo-note i { font-size: 10px; }

/* ── Booking policy section ──────────────────────────────────────────────── */
.od-policy-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.od-policy-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #374151;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F3F4F6;
}
.od-policy-hint {
  font-size: 12.5px;
  color: #6B7280;
  margin: -10px 0 14px;
  line-height: 1.5;
}
.od-policy-hint code {
  background: #F3F4F6;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
  color: #9B6B72;
}
.od-policy-toggles { display: flex; flex-direction: column; gap: 2px; }
.od-policy-messages { display: flex; flex-direction: column; gap: 14px; }
.od-policy-msg-row { display: flex; flex-direction: column; gap: 5px; }
.od-policy-msg-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.od-policy-msg-row textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  font-family: inherit;
  font-size: 13.5px;
  line-height: 1.5;
  border: 1px solid #D1D5DB;
  border-radius: 9px;
  padding: 10px 12px;
  color: #111827;
  background: #FAFAFA;
  transition: border .12s;
}
.od-policy-msg-row textarea:focus {
  outline: none;
  border-color: #9B6B72;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(155,107,114,.1);
}
.od-policy-save-bar {
  padding: 4px 0 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  font-family: 'Inter', sans-serif;
  padding: 24px 16px;
}
.auth-wrap { width: 100%; max-width: 420px; }
.auth-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 40px 36px 32px;
}
.auth-logo {
  width: 52px; height: 52px;
  background: #111827;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin: 0 auto 20px;
}
.auth-icon-circle {
  width: 60px; height: 60px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #059669;
  margin: 0 auto 20px;
}
.auth-title { font-size: 22px; font-weight: 700; color: #111827; text-align: center; margin: 0 0 6px; }
.auth-sub   { font-size: 14px; color: #6B7280; text-align: center; margin: 0 0 24px; }
.auth-form  { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label { font-size: 13px; font-weight: 500; color: #374151; }
.auth-input {
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px; font-family: inherit;
  transition: border-color .15s;
  outline: none;
}
.auth-input:focus  { border-color: #111827; }
.auth-input-error  { border-color: #EF4444 !important; }
.auth-field-error  { font-size: 12px; color: #EF4444; }
.auth-btn {
  width: 100%; padding: 11px;
  background: #111827; color: #fff;
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.auth-btn:hover { background: #1F2937; }
.auth-alert {
  background: #FEF2F2; border: 1px solid #FECACA;
  color: #B91C1C; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; margin-bottom: 16px;
}
.auth-link-sm { font-size: 13px; color: #6B7280; text-decoration: none; }
.auth-link-sm:hover { color: #111827; text-decoration: underline; }
.auth-row-between { display: flex; justify-content: space-between; align-items: center; }

/* Owner sidebar user footer */
.od-user-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 16px 10px;
}
.od-user-name { font-size: 13px; font-weight: 600; color: #F9FAFB; margin-bottom: 6px; }
.od-user-actions { display: flex; flex-direction: column; gap: 4px; }
.od-user-action-link {
  font-size: 12px; color: #9CA3AF;
  text-decoration: none; padding: 2px 0;
  display: flex; align-items: center; gap: 6px;
  transition: color .15s;
}
.od-user-action-link:hover { color: #F9FAFB; }

/* ═══════════════════════════════════════════════════════════════════════════
   CGRID CUSTOM CALENDAR
   ═══════════════════════════════════════════════════════════════════════════ */
.cgrid-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  gap: 12px;
  flex-wrap: wrap;
}
.cgrid-nav { display: flex; align-items: center; gap: 6px; }
.cgrid-nav-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #E5E7EB; border-radius: 8px;
  background: #fff; color: #4B5563;
  cursor: pointer; font-size: 14px;
  transition: background .12s, border-color .12s;
}
.cgrid-nav-btn:hover { background: #F3F4F6; border-color: #D1D5DB; }
.cgrid-range { min-width: 200px; text-align: center; font-size: 13px; font-weight: 600; color: #111827; }
.cgrid-today-btn {
  height: 32px; padding: 0 12px;
  border: 1px solid #E5E7EB; border-radius: 8px;
  background: #fff; color: #374151;
  font-size: 12px; font-weight: 500; font-family: inherit;
  cursor: pointer; transition: background .12s;
}
.cgrid-today-btn:hover { background: #F3F4F6; }
.cgrid-actions { display: flex; align-items: center; gap: 8px; }
.cgrid-view-toggle {
  display: flex;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}
.cgrid-view-btn {
  padding: 6px 16px;
  font-size: 12px; font-weight: 500; font-family: inherit;
  background: #fff; color: #6B7280;
  border: none; cursor: pointer;
  transition: background .12s, color .12s;
}
.cgrid-view-btn.active { background: #111827; color: #fff; }

/* Grid container */
.cgrid-outer {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  margin-bottom: 10px;
  overflow-x: auto;
}
/* Week view headers */
.cgrid-head {
  display: grid;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
  min-width: 860px;
}
.cgrid-head-time { border-right: 1px solid #E5E7EB; padding: 12px 10px; }
.cgrid-head-day {
  padding: 10px 6px;
  text-align: center;
  border-right: 1px solid #E5E7EB;
  cursor: pointer;
}
.cgrid-head-day:last-child { border-right: 0; }
.cgrid-head-dow { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #6B7280; }
.cgrid-head-num {
  width: 28px; height: 28px;
  margin: 4px auto 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 14px; font-weight: 600; color: #111827;
}
.cgrid-head-today .cgrid-head-num { background: #111827; color: #fff; }
.cgrid-head-closed { background: #F3F4F6; }
.cgrid-head-closed .cgrid-head-dow,
.cgrid-head-closed .cgrid-head-num { color: #9CA3AF; }
.cgrid-closed-tag { font-size: 9px; color: #9CA3AF; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* Time rows — column timeline layout */
.cgrid-body {
  display: grid;
  border-top: 1px solid #E5E7EB;
  min-width: 860px;
}
.cgrid-times {
  border-right: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.cgrid-times .cgrid-time-label {
  display: flex;
  align-items: flex-start;
  padding: 8px 10px 0;
  box-sizing: border-box;
  border-right: none;
  border-bottom: 1px solid #F3F4F6;
}
.cgrid-col {
  position: relative;
  border-right: 1px solid #F3F4F6;
  min-width: 0;
}
.cgrid-col:last-child { border-right: 0; }
.cgrid-col-closed { background: #F9FAFB; }
.cgrid-col-slots { position: relative; }
.cgrid-slot {
  border-bottom: 1px solid #F3F4F6;
  box-sizing: border-box;
  cursor: pointer;
}
.cgrid-slot:hover { background: #F9FAFB; }
.cgrid-slot-closed { background: #F9FAFB; cursor: default; }
.cgrid-slot-closed:hover { background: #F9FAFB; }
.cgrid-slot-past { opacity: .55; cursor: default; }
.cgrid-slot-past:hover { background: transparent; }
.cgrid-slot-busy { cursor: default; }
.cgrid-slot-busy:hover { background: transparent; }
.cgrid-col-events,
.cgrid-day-events {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}
.cgrid-span-event {
  position: absolute;
  left: 4px;
  right: 4px;
  pointer-events: auto;
  box-sizing: border-box;
  min-height: 24px;
}
.cgrid-span-event .cgrid-chip,
.cgrid-span-event .cgrid-day-chip {
  height: 100%;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
}
.cgrid-span-event .cgrid-day-chip {
  flex-direction: row;
  padding: 10px 14px;
}
.cgrid-span-block .cgrid-chip { background: #EDE9FE; border-left-color: #7C3AED; }

.cgrid-row {
  display: grid;
  border-bottom: 1px solid #F3F4F6;
  min-width: 860px;
}
.cgrid-row:last-child { border-bottom: 0; }
.cgrid-time-label {
  padding: 8px 10px 0;
  border-right: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 11px; font-weight: 500; color: #6B7280;
}
.cgrid-cell {
  border-right: 1px solid #F3F4F6;
  padding: 4px;
  min-height: 68px;
  overflow: hidden;
  min-width: 0;
  position: relative;
  transition: background .1s;
  cursor: pointer;
}
.cgrid-cell:last-child { border-right: 0; }
.cgrid-cell:hover { background: #F9FAFB; }
.cgrid-cell-closed { background: #F9FAFB; cursor: default; }
.cgrid-cell-closed:hover { background: #F9FAFB; }
.cgrid-cell-past { opacity: .55; cursor: default; }
.cgrid-cell-occupied {
  background: #FFFBEB;
  cursor: default;
}
.cgrid-cell-occupied:hover { background: #FFFBEB; }
.cgrid-occupied-mark {
  font-size: 10px;
  color: #92400E;
  padding: 2px 4px;
  font-weight: 500;
}

/* Booking chips */
.cgrid-chip {
  border-radius: 6px;
  border-left: 3px solid transparent;
  padding: 3px 6px;
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.35;
  transition: opacity .1s, filter .1s;
  /* Contain chip inside the cell — never overflow into adjacent cell borders */
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}
.cgrid-chip:hover { opacity: .85; filter: brightness(.97); }
.cgrid-chip-name { font-weight: 600; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.cgrid-chip-svc { font-size: 9px; color: #6B7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.cgrid-chip-meta { color: #6B7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; margin-top: auto; font-size: 9px; }
.cgrid-chip-block { font-size: 10px; color: #7C3AED; font-style: italic; }

/* Status colours */
.cgrid-chip-pending   { background:#FEF3C7; border-left-color:#D97706; }
.cgrid-chip-approved  { background:#D1FAE5; border-left-color:#059669; }
.cgrid-chip-completed { background:#DBEAFE; border-left-color:#2563EB; }
.cgrid-chip-rejected  { background:#FCE7F3; border-left-color:#DB2777; }
.cgrid-chip-cancelled { background:#F3F4F6; border-left-color:#6B7280; }
.cgrid-chip-no_show   { background:#FEE2E2; border-left-color:#C2410C; }
.cgrid-chip-block     { background:#EDE9FE; border-left-color:#7C3AED; }

/* Day view — timeline */
.cgrid-day-timeline {
  display: grid;
  grid-template-columns: 52px 1fr;
}
.cgrid-day-times .cgrid-day-time {
  display: flex;
  align-items: flex-start;
  padding: 8px 16px 0 16px;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  border-bottom: 1px solid #F3F4F6;
}
.cgrid-day-track {
  position: relative;
  border-left: 1px solid #F3F4F6;
}
.cgrid-day-slots { height: 100%; }
.cgrid-day-slot { border-bottom: 1px solid #F3F4F6; }
.cgrid-day-chip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-radius: 10px;
  border-left: 4px solid transparent;
  padding: 10px 14px;
  height: 100%;
  box-sizing: border-box;
}
.cgrid-day-chip-body { flex: 1; min-width: 0; }
.cgrid-day-chip-status {
  flex-shrink: 0;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 600;
  align-self: flex-start;
}

.cgrid-day-row {
  display: flex;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid #F3F4F6;
  transition: background .1s;
  cursor: pointer;
}
.cgrid-day-row:last-child { border-bottom: 0; }
.cgrid-day-row:hover { background: #F9FAFB; }
.cgrid-day-time { width: 52px; flex-shrink: 0; font-size: 12px; font-weight: 500; color: #6B7280; padding-top: 4px; }
.cgrid-day-content { flex: 1; min-height: 44px; }
.cgrid-day-empty { font-size: 12px; color: #D1D5DB; padding-top: 4px; }
.cgrid-day-occupied { font-size: 12px; color: #92400E; padding-top: 4px; font-weight: 500; }
.cgrid-day-row-occupied { background: #FFFBEB; cursor: default; }
.cgrid-day-row-occupied:hover { background: #FFFBEB; }
.cgrid-day-chip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 10px;
  border-left: 4px solid transparent;
  padding: 10px 14px;
  margin-bottom: 6px;
}
.cgrid-day-chip-name { font-size: 14px; font-weight: 600; color: #111827; }
.cgrid-day-chip-svc  { font-size: 13px; color: #4B5563; margin-top: 2px; }
.cgrid-day-chip-meta { font-size: 12px; color: #6B7280; margin-top: 3px; }

/* Legend */
.cgrid-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  margin-bottom: 6px;
}
.cgrid-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #4B5563; }
.cgrid-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 768px) {
  .cgrid-toolbar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cgrid-range { min-width: unset; }
}

/* ═══════════════════════════════════════════════════════════
   Mobile calendar (mcgrid) — month + agenda, ≤640px
   ═══════════════════════════════════════════════════════════ */
.od-cal-mobile { display: none; }
.od-cal-desktop { display: block; }

@media (max-width: 640px) {
  .od-cal-desktop { display: none !important; }
  .od-cal-mobile { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden; }
  .od-cal-header-sub { display: none; }

  /* Single scroll surface: lock page scroll while calendar is open */
  .od-main:has(#od-sec-calendar.active) {
    overflow: hidden;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  .od-main:has(#od-sec-calendar.active) .od-dashboard-lang {
    flex-shrink: 0;
  }

  .od-main:has(#od-sec-calendar.active) .od-alert {
    flex-shrink: 0;
  }

  #od-sec-calendar.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  #od-sec-calendar.active .od-cal-header {
    margin-bottom: 6px;
    flex-shrink: 0;
  }

  .od-cal-mobile.is-loading { opacity: 0.92; }

  .mcgrid-toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  .mcgrid-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
  }

  .mcgrid-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--od-border, #E5E7EB);
    background: #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mcgrid-month-label {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--od-text, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
    min-width: 0;
    padding: 0 2px;
  }

  .mcgrid-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .mcgrid-today-btn {
    border: 1px solid var(--od-border, #E5E7EB);
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
  }

  .mcgrid-action-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mcgrid-action-btn .mcgrid-action-label {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  @media (max-width: 360px) {
    .mcgrid-action-btn .mcgrid-action-label { display: none; }
    .mcgrid-action-btn { flex: 0 0 40px; padding: 0; }
  }

  .mcgrid-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
  }

  .mcgrid-collapse-shell {
    --mc-collapse: 0;
    --mc-month-h: 292px;
    --mc-week-h: 64px;
    position: relative;
    flex-shrink: 0;
    height: calc(var(--mc-month-h) * (1 - var(--mc-collapse)) + var(--mc-week-h) * var(--mc-collapse));
    transition: height 200ms ease;
    overflow: hidden;
    border-bottom: 1px solid var(--od-border, #E5E7EB);
    margin-bottom: 0;
  }

  .mcgrid-month {
    position: absolute;
    inset: 0 0 auto 0;
    padding: 0 2px 8px;
    opacity: calc(1 - var(--mc-collapse) * 1.2);
    transform: translateY(calc(var(--mc-collapse) * -12px));
    transition: opacity 180ms ease, transform 200ms ease;
    z-index: 2;
  }

  .mcgrid-week-strip {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 4px 2px 8px;
    opacity: var(--mc-collapse);
    transform: translateY(calc((1 - var(--mc-collapse)) * 8px));
    transition: opacity 180ms ease, transform 200ms ease;
    z-index: 3;
  }

  .mcgrid-dow-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
  }

  .mcgrid-dow {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
  }

  .mcgrid-dow-sun { color: #DC2626; }

  .mcgrid-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }

  .mcgrid-day {
    min-height: 44px;
    border: none;
    background: transparent;
    border-radius: 10px;
    padding: 4px 2px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
  }

  .mcgrid-day-out .mcgrid-day-num { color: #D1D5DB; }
  .mcgrid-day-closed .mcgrid-day-num { color: #9CA3AF; }
  .mcgrid-day-num {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--od-text, #111827);
    border-radius: 8px;
  }

  .mcgrid-day-today .mcgrid-day-num {
    box-shadow: inset 0 0 0 1.5px var(--od-text, #111827);
  }

  .mcgrid-day-selected .mcgrid-day-num {
    background: var(--od-text, #111827);
    color: #fff;
  }

  .mcgrid-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 6px;
    width: 100%;
    padding: 0 2px;
  }

  .mcgrid-ind-bar {
    flex: 1;
    max-width: 10px;
    height: 3px;
    border-radius: 2px;
  }

  .mcgrid-ind-more {
    font-size: 8px;
    font-weight: 700;
    color: #6B7280;
    line-height: 1;
  }

  .mcgrid-week-day {
    border: none;
    background: transparent;
    border-radius: 10px;
    padding: 4px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    font-family: inherit;
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
  }

  .mcgrid-week-dow {
    font-size: 10px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
  }

  .mcgrid-week-num {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    color: var(--od-text, #111827);
  }

  .mcgrid-week-day-today .mcgrid-week-num {
    box-shadow: inset 0 0 0 1.5px var(--od-text, #111827);
  }

  .mcgrid-week-day-selected .mcgrid-week-num {
    background: var(--od-text, #111827);
    color: #fff;
  }

  .mcgrid-week-day-closed .mcgrid-week-num { color: #9CA3AF; }

  .mcgrid-agenda {
    padding: 12px 0 24px;
    min-height: min(50vh, 320px);
  }

  .mcgrid-agenda-header {
    padding: 0 4px 12px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 8px;
  }

  .mcgrid-agenda-date {
    font-size: 16px;
    font-weight: 700;
    color: var(--od-text, #111827);
    text-transform: capitalize;
  }

  .mcgrid-agenda-count {
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
  }

  .mcgrid-agenda-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 2px;
  }

  .mcgrid-agenda-list.mcgrid-agenda-animate {
    animation: mcgridAgendaIn 180ms ease;
  }

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

  .mcgrid-agenda-card {
    display: grid;
    grid-template-columns: 4px auto 1fr auto;
    gap: 10px;
    align-items: start;
    width: 100%;
    text-align: left;
    padding: 12px 12px 12px 0;
    border: 1px solid var(--od-border, #E5E7EB);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: box-shadow 150ms ease, border-color 150ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mcgrid-agenda-card:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: #D1D5DB;
  }

  .mcgrid-agenda-bar {
    width: 4px;
    align-self: stretch;
    border-radius: 0 4px 4px 0;
    margin-left: 0;
  }

  .mcgrid-agenda-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--od-text, #111827);
    white-space: nowrap;
    padding-top: 1px;
  }

  .mcgrid-agenda-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mcgrid-agenda-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--od-text, #111827);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mcgrid-agenda-photo {
    font-size: 12px;
    color: #6B7280;
  }

  .mcgrid-agenda-svc {
    font-size: 12px;
    color: #6B7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mcgrid-agenda-status {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    padding-top: 2px;
  }

  .mcgrid-agenda-empty {
    text-align: center;
    padding: 32px 16px;
    color: #6B7280;
  }

  .mcgrid-agenda-empty i {
    font-size: 28px;
    color: #D1D5DB;
    display: block;
    margin-bottom: 8px;
  }

  .mcgrid-agenda-empty p {
    margin: 0 0 16px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mcgrid-collapse-shell,
  .mcgrid-month,
  .mcgrid-week-strip,
  .mcgrid-agenda-list.mcgrid-agenda-animate {
    transition: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Service cards — redesigned expandable layout
   ═══════════════════════════════════════════════════════════ */
.od-svc-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.od-svc-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.od-svc-card--inactive { opacity: .65; }

/* Card header */
.od-svc-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 16px;
}
.od-svc-card-left { flex: 1; min-width: 0; }
.od-svc-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--od-text, #111827);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.od-svc-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #6B7280;
}
.od-svc-card-meta span { display: flex; align-items: center; gap: 4px; }
.od-svc-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 5px;
  background: #F3F4F6;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}
.od-svc-meta-tag-photo { background: #EEF2FF; color: #4F46E5; border-color: #C7D2FE; }
.od-svc-card-desc {
  font-size: 12.5px;
  color: #9CA3AF;
  margin-top: 6px;
  line-height: 1.5;
}
.od-svc-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Status badges */
.od-badge-active { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.od-badge-muted  { background: #F3F4F6; color: #6B7280; border: 1px solid #E5E7EB; }

/* Danger ghost button */
.od-btn-danger-ghost {
  background: transparent;
  border: 1px solid #FCA5A5;
  color: #DC2626;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background .12s, color .12s;
}
.od-btn-danger-ghost:hover { background: #FEF2F2; border-color: #DC2626; }

/* Price list toggle section */
.od-svc-price-panel {
  border-top: 1px solid #F3F4F6;
}
.od-svc-price-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #FAFAFA;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  transition: background .12s;
  text-align: left;
}
.od-svc-price-toggle:hover { background: #F3F4F6; }
.od-svc-price-toggle[aria-expanded="true"] { background: #F5F5F5; }
.od-svc-price-toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.od-svc-price-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #E5E7EB;
  color: #374151;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}
.od-price-toggle-chevron {
  font-size: 13px;
  color: #9CA3AF;
  transition: transform .2s;
}
.od-price-toggle-chevron--open { transform: rotate(180deg); }

/* Price list body */
.od-svc-price-body {
  padding: 0 20px 18px;
  background: #FAFAFA;
}

/* Price table */
.od-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 14px;
}
.od-price-table thead th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9CA3AF;
  padding: 10px 10px 8px;
  border-bottom: 1px solid #E5E7EB;
}
.od-price-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: background .1s;
}
.od-price-table tbody tr:hover { background: #F9FAFB; }
.od-price-table tbody tr:last-child { border-bottom: none; }
.od-price-table td {
  padding: 10px 10px;
  vertical-align: middle;
  color: #374151;
}
.od-price-td-group { color: #9B6B72; font-size: 11.5px; font-weight: 600; }
.od-price-td-name  { font-weight: 500; }
.od-price-td-price { font-weight: 600; color: #111827; white-space: nowrap; }
.od-price-col-photo { width: 90px; text-align: center; }
.od-price-col-actions { width: 110px; text-align: right; }

/* Drag-to-reorder */
.od-price-col-drag { width: 28px; padding-right: 0 !important; }
.od-price-td-drag  { padding-right: 0 !important; }
.od-drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  cursor: grab;
  font-size: 15px;
  padding: 2px 4px;
  border-radius: 5px;
  transition: color .12s, background .12s;
  /* Larger tap target on touch devices */
  min-width: 32px;
  min-height: 32px;
  touch-action: none; /* allow JS to control touch behaviour */
}
.od-drag-handle:hover { color: #64748B; background: #F1F5F9; }
.od-drag-handle:active { cursor: grabbing; }
@media (max-width: 600px) {
  .od-drag-handle { min-width: 36px; min-height: 36px; font-size: 18px; color: #9CA3AF; }
}
.od-price-drag-row { transition: opacity .15s; }
.od-price-drag-row.od-drag-active { opacity: .35; }
.od-price-drag-row.od-drag-over {
  background: #EEF2FF;
  outline: 2px dashed #818CF8;
  outline-offset: -2px;
}
.od-btn-text-sm {
  font-size: 12px;
  padding: 2px 0;
  margin-left: 8px;
}
.od-price-empty {
  font-size: 13px;
  color: #9CA3AF;
  padding: 14px 0 8px;
  font-style: italic;
}
.od-price-add-bar {
  padding-top: 10px;
  border-top: 1px dashed #E5E7EB;
  margin-top: 4px;
}

/* Price modal form layout */
.od-form-grid-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.od-field-full { grid-column: 1 / -1; }
.od-field-grow { grid-column: span 1; }
.od-label-hint { font-size: 11px; font-weight: 400; color: #9CA3AF; }

/* Toggle row (photo required) */
.od-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 12px 14px;
}
.od-toggle-info { flex: 1; }
.od-toggle-label { font-size: 13.5px; font-weight: 600; color: #111827; display: block; }
.od-toggle-desc  { font-size: 12px; color: #6B7280; margin-top: 2px; }

/* Mobile overrides */
@media (max-width: 600px) {
  .od-svc-card-header { flex-direction: column; gap: 12px; }
  .od-svc-card-actions { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .od-form-grid-price { grid-template-columns: 1fr; }

  /* Price table: horizontal scroll — wrap + min-width keeps text intact */
  .od-price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -8px;
    padding-bottom: 4px;
  }
  .od-price-table { min-width: 460px; }
  .od-price-td-name { white-space: nowrap; }
}

/* ── Language switcher ─────────────────────────────────────────────────────── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.lang-switcher-btn {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.55;
  transition: background 0.15s, opacity 0.15s;
  font-family: inherit;
}
.lang-switcher-btn:hover { opacity: 0.85; }
.lang-switcher-btn.is-active {
  opacity: 1;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.od-lang-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.od-dashboard-lang {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 120;
}
.od-dashboard-lang .lang-switcher {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}
@media (max-width: 900px) {
  .od-dashboard-lang {
    top: 10px;
    right: 12px;
  }
}
.bk-lang-wrap {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 300;
}
.bk-lang-wrap .lang-switcher {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}
.auth-lang-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* ── Customer booking step 1 hero ─────────────────────────────────────────── */
.bk-step-hero {
  position: relative;
  margin: 0 0 24px;
  padding: 22px 20px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff 0%, #faf5f4 55%, #f3e8e6 100%);
  border: 1px solid rgba(196, 135, 138, 0.18);
  box-shadow: 0 8px 32px rgba(196, 135, 138, 0.1);
  overflow: hidden;
}
.bk-step-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 135, 138, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bk-step-hero-back {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--bk-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(196, 135, 138, 0.15);
}
.bk-step-hero-inner { position: relative; z-index: 1; }
.bk-step-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bk-accent);
  margin: 0 0 6px;
}
.bk-step-hero-title {
  font-family: var(--bk-serif, "Cormorant Garamond", serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--bk-text);
  margin: 0 0 8px;
  line-height: 1.15;
}
.bk-step-hero-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bk-muted);
  margin: 0 0 12px;
  max-width: 34ch;
}
.bk-step-hero-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #9B6B72;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(196, 135, 138, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 0;
}
.bk-step-hero-note i { flex-shrink: 0; margin-top: 1px; }

/* Step 1 floating back control — all booking steps; hidden until JS enables */
.bk-step1-back-fab {
  position: fixed;
  left: 16px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 210;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 135, 138, 0.22);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.12);
  color: var(--bk-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  animation: bk-back-fab-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
body.bk-back-fab-visible .bk-step1-back-fab {
  display: inline-flex;
}
.bk-step1-back-fab:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 135, 138, 0.45);
  box-shadow: 0 10px 28px rgba(196, 135, 138, 0.22);
  color: var(--bk-text);
}
.bk-step1-back-fab:active { transform: scale(0.97); }
.bk-step1-back-fab-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #faf0ef, #f3e4e2);
  color: var(--bk-accent);
  font-size: 14px;
  animation: bk-back-nudge 2.8s ease-in-out infinite;
}
@keyframes bk-back-fab-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bk-back-nudge {
  0%, 100% { transform: translateX(0); }
  45%      { transform: translateX(-3px); }
  55%      { transform: translateX(-3px); }
}
body.bk-step1-confirm-open .bk-step1-back-fab {
  bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}
body.bk-step1-confirm-open .bk-toast {
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}

/* ── Owner reference photos ───────────────────────────────────────────────── */
.od-photo-thumb-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.od-photo-blurred {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
  border: 1px solid #E5E7EB;
}
.od-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.od-photo-none {
  margin: 8px 0 0;
  font-size: 12px;
  color: #94A3B8;
}
.od-photo-controls { margin-top: 8px; }
.bk-photo-abuse-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #6B7280;
}
.bk-verify-email-icon,
.bk-verify-sms-icon,
.bk-verify-failed-icon {
  font-size: 48px;
  color: #C4878A;
}
.bk-verify-failed-icon { color: #DC2626; }
.bk-verify-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}
.bk-verify-resend-form {
  margin-top: 20px;
}
.bk-verify-resend-form .bk-btn-outline {
  width: 100%;
}
.bk-verify-otp-form {
  margin-top: 20px;
  text-align: left;
}
.bk-otp-input {
  letter-spacing: 0.35em;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
.od-bk-photo-thumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 6px 10px 6px 6px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #FAFBFD;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.od-bk-photo-thumb:hover {
  border-color: #C4878A;
  box-shadow: 0 2px 10px rgba(196, 135, 138, 0.12);
}
.od-bk-photo-thumb img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.od-bk-photo-thumb-lg img { width: 72px; height: 72px; }
.od-bk-no-photo {
  margin: 8px 0 0;
  font-size: 12px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.od-booking-photo-section {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #EEF1F6;
}
.od-booking-photo-empty {
  font-size: 13px;
  color: #94A3B8;
  padding: 8px 0;
}
.od-modal-photo { max-width: 520px; }
.od-photo-modal-body {
  padding: 0 20px 12px;
  text-align: center;
}
.od-photo-modal-body img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  object-fit: contain;
}
.cgrid-chip-photo {
  display: inline-flex;
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.85;
  vertical-align: middle;
}

/* ── Calendar toolbar button overflow fix ─────────────────────────────────── */
.cgrid-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  flex: 1 1 auto;
}
.cgrid-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.cgrid-actions .od-btn-compact {
  padding: 6px 12px;
  font-size: 12px;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
}
.cgrid-toolbar {
  overflow: hidden;
}
@media (max-width: 640px) {
  .cgrid-actions {
    width: 100%;
    justify-content: stretch;
  }
  .cgrid-action-btns {
    flex: 1 1 100%;
  }
  .cgrid-action-btns .od-btn-compact {
    flex: 1 1 calc(50% - 3px);
    justify-content: center;
  }
}

/* ── Owner dashboard overview modernization ───────────────────────────────── */
.od-page-top-dashboard { margin-bottom: 8px; }
.od-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.od-quick-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.1s;
  min-width: 0;
}
.od-quick-action:hover {
  border-color: #C4878A;
  box-shadow: 0 3px 12px rgba(196, 135, 138, 0.1);
}
.od-quick-action i { color: #B5848B; font-size: 15px; }
.od-quick-action em {
  font-style: normal;
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 2px;
}
.od-stats-modern {
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 12px;
}
.od-stats-modern .od-stat {
  position: relative;
  overflow: hidden;
  padding: 16px 14px 14px;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.od-stats-modern .od-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}
.od-stat-link {
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.od-stat-link:focus-visible {
  outline: 2px solid #D97706;
  outline-offset: 2px;
}
.od-stat-pending.od-stat-link:active {
  transform: scale(0.98);
}
.od-stat-today.od-stat-link:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}
.od-stat-today.od-stat-link:active {
  transform: scale(0.98);
}
.od-stat-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.od-stat-pending { background: linear-gradient(160deg, #FFFBEB 0%, #FEF3C7 100%); }
.od-stat-pending .od-stat-icon-wrap { background: rgba(217, 119, 6, 0.15); color: #B45309; }
.od-stat-today { background: linear-gradient(160deg, #ECFDF5 0%, #D1FAE5 100%); }
.od-stat-today .od-stat-icon-wrap { background: rgba(5, 150, 105, 0.12); color: #047857; }
.od-stat-upcoming { background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 100%); }
.od-stat-upcoming .od-stat-icon-wrap { background: rgba(37, 99, 235, 0.12); color: #1D4ED8; }
.od-stat-noshow { background: linear-gradient(160deg, #FFF7ED 0%, #FFEDD5 100%); }
.od-stat-noshow .od-stat-icon-wrap { background: rgba(194, 65, 12, 0.12); color: #C2410C; }
.od-stat-completed { background: linear-gradient(160deg, #F5F3FF 0%, #EDE9FE 100%); }
.od-stat-completed .od-stat-icon-wrap { background: rgba(109, 40, 217, 0.12); color: #6D28D9; }
.od-stat-revenue-week { background: linear-gradient(160deg, #FDF2F8 0%, #FCE7F3 100%); }
.od-stat-revenue-total { background: linear-gradient(160deg, #F0FDFA 0%, #CCFBF1 100%); }
.od-stat-revenue-week .od-stat-icon-wrap { background: rgba(190, 24, 93, 0.1); color: #BE185D; }
.od-stat-revenue-total .od-stat-icon-wrap { background: rgba(13, 148, 136, 0.12); color: #0F766E; }
.od-stats-modern .od-stat-value { font-size: 24px; margin-bottom: 2px; }
.od-stats-modern .od-stat-label { text-transform: none; letter-spacing: 0; font-size: 12px; }
.od-revenue-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94A3B8;
  margin: -12px 0 20px;
}
.od-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .od-dash-grid { grid-template-columns: 1fr; }
}
.od-card-accent {
  border-top: 3px solid #E5E7EB;
}
.od-card-pending { border-top-color: #D97706; }
.od-card-accent:not(.od-card-pending) { border-top-color: #059669; }
.od-card-sub {
  font-size: 12px;
  color: #94A3B8;
  margin: 4px 0 0;
}
.od-card-title i { margin-right: 6px; opacity: 0.7; }
.od-today-body { flex: 1; min-width: 0; }
.od-today-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #6D28D9;
  margin-top: 4px;
}
.od-empty-soft {
  text-align: center;
  padding: 28px 16px;
  color: #94A3B8;
}
.od-empty-soft i {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}
.od-empty-soft p { margin: 0; font-size: 13px; }
.od-empty-success i { color: #059669; opacity: 0.7; }
.od-today-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.od-bk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.od-bk-actions .od-btn {
  min-width: 0;
  flex-shrink: 1;
}
.od-page-actions .od-btn {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 480px) {
  .od-page-actions { flex-direction: column; width: 100%; }
  .od-page-actions .od-btn { width: 100%; justify-content: center; }
  .bk-step-hero-title { font-size: 24px; }
  .bk-step-hero { padding: 20px 16px 18px; }
  .bk-step1-back-fab { left: 12px; padding: 9px 14px 9px 10px; }
}

/* ── Salon page hero note + manage booking page ───────────────────────────── */
.od-badge-customer-cancel {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  font-size: 11px;
}

.bk-manage-wrap {
  min-height: 100svh;
  background: var(--bk-bg);
  padding: 24px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bk-manage-top {
  width: 100%;
  max-width: 480px;
  margin-bottom: 16px;
}
.bk-manage-alerts { width: 100%; max-width: 480px; margin-bottom: 12px; }
.bk-manage-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 8px;
}
.bk-manage-alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.bk-manage-card {
  background: var(--bk-white);
  border-radius: 22px;
  padding: 28px 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 6px 48px rgba(0,0,0,0.07);
  border: 1px solid var(--bk-line);
}
.bk-manage-success-card { text-align: center; }
.bk-manage-success-icon { font-size: 48px; color: #059669; margin-bottom: 12px; }
.bk-manage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.bk-manage-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk-muted);
  margin: 0;
}
.bk-manage-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.bk-manage-status-pending { background: #FEF9C3; color: #78350F; }
.bk-manage-status-approved { background: #D1FAE5; color: #064E3B; }
.bk-manage-status-rejected { background: #FCE7F3; color: #831843; }
.bk-manage-status-cancelled { background: #F3F4F6; color: #374151; }
.bk-manage-status-completed { background: #DBEAFE; color: #1E3A8A; }
.bk-manage-status-no_show { background: #FEE0CC; color: #7C2D12; }
.bk-manage-title {
  font-family: var(--bk-serif, Georgia, serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--bk-text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.bk-manage-lead {
  font-size: 15px;
  color: var(--bk-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}
.bk-manage-summary {
  background: var(--bk-bg);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}
.bk-manage-rules {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--bk-muted);
}
.bk-manage-rules ul { margin: 8px 0 0; padding-left: 18px; }
.bk-manage-rules li { margin-bottom: 6px; }
.bk-manage-cancel-section { margin-bottom: 20px; }
.bk-manage-cancel-hint { font-size: 14px; color: var(--bk-muted); margin: 0 0 12px; }
.bk-manage-cancel-warn,
.bk-manage-cancel-info {
  font-size: 14px;
  color: var(--bk-muted);
  line-height: 1.55;
  margin: 0;
  padding: 12px 14px;
  background: var(--bk-bg);
  border-radius: 12px;
}
.bk-manage-cancel-warn { color: #92400E; background: #FFFBEB; border: 1px solid #FDE68A; }
.bk-manage-help {
  font-size: 13px;
  color: var(--bk-muted);
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-top: 16px;
  border-top: 1px solid var(--bk-line);
}
.bk-manage-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.bk-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #DC2626;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
}
.bk-btn-danger:hover { color: #fff; opacity: 0.92; }
.bk-btn-danger:active { transform: scale(0.98); }
.bk-btn-sm { padding: 11px 16px; font-size: 14px; width: fit-content; }
.bk-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--bk-muted);
  border: 1px solid var(--bk-line);
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.bk-btn-ghost:hover { background: var(--bk-bg); color: var(--bk-text); }
.bk-success-card .bk-btn-manage { width: 100%; margin-bottom: 10px; }
.bk-success-card .bk-btn-ghost { width: 100%; }

/* Multi-service booking */
.bk-service-row.selected {
  border-color: var(--bk-accent);
  background: rgba(196, 135, 138, 0.08);
  box-shadow: 0 0 0 2px rgba(196, 135, 138, 0.25);
}
.bk-svc-card.has-selection {
  border-color: var(--bk-accent);
}
.bk-multi-summary {
  margin: 16px 0;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(196, 135, 138, 0.25);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.bk-multi-line { margin-bottom: 6px; }
.bk-multi-total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
  font-weight: 600;
  color: var(--bk-accent-dark, #8B5A5E);
}
.bk-step1-continue { width: 100%; margin-top: 12px; }
.od-service-checks {
  display: grid;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
}
.od-service-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.od-owner-services-summary {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
  line-height: 1.4;
}
.od-field-span-2 { grid-column: 1 / -1; }
.od-booking-schedule { margin-top: 12px; }
.od-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.od-schedule-table th,
.od-schedule-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}
.cgrid-chip-svc {
  font-size: 10px;
  color: #6B7280;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bk-ss-schedule {
  margin: 8px 0 0 28px;
  font-size: 13px;
  color: #6B7280;
}
.bk-ss-schedule-row { margin-bottom: 4px; }
.bk-ss-schedule-total {
  margin-top: 6px;
  font-weight: 600;
  color: #374151;
}

/* ════════════════════════════════════════════════════════════════════════════
   VREMIO PLATFORM LANDING  (vm-*)
   ════════════════════════════════════════════════════════════════════════════ */
.vm-page {
  --vm-text: #1a1f3a;
  --vm-text-muted: #5c6478;
  --vm-bg: #f7f8fc;
  --vm-bg-alt: #eef1f8;
  --vm-white: #ffffff;
  --vm-accent: #6366f1;
  --vm-accent-soft: #818cf8;
  --vm-accent-bg: rgba(99, 102, 241, 0.08);
  --vm-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 48%, #a78bfa 100%);
  --vm-shadow: 0 8px 32px rgba(26, 31, 58, 0.08);
  --vm-radius: 16px;
  --vm-line: rgba(26, 31, 58, 0.08);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--vm-text);
  background: var(--vm-bg);
}
.vm-page .page-shell {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Nav */
.vm-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vm-line);
}
.vm-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vm-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vm-text);
  text-decoration: none;
  background: var(--vm-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vm-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--vm-line);
  border-radius: 12px;
  background: var(--vm-white);
  font-size: 22px;
  color: var(--vm-text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.vm-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vm-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vm-text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.vm-nav-link:hover { color: var(--vm-text); background: var(--vm-accent-bg); }
.vm-nav-link--outline {
  border: 1px solid var(--vm-line);
  color: var(--vm-text);
}
.vm-nav-lang .lang-switcher { margin-left: 4px; }

/* Hero */
.vm-hero {
  position: relative;
  padding: 72px 20px 80px;
  overflow: hidden;
}
.vm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(139, 92, 246, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.vm-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.vm-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vm-accent);
  margin: 0 0 16px;
}
.vm-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--vm-text);
}
.vm-hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vm-text-muted);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.vm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Buttons */
.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s, opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.vm-btn:active { transform: scale(0.97); }
.vm-btn-primary {
  background: var(--vm-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.vm-btn-primary:hover { color: #fff; box-shadow: 0 6px 28px rgba(99, 102, 241, 0.45); }
.vm-btn-secondary {
  background: var(--vm-white);
  color: var(--vm-accent);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
}
.vm-btn-secondary:hover { background: var(--vm-accent-bg); color: var(--vm-accent); }
.vm-btn-ghost {
  background: transparent;
  color: var(--vm-text-muted);
  border: 1.5px solid var(--vm-line);
}
.vm-btn-ghost:hover { color: var(--vm-text); border-color: rgba(99, 102, 241, 0.3); }
.vm-btn-sm { padding: 10px 18px; font-size: 14px; }

/* Sections */
.vm-section { padding: 64px 20px; }
.vm-section-alt { background: var(--vm-bg-alt); }
.vm-container { max-width: 1120px; margin: 0 auto; }
.vm-section-head { margin-bottom: 32px; }
.vm-section-head-center { text-align: center; }
.vm-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vm-accent);
  margin: 0 0 8px;
}
.vm-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
}
.vm-section-sub {
  font-size: 16px;
  color: var(--vm-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}
.vm-section-head-center .vm-section-sub { margin: 0 auto; }

/* Search & filters */
.vm-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.vm-search-input-wrap {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--vm-white);
  border: 1px solid var(--vm-line);
  border-radius: 12px;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(26, 31, 58, 0.04);
}
.vm-search-input-wrap i { color: var(--vm-text-muted); font-size: 16px; }
.vm-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--vm-text);
  outline: none;
}
.vm-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.vm-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--vm-white);
  border: 1px solid var(--vm-line);
  color: var(--vm-text-muted);
  text-decoration: none;
  transition: all 0.15s;
}
.vm-pill:hover { border-color: var(--vm-accent-soft); color: var(--vm-accent); }
.vm-pill.is-active {
  background: var(--vm-accent-bg);
  border-color: var(--vm-accent);
  color: var(--vm-accent);
}

/* Business cards */
.vm-business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.vm-business-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--vm-white);
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius);
  padding: 24px;
  box-shadow: var(--vm-shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.vm-business-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 31, 58, 0.12);
}
.vm-business-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--vm-gradient);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.vm-business-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vm-accent);
}
.vm-business-name {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 8px;
  line-height: 1.25;
}
.vm-business-desc {
  font-size: 14px;
  color: var(--vm-text-muted);
  line-height: 1.5;
  margin: 0 0 8px;
}
.vm-business-loc {
  font-size: 13px;
  color: var(--vm-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vm-business-body { flex: 1; }
.vm-business-cta { width: 100%; margin-top: auto; }

/* Empty state */
.vm-empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  border: 1px dashed var(--vm-line);
}
.vm-empty-state i {
  font-size: 32px;
  color: var(--vm-text-muted);
  opacity: 0.5;
  display: block;
  margin-bottom: 12px;
}
.vm-empty-state p { margin: 0; color: var(--vm-text-muted); font-size: 15px; }

/* Owner section */
.vm-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.vm-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vm-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--vm-text-muted);
  line-height: 1.45;
}
.vm-feature-list i { color: var(--vm-accent); flex-shrink: 0; margin-top: 2px; }
.vm-owner-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  padding: 32px;
  box-shadow: var(--vm-shadow);
  border: 1px solid var(--vm-line);
}
.vm-owner-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}
.vm-owner-card p {
  font-size: 15px;
  color: var(--vm-text-muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Steps */
.vm-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-steps-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--vm-text);
}
.vm-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vm-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--vm-text-muted);
  line-height: 1.5;
  background: var(--vm-white);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--vm-line);
}
.vm-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vm-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Categories */
.vm-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.vm-category-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--vm-white);
  border: 1px solid var(--vm-line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vm-text-muted);
}
.vm-category-chip i { color: var(--vm-accent); font-size: 18px; }

/* Contact */
.vm-contact-section { padding-bottom: 80px; }
.vm-contact-inner { display: flex; justify-content: center; }
.vm-contact-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--vm-white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--vm-shadow);
  border: 1px solid var(--vm-line);
}
.vm-contact-email {
  font-size: 16px;
  font-weight: 600;
  color: var(--vm-text);
  margin: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vm-contact-placeholder {
  font-size: 15px;
  color: var(--vm-text-muted);
  margin: 20px 0;
  font-style: italic;
}

/* Footer */
.vm-footer {
  background: var(--vm-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 20px 24px;
}
.vm-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.vm-footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.vm-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
}
.vm-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vm-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.vm-footer-links a:hover { color: #fff; }
.vm-footer-lang .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.vm-footer-lang .lang-switcher-btn { color: #fff; }
.vm-footer-lang .lang-switcher-btn.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vm-footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .vm-split { grid-template-columns: 1fr; }
  .vm-steps-grid { grid-template-columns: 1fr; }
  .vm-footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .vm-nav-toggle { display: flex; }
  .vm-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--vm-white);
    border-bottom: 1px solid var(--vm-line);
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(26, 31, 58, 0.08);
  }
  .vm-nav-menu.is-open { display: flex; }
  .vm-nav { position: relative; }
  .vm-nav-inner { position: relative; flex-wrap: wrap; }
  .vm-nav-link { padding: 12px 14px; }
  .vm-hero { padding: 48px 20px 56px; }
  .vm-hero-actions { flex-direction: column; }
  .vm-hero-actions .vm-btn { width: 100%; }
  .vm-search-bar { flex-direction: column; }
  .vm-search-bar .vm-btn { width: 100%; }
  .vm-business-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════════
   LEGAL PAGES & FOOTERS
   ════════════════════════════════════════════════════════════════════════════ */
.vm-legal-page {
  --vm-text: #1a1f3a;
  --vm-text-muted: #5c6478;
  --vm-bg: #f7f8fc;
  --vm-white: #ffffff;
  --vm-accent: #6366f1;
  --vm-line: rgba(26, 31, 58, 0.08);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--vm-text);
  background: var(--vm-bg);
  min-height: 100vh;
}
.vm-legal-page .page-shell { max-width: none; padding: 0; width: 100%; }

.vm-legal-header {
  background: var(--vm-white);
  border-bottom: 1px solid var(--vm-line);
  padding: 14px 20px;
}
.vm-legal-header-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vm-legal-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--vm-accent);
  text-decoration: none;
}
.vm-legal-back {
  font-size: 14px;
  color: var(--vm-text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vm-legal-back:hover { color: var(--vm-text); }

.vm-legal-main { padding: 40px 20px 32px; }
.vm-legal-container { max-width: 760px; margin: 0 auto; }
.vm-legal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.15;
}
.vm-legal-updated {
  font-size: 13px;
  color: var(--vm-text-muted);
  margin: 0 0 28px;
}
.vm-legal-doc { background: var(--vm-white); border-radius: 16px; padding: 28px 32px; border: 1px solid var(--vm-line); box-shadow: 0 4px 24px rgba(26, 31, 58, 0.05); }
.vm-legal-disclaimer {
  font-size: 13px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.vm-legal-section { margin-bottom: 28px; }
.vm-legal-section:last-child { margin-bottom: 0; }
.vm-legal-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
.vm-legal-section p,
.vm-legal-section li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--vm-text-muted);
}
.vm-legal-section ul { margin: 0; padding-left: 20px; }
.vm-legal-section li { margin-bottom: 8px; }
.vm-legal-section a:not(.vm-btn) { color: var(--vm-accent); }
.vm-legal-contact-email { font-size: 16px; font-weight: 600; margin: 16px 0; }
.vm-legal-contact-placeholder { font-style: italic; color: var(--vm-text-muted); }

.vm-legal-page-footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.vm-footer-legal {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sp-footer-legal {
  padding: 16px 5% 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.legal-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: var(--vm-accent);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.legal-footer a:hover { text-decoration: none; }
.legal-footer-dark a {
  color: rgba(255, 255, 255, 0.65);
}
.legal-footer-dark a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.legal-footer-compact a { font-size: 12px; }
/* Center lone last link when count is odd (e.g. Contact) */
.legal-footer a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  min-width: 8rem;
  max-width: 100%;
}

.bk-page-legal-footer {
  width: 100%;
  max-width: 440px;
  margin: 24px auto 0;
  padding: 16px 20px 32px;
  text-align: center;
}
.bk-page-legal-footer .legal-footer {
  max-width: 340px;
}
.bk-page-legal-footer .legal-footer a { color: #6b7280; }
.bk-page-legal-footer .legal-footer a:hover {
  color: #374151;
  background: rgba(0, 0, 0, 0.04);
}

.bk-legal-consent .bk-rule-text a {
  color: var(--bk-accent, #c4878a);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bk-legal-consent .bk-rule-text a:hover { opacity: 0.85; }

@media (min-width: 560px) {
  .legal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px 20px;
    max-width: none;
  }
  .legal-footer a {
    display: inline-flex;
    min-height: auto;
    padding: 4px 0;
    width: auto;
  }
  .legal-footer a:last-child:nth-child(odd) {
    grid-column: unset;
    justify-self: unset;
    min-width: 0;
  }
}

@media (max-width: 559px) {
  .legal-footer-compact a {
    font-size: 11px;
    min-height: 2.25rem;
    padding: 5px 6px;
  }
  .vm-footer-legal,
  .sp-footer-legal {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 600px) {
  .vm-legal-doc { padding: 20px 18px; }
}

/* Customer blocking */
.od-block-customer-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--od-surface-2, #F9FAFB);
  border-radius: 12px;
  border: 1px solid var(--od-border, #E5E7EB);
}
.od-block-customer-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
}
.od-block-label {
  min-width: 120px;
  color: var(--od-muted, #6B7280);
  font-size: 13px;
}
.od-block-confirm-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--od-muted, #6B7280);
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #FEF2F2;
  border-radius: 10px;
  border: 1px solid #FECACA;
}
.od-booking-customer-actions {
  margin: 12px 0 4px;
  padding-top: 12px;
  border-top: 1px solid var(--od-border, #E5E7EB);
}
.od-booking-customer-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.od-customer-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.od-table-toolbar {
  padding: 12px 16px 0;
}
.od-search-input {
  max-width: 360px;
}
.od-block-events {
  margin-top: 16px;
}
.od-block-event {
  padding: 10px 0;
  border-bottom: 1px solid var(--od-border, #E5E7EB);
  font-size: 13px;
}
.od-block-event strong {
  display: block;
  margin-bottom: 4px;
}
.od-block-event time {
  color: var(--od-muted, #6B7280);
  font-size: 12px;
}
.od-required { color: #DC2626; }
.od-optional { color: var(--od-muted, #6B7280); font-weight: 400; font-size: 12px; }

