/**
 * Public booking page — modern booking shell.
 * Brand greens aligned with public marketing site.
 */

:root {
  --bk-bg: #f3f6f4;
  --bk-surface: #ffffff;
  --bk-text: #122018;
  --bk-muted: #5a6b62;
  --bk-faint: #8a9a91;
  --bk-border: rgba(18, 32, 24, 0.08);
  --bk-border-strong: rgba(18, 32, 24, 0.14);
  --bk-green: #15803d;
  --bk-green-dark: #14532d;
  --bk-teal: #0f766e;
  --bk-teal-soft: rgba(15, 118, 110, 0.1);
  --bk-green-soft: rgba(21, 128, 61, 0.1);
  --bk-radius: 16px;
  --bk-radius-lg: 22px;
  --bk-shadow: 0 1px 2px rgba(18, 32, 24, 0.04), 0 12px 32px rgba(18, 32, 24, 0.06);
  --bk-shadow-lg: 0 8px 40px rgba(18, 32, 24, 0.1);
  --bk-max: 1120px;
  --bk-font: 'DM Sans', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bk-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

body.booking-page {
  margin: 0;
  font-family: var(--bk-font);
  background: var(--bk-bg);
  color: var(--bk-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.bk-modal-open {
  overflow: hidden;
}

.bk-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(21, 128, 61, 0.18), transparent 58%),
    radial-gradient(ellipse 50% 40% at 95% 15%, rgba(15, 118, 110, 0.1), transparent 52%),
    radial-gradient(ellipse 45% 35% at 5% 85%, rgba(21, 128, 61, 0.07), transparent 48%),
    linear-gradient(180deg, #eef5f0 0%, var(--bk-bg) 32%, #eef2f0 100%);
}

.bk-page {
  position: relative;
  z-index: 1;
  max-width: var(--bk-max);
  margin: 0 auto;
  padding: 32px 20px 88px;
}

.bk-back-arrow {
  position: absolute;
  top: 18px;
  left: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--bk-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  color: var(--bk-text);
  font: inherit;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.bk-back-arrow:hover {
  background: #fff;
  border-color: rgba(21, 128, 61, 0.35);
  color: var(--bk-green-dark);
  transform: translateX(-1px);
}

.bk-back-arrow[hidden] {
  display: none !important;
}

.bk-intro {
  text-align: center;
  margin-bottom: 28px;
  animation: bk-rise 0.55s ease both;
}

.bk-brand-mark {
  margin: 0 0 10px;
  font-family: var(--bk-display);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bk-text);
  line-height: 1.1;
}

.bk-brand-mark span {
  color: var(--bk-green);
}

.bk-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk-teal);
  background: var(--bk-teal-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.bk-intro h1 {
  margin: 0 0 10px;
  font-family: var(--bk-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--bk-text);
}

.bk-intro p {
  margin: 0 auto;
  max-width: 420px;
  color: var(--bk-muted);
  font-size: 1.05rem;
}

.bk-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 32px;
  max-width: 560px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--bk-border);
  box-shadow: 0 4px 20px rgba(18, 32, 24, 0.04);
  backdrop-filter: blur(10px);
  animation: bk-rise 0.55s ease 0.04s both;
}

.bk-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: none;
  border-radius: 100px;
  background: transparent;
  font: inherit;
  color: var(--bk-faint);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.bk-progress-step:disabled {
  cursor: default;
  opacity: 0.55;
}

.bk-progress-step.is-complete {
  color: var(--bk-green-dark);
  cursor: pointer;
  opacity: 1;
}

.bk-progress-step.is-active {
  color: var(--bk-text);
  background: rgba(21, 128, 61, 0.12);
  opacity: 1;
}

.bk-progress-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(18, 32, 24, 0.08);
  color: inherit;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.bk-progress-step.is-active .bk-progress-num,
.bk-progress-step.is-complete .bk-progress-num {
  background: var(--bk-green);
  color: #fff;
  transform: scale(1.05);
}

.bk-progress-label {
  font-size: 0.84rem;
  font-weight: 700;
}

.bk-progress-line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(21, 128, 61, 0.35), rgba(18, 32, 24, 0.12));
  border-radius: 2px;
}

.bk-step-panel[hidden] {
  display: none !important;
}

.bk-pay-banner {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bk-green-soft);
  border: 1px solid rgba(21, 128, 61, 0.22);
}

.bk-pay-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #14532d;
  margin-bottom: 4px;
}

.bk-pay-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: #3f6212;
  line-height: 1.45;
}

.bk-pay-skip-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.18);
  font-size: 0.88rem;
  color: var(--bk-muted);
  line-height: 1.45;
}

.bk-pay-skip-note i {
  color: var(--bk-teal);
  margin-right: 6px;
}

.bk-pay-skip-note strong {
  color: var(--bk-text);
}

.bk-pay-card {
  padding: 18px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: var(--bk-radius);
  background: #fff;
}

.bk-pay-security {
  list-style: none;
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--bk-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--bk-muted);
}

.bk-pay-security--solo {
  margin: 0;
  padding: 0;
  border-top: none;
  gap: 12px;
  font-size: 0.9rem;
}

.bk-pay-security li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.bk-pay-security i {
  color: var(--bk-green);
  margin-top: 2px;
}

.bk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  animation: bk-rise 0.65s ease 0.08s both;
}

.bk-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bk-section {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  box-shadow: var(--bk-shadow);
  padding: 26px 24px 22px;
}

.bk-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.bk-section-head h2 {
  margin: 0;
  font-family: var(--bk-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bk-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bk-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bk-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.bk-field label {
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--bk-muted);
}

.bk-field input,
.bk-field textarea,
.bk-field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 12px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--bk-text);
  background: #fbfcfb;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.bk-field label .bk-optional {
  font-weight: 550;
  color: var(--bk-faint);
}

.bk-field textarea {
  min-height: 72px;
  resize: vertical;
  line-height: 1.45;
}

.bk-field input::placeholder,
.bk-field textarea::placeholder {
  color: #a8b0ba;
}

.bk-field input:focus,
.bk-field textarea:focus,
.bk-field select:focus {
  border-color: var(--bk-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}

.bk-field.is-invalid label {
  color: #b91c1c;
}

.bk-field.is-invalid input,
.bk-field.is-invalid textarea,
.bk-field.is-invalid select {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
  background: #fff8f8;
}

.bk-field.is-invalid input:focus,
.bk-field.is-invalid textarea:focus,
.bk-field.is-invalid select:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}

.bk-field-secure {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--bk-muted);
  line-height: 1.4;
}

.bk-field-secure i {
  color: var(--bk-green);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.72rem;
}

.bk-out-of-area[hidden],
#bkScheduleContent[hidden] {
  display: none !important;
}

.bk-out-of-area-lead {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--bk-muted);
  line-height: 1.5;
}

.bk-service-map {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  border: 1px solid var(--bk-border);
  background: #e8eef2;
  margin-bottom: 14px;
  overflow: hidden;
}

.bk-out-of-area-cities-label {
  margin: 0 0 8px;
  font-size: 0.84rem;
  color: var(--bk-muted);
  line-height: 1.4;
}

.bk-out-of-area-cities {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-out-of-area-cities li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--bk-border);
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--bk-text);
}

.bk-out-of-area-help {
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: var(--bk-muted);
  line-height: 1.45;
}

.bk-out-of-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bk-out-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 100px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.bk-out-btn--primary {
  background: var(--bk-green);
  color: #fff;
  border-color: var(--bk-green);
}

.bk-out-btn--primary:hover {
  background: var(--bk-green-dark);
}

.bk-out-btn--secondary {
  background: #fff;
  color: var(--bk-text);
  border-color: var(--bk-border-strong);
}

.bk-out-btn--secondary:hover {
  border-color: var(--bk-green);
  color: var(--bk-green-dark);
}

/* Google Places dropdown above booking cards */
.pac-container {
  z-index: 10000 !important;
  font-family: var(--bk-font);
  border-radius: 10px;
  border: 1px solid var(--bk-border);
  box-shadow: var(--bk-shadow);
  margin-top: 4px;
}

.bk-choice-grid.is-invalid,
.bk-freq.is-invalid,
.bk-datetime.is-invalid,
.bk-time-list.is-invalid {
  outline: 2px solid #dc2626;
  outline-offset: 4px;
  border-radius: 12px;
}

.bk-section.is-invalid > .bk-section-head h2 {
  color: #b91c1c;
}

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

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

.bk-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 14px 14px 12px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.bk-choice:hover {
  border-color: rgba(21, 128, 61, 0.45);
  background: #fbfefc;
}

.bk-choice.is-selected {
  border-color: var(--bk-green);
  background: var(--bk-green-soft);
  box-shadow: 0 0 0 1px var(--bk-green);
}

.bk-choice-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.bk-choice-meta {
  font-size: 0.78rem;
  color: var(--bk-muted);
  line-height: 1.35;
}

.bk-choice-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bk-green-dark);
  background: rgba(21, 128, 61, 0.14);
  padding: 3px 7px;
  border-radius: 100px;
}

.bk-compare-drop {
  margin-top: 12px;
}

.bk-compare-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--bk-text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.bk-compare-toggle:hover {
  border-color: rgba(21, 128, 61, 0.45);
  background: #fbfefc;
}

.bk-compare-drop.is-open .bk-compare-toggle {
  border-color: var(--bk-green);
  background: var(--bk-green-soft);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.bk-compare-chevron {
  color: var(--bk-muted);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.bk-compare-drop.is-open .bk-compare-chevron {
  transform: rotate(180deg);
}

.bk-compare-panel {
  border: 1.5px solid var(--bk-green);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding: 4px 0 6px;
}

.bk-compare-panel[hidden] {
  display: none !important;
}

.bk-compare-list-head,
.bk-compare-row,
.bk-compare-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 64px;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
}

.bk-compare-list-head {
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bk-faint);
  border-bottom: 1px solid var(--bk-border);
}

.bk-compare-list-head span:nth-child(2),
.bk-compare-list-head span:nth-child(3),
.bk-compare-col {
  text-align: center;
}

.bk-compare-feature-wrap {
  border-bottom: 1px solid var(--bk-border);
}

.bk-compare-feature-wrap:last-child {
  border-bottom: none;
}

.bk-compare-row {
  padding: 10px 14px;
}

.bk-compare-row--expandable {
  cursor: pointer;
}

.bk-compare-row--expandable:hover {
  background: rgba(21, 128, 61, 0.04);
}

.bk-compare-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.bk-compare-expand-btn {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--bk-muted);
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.bk-compare-expand-btn:hover {
  background: rgba(21, 128, 61, 0.1);
  color: var(--bk-green-dark);
}

.bk-compare-row-chevron {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  transition: transform 0.15s ease;
}

.bk-compare-feature-wrap.is-expanded .bk-compare-row-chevron {
  transform: rotate(90deg);
}

.bk-compare-feature {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--bk-text);
  line-height: 1.3;
}

.bk-compare-detail-panel {
  background: #f8f7f4;
  border-top: 1px solid var(--bk-border);
}

.bk-compare-detail-panel[hidden] {
  display: none !important;
}

.bk-compare-detail-row {
  padding: 8px 14px 8px 44px;
  border-bottom: 1px solid rgba(30, 35, 40, 0.06);
}

.bk-compare-detail-row:last-child {
  border-bottom: none;
}

.bk-compare-detail-row .bk-compare-feature {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bk-muted);
}

.bk-compare-yes {
  color: var(--bk-green-dark);
  font-weight: 750;
}

.bk-compare-yes em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: #3f6212;
  margin-left: 2px;
}

.bk-compare-yes--soft {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.1;
}

.bk-compare-no {
  color: #c5cbd3;
  font-weight: 600;
}

.bk-compare-link-wrap {
  margin: 10px 0 0;
  padding: 0;
}

.bk-compare-link {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--bk-green-dark);
  text-decoration: none;
}

.bk-compare-link:hover {
  text-decoration: underline;
}

.bk-plan-hint {
  margin: 12px 0 0;
  font-size: 0.84rem;
  color: var(--bk-muted);
  line-height: 1.45;
}

.bk-plan-hint strong {
  color: var(--bk-text);
  font-weight: 700;
}

.bk-compare-panel .bk-check-list {
  margin: 0 0 14px;
}

.bk-freq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.bk-freq .bk-choice {
  align-items: center;
  text-align: center;
  padding: 12px 8px 10px;
  gap: 4px;
}

.bk-freq .bk-choice-title {
  font-size: 0.82rem;
}

.bk-freq-price {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bk-text);
  line-height: 1.15;
}

.bk-freq .is-selected .bk-freq-price {
  color: var(--bk-green-dark);
}

.bk-freq-save {
  display: block;
  font-size: 0.7rem;
  font-weight: 750;
  color: var(--bk-green);
  line-height: 1.2;
}

.bk-freq .is-selected .bk-freq-save {
  color: var(--bk-green-dark);
}

.bk-freq-save[hidden] {
  display: none !important;
}

.bk-freq-hint {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--bk-faint);
}

.bk-freq-hint[hidden] {
  display: none !important;
}

.bk-freq-note {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--bk-muted);
  line-height: 1.4;
}

.bk-datetime {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}

.bk-calendar {
  border: 1px solid var(--bk-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fafaf8;
}

.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--bk-border);
  background: #fff;
}

.bk-cal-nav strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.bk-cal-nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bk-border);
  border-radius: 8px;
  background: #fff;
  color: var(--bk-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.bk-cal-nav button:hover {
  background: var(--bk-bg);
  color: var(--bk-text);
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px;
}

.bk-cal-dow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bk-faint);
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9px;
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bk-text);
  cursor: pointer;
}

.bk-cal-day:hover:not(:disabled):not(.is-empty) {
  background: rgba(21, 128, 61, 0.1);
}

.bk-cal-day.is-empty,
.bk-cal-day:disabled {
  color: #c5cbd3;
  cursor: default;
}

.bk-cal-day.is-available:not(.is-selected) {
  background: rgba(21, 128, 61, 0.1);
  color: var(--bk-green);
}

.bk-cal-day.is-selected {
  background: var(--bk-green);
  color: #fff;
}

.bk-schedule-status {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--bk-muted);
  line-height: 1.4;
}

.bk-schedule-status.is-loading {
  color: var(--bk-faint);
}

.bk-schedule-status.is-error {
  color: #b91c1c;
}

.bk-times h3 {
  margin: 0 0 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bk-muted);
}

.bk-times-note {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: var(--bk-faint);
  line-height: 1.4;
}

.bk-time-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.bk-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  padding: 14px 14px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: var(--bk-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.bk-time-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bk-time-meta {
  font-size: 0.75rem;
  font-weight: 550;
  color: var(--bk-muted);
}

.bk-time:hover {
  border-color: rgba(21, 128, 61, 0.45);
}

.bk-time.is-selected {
  border-color: var(--bk-green);
  background: var(--bk-green);
  color: #fff;
}

.bk-time.is-selected .bk-time-meta {
  color: rgba(255, 255, 255, 0.85);
}

.bk-time:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bk-addons-gate {
  max-width: 360px;
  margin-bottom: 4px;
}

.bk-addons-panel {
  margin-top: 16px;
  padding-top: 4px;
  animation: bk-rise 0.28s ease both;
}

.bk-addons-panel[hidden] {
  display: none !important;
}

.bk-addons-group + .bk-addons-group {
  margin-top: 20px;
}

.bk-addons-group-title {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bk-muted);
}

.bk-addons-group-note {
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: var(--bk-faint);
}

.bk-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bk-addon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 12px 10px 10px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
  user-select: none;
}

.bk-addon-card:hover {
  border-color: rgba(21, 128, 61, 0.4);
  background: #fbfefc;
  transform: translateY(-1px);
}

.bk-addon-card.is-selected {
  border-color: var(--bk-green);
  background: var(--bk-green-soft);
  box-shadow: 0 0 0 1px var(--bk-green);
}

.bk-addon-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: transparent;
  font-size: 0.65rem;
  font-weight: 800;
}

.bk-addon-card.is-selected .bk-addon-check {
  background: var(--bk-green);
  border-color: var(--bk-green);
  color: #fff;
}

.bk-addon-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.bk-addon-card.is-selected .bk-addon-icon {
  background: rgba(21, 128, 61, 0.16);
  color: var(--bk-green-dark);
}

.bk-addon-name {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--bk-text);
}

.bk-addon-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bk-green-dark);
  line-height: 1.2;
  min-height: 1.15em;
}

.bk-addon-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
}

.bk-addon-qty-btn {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--bk-border-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--bk-text);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bk-addon-qty-btn:hover {
  border-color: var(--bk-green);
  color: var(--bk-green-dark);
  background: var(--bk-green-soft);
}

.bk-addon-qty-value {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--bk-text);
}

.bk-addon-card.is-selected .bk-addon-qty {
  background: rgba(21, 128, 61, 0.12);
}

.bk-aside {
  position: sticky;
  top: 88px;
  animation: bk-rise 0.7s ease 0.14s both;
}

.bk-summary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  box-shadow: var(--bk-shadow-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
}

.bk-summary h2 {
  margin: 0 0 14px;
  font-family: var(--bk-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bk-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bk-border);
}

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

.bk-summary-row--stack {
  flex-direction: column;
  gap: 4px;
}

.bk-summary-row-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.bk-summary-duration-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--bk-faint);
  line-height: 1.35;
}

.bk-summary-row span:first-child {
  color: var(--bk-muted);
}

.bk-summary-row span:last-child,
.bk-summary-row-main span:last-child {
  font-weight: 650;
  text-align: right;
  color: var(--bk-text);
}

.bk-summary-price {
  margin: 4px 0 14px;
  padding: 14px 14px 12px;
  border-radius: 12px;
  background: var(--bk-green-soft);
  border: 1px solid rgba(21, 128, 61, 0.2);
}

.bk-summary-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.bk-summary-price-row > span:first-child {
  font-size: 0.82rem;
  font-weight: 700;
  color: #14532d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-summary-price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bk-green-dark);
  line-height: 1;
}

.bk-summary-price-breakdown {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #3f6212;
  line-height: 1.35;
}

.bk-summary-price-breakdown[hidden],
.bk-summary-price-hint[hidden] {
  display: none !important;
}

.bk-summary-price-hint {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: #3f6212;
  line-height: 1.35;
}

.bk-summary-reassure {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--bk-muted);
  line-height: 1.4;
  text-align: center;
}

.bk-summary-note {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: var(--bk-faint);
  line-height: 1.4;
}

.bk-form-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.bk-form-error.is-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #166534;
}

.bk-submit {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 14px;
  background: var(--bk-green);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 750;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.15s;
}

.bk-submit:hover {
  background: var(--bk-green-dark);
  transform: none;
  box-shadow: none;
}

.bk-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.bk-trust {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--bk-muted);
}

.bk-trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bk-green);
  flex-shrink: 0;
}

.bk-trust-block {
  margin-top: 18px;
}

.bk-trust-block-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--bk-text);
}

.bk-trust-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bk-faint);
}

.bk-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bk-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--bk-border);
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--bk-text);
  line-height: 1.2;
}

.bk-trust-pill i {
  color: var(--bk-green);
  font-size: 0.72rem;
}

.bk-check-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-check-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--bk-text);
  line-height: 1.4;
}

.bk-check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bk-green);
  font-weight: 700;
  font-size: 0.85rem;
}

.bk-check-list--compact li {
  font-size: 0.86rem;
}

.bk-quote {
  margin: 0;
  padding: 18px 18px 16px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 240, 0.95));
  border: 1px solid var(--bk-border);
}

.bk-quote-stars {
  color: #ca8a04;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.bk-quote p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--bk-text);
  line-height: 1.5;
}

.bk-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--bk-muted);
}

.bk-cancel-note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--bk-muted);
  line-height: 1.5;
}

.bk-cancel-note strong {
  color: var(--bk-text);
  font-weight: 700;
}

.bk-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: var(--bk-green-soft);
  border: 1px solid rgba(21, 128, 61, 0.22);
}

.bk-guarantee-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bk-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.bk-guarantee-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.bk-guarantee-copy strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #14532d;
}

.bk-guarantee-copy span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bk-green-dark);
}

.bk-next-list {
  margin: 0 0 14px;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--bk-text);
  line-height: 1.4;
}

.bk-cancel-note {
  margin: 0 0 16px;
}

.bk-faq {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--bk-border);
  animation: bk-rise 0.55s ease 0.12s both;
}

.bk-faq h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.bk-faq-panel[hidden] {
  display: none !important;
}

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

.bk-faq-item {
  border: 1px solid var(--bk-border);
  border-radius: 12px;
  background: var(--bk-surface);
  padding: 0 14px;
}

.bk-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 13px 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bk-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bk-faq-item summary::-webkit-details-marker {
  display: none;
}

.bk-faq-item summary::after {
  content: '▾';
  color: var(--bk-faint);
  font-weight: 500;
  transition: transform 0.15s;
}

.bk-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.bk-faq-item p a {
  color: var(--bk-green-dark);
  font-weight: 650;
  text-decoration: none;
}

.bk-faq-item p a:hover {
  text-decoration: underline;
}

.bk-faq-item p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--bk-muted);
  line-height: 1.5;
}

.bk-complete-page .bk-intro {
  margin-bottom: 20px;
}

.bk-complete-layout {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.bk-complete-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bk-complete-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--bk-green-soft);
  border: 1px solid rgba(21, 128, 61, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  color: #14532d;
}

.bk-complete-badge--muted {
  background: rgba(18, 32, 24, 0.06);
  border-color: var(--bk-border-strong);
  color: var(--bk-muted);
}

.bk-complete-note {
  margin: 16px 0 0;
  font-size: 0.84rem;
  color: var(--bk-muted);
  line-height: 1.45;
}

.bk-complete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* —— Confirmation ticket page (mobile receipt + full-screen desktop) —— */
body.bk-ticket-page {
  --bk-ticket-bg: #f0f3f1;
  --bk-ticket-bg-soft: #e7ece9;
  --bk-ticket-muted: #5a6b62;
  --bk-ticket-faint: #8a9a91;
  background: var(--bk-ticket-bg) !important;
  color: #122018;
  min-height: 100vh;
  min-height: 100dvh;
}

body.bk-ticket-page .bk-ambient {
  display: none;
}

.bk-ticket-screen {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 64px);
  min-height: calc(100dvh - 64px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 28px 18px 40px;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(21, 128, 61, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(15, 118, 110, 0.06), transparent 50%),
    var(--bk-ticket-bg);
}

.bk-ticket-stage {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: bk-rise 0.5s ease both;
}

.bk-ticket-hero {
  text-align: left;
  margin-bottom: 22px;
  padding: 0 4px;
}

.bk-ticket-hero h1 {
  margin: 0 0 10px;
  font-family: var(--bk-font);
  font-size: clamp(1.55rem, 5vw, 1.85rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #122018;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.bk-ticket-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.12);
  color: #15803d;
  font-size: 0.75rem;
}

.bk-ticket-screen.is-cancelled .bk-ticket-check {
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
}

.bk-ticket-sent {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--bk-ticket-muted);
}

.bk-ticket-order {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: #122018;
}

/* Perforated white receipt */
.bk-receipt {
  position: relative;
  margin: 0 0 22px;
  filter: drop-shadow(0 14px 36px rgba(18, 32, 24, 0.1));
}

.bk-receipt-edge {
  height: 14px;
  background:
    radial-gradient(circle at 10px 0, transparent 9px, #fff 9.5px) repeat-x;
  background-size: 20px 14px;
  background-position: -10px 0;
}

.bk-receipt-edge--top {
  background:
    radial-gradient(circle at 10px 14px, transparent 9px, #fff 9.5px) repeat-x;
  background-size: 20px 14px;
  background-position: -10px 0;
}

.bk-receipt-edge--bottom {
  background:
    radial-gradient(circle at 10px 0, transparent 9px, #fff 9.5px) repeat-x;
  background-size: 20px 14px;
  background-position: -10px 0;
}

.bk-receipt-body {
  background: #fff;
  color: #12151a;
  padding: 8px 22px 20px;
}

.bk-receipt-service {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0 18px;
}

.bk-receipt-service-text {
  min-width: 0;
  flex: 1;
}

.bk-receipt-service h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #12151a;
}

.bk-receipt-service p {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.4;
  word-break: break-word;
}

.bk-receipt-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(18, 21, 26, 0.08);
}

.bk-receipt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
  box-sizing: border-box;
}

.bk-receipt-schedule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 4px 0 12px;
}

.bk-receipt-schedule--single {
  grid-template-columns: 1fr;
}

.bk-receipt-hint {
  margin: 0 0 14px;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

.bk-receipt-details {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-receipt-details[hidden] {
  display: none !important;
}

.bk-receipt-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.bk-receipt-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.92rem;
  color: #374151;
}

.bk-receipt-line > span:first-child {
  flex-shrink: 0;
  color: #6b7280;
}

.bk-receipt-line > span:last-child {
  font-weight: 650;
  color: #12151a;
  text-align: right;
  word-break: break-word;
}

.bk-receipt-line--wrap > span:last-child {
  max-width: 62%;
  white-space: pre-wrap;
  line-height: 1.35;
}

.bk-receipt-slot {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bk-receipt-slot-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}

.bk-receipt-slot strong {
  font-size: 0.92rem;
  font-weight: 750;
  color: #12151a;
  line-height: 1.3;
}

.bk-receipt-slot span:last-child {
  font-size: 0.88rem;
  color: #4b5563;
  font-weight: 600;
}

.bk-receipt-arrow {
  color: #9ca3af;
  font-size: 0.75rem;
  padding-top: 14px;
}

.bk-receipt-divider {
  height: 1px;
  margin: 0 0 14px;
  background: repeating-linear-gradient(
    90deg,
    rgba(18, 21, 26, 0.18) 0 6px,
    transparent 6px 12px
  );
  position: relative;
}

.bk-receipt-divider::before,
.bk-receipt-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bk-ticket-bg);
  transform: translateY(-50%);
}

.bk-receipt-divider::before {
  left: -31px;
}

.bk-receipt-divider::after {
  right: -31px;
}

.bk-receipt-line--accent {
  color: #0f766e;
}

.bk-receipt-line--accent span:last-child {
  color: #0f766e;
}

.bk-receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 21, 26, 0.1);
  font-size: 1.05rem;
  font-weight: 750;
  color: #12151a;
}

.bk-receipt-total strong {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bk-ticket-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.bk-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.bk-ticket-btn--primary {
  background: #15803d;
  color: #fff;
}

.bk-ticket-btn--primary:hover {
  background: #166534;
  transform: translateY(-1px);
}

.bk-ticket-btn--ghost {
  background: #fff;
  color: #122018;
  border: 1.5px solid rgba(18, 32, 24, 0.14);
}

.bk-ticket-btn--ghost:hover {
  border-color: rgba(21, 128, 61, 0.4);
  color: #14532d;
  background: #fff;
}

.bk-ticket-btn[hidden] {
  display: none !important;
}

.bk-ticket-footer {
  margin: 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--bk-ticket-faint);
  line-height: 1.5;
}

.bk-ticket-footer a {
  color: #14532d;
  font-weight: 650;
  text-decoration: none;
}

.bk-ticket-footer a:hover {
  color: #15803d;
  text-decoration: underline;
}

.bk-ticket-cancel {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  font-weight: 650;
  color: var(--bk-ticket-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bk-ticket-cancel:hover {
  color: #b91c1c;
}

/* Desktop: fill the screen */
@media (min-width: 900px) {
  .bk-ticket-screen {
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
    padding: 0;
    align-items: center;
  }

  .bk-ticket-stage {
    max-width: 920px;
    width: min(920px, calc(100% - 80px));
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    grid-template-areas:
      "hero receipt"
      "actions receipt"
      "footer receipt";
    column-gap: 56px;
    row-gap: 18px;
    align-items: center;
    padding: 48px 0;
  }

  .bk-ticket-hero {
    grid-area: hero;
    margin-bottom: 0;
    align-self: end;
  }

  .bk-ticket-hero h1 {
    font-size: 2.35rem;
  }

  .bk-ticket-sent {
    font-size: 1.02rem;
    max-width: 360px;
  }

  .bk-receipt {
    grid-area: receipt;
    margin: 0;
    align-self: center;
  }

  .bk-receipt-body {
    padding: 12px 28px 26px;
  }

  .bk-receipt-service h2 {
    font-size: 1.35rem;
  }

  .bk-ticket-actions {
    grid-area: actions;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
    align-self: start;
  }

  .bk-ticket-btn {
    min-width: 160px;
  }

  .bk-ticket-footer {
    grid-area: footer;
    text-align: left;
    align-self: start;
  }
}

@media (min-width: 1200px) {
  .bk-ticket-stage {
    max-width: 1040px;
    width: min(1040px, calc(100% - 120px));
    column-gap: 72px;
  }

  .bk-ticket-hero h1 {
    font-size: 2.6rem;
  }
}

/* Legacy complete helpers (kept for older markup if any) */
.bk-complete-page .bk-intro {
  margin-bottom: 20px;
}

.bk-complete-layout {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.bk-cancel-panel {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--bk-border);
}

.bk-cancel-panel[hidden] {
  display: none !important;
}

.bk-cancel-btn {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.bk-cancel-btn:hover {
  color: #991b1b;
}

.bk-cancel-modal[hidden] {
  display: none !important;
}

.bk-cancel-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

@media (min-width: 640px) {
  .bk-cancel-modal {
    align-items: center;
  }
}

.bk-cancel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 32, 24, 0.45);
  backdrop-filter: blur(4px);
}

.bk-cancel-modal-sheet {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px 20px;
  box-shadow: var(--bk-shadow-lg);
  animation: bk-rise 0.28s ease both;
}

.bk-cancel-modal-sheet h2 {
  margin: 0 0 8px;
  font-family: var(--bk-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.bk-cancel-modal-sheet > p {
  margin: 0 0 12px;
  color: var(--bk-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bk-cancel-modal-warn {
  margin: 0 0 14px !important;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412 !important;
  font-size: 0.84rem !important;
  font-weight: 650;
}

.bk-cancel-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.bk-out-btn--danger {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

.bk-out-btn--danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.bk-out-btn--danger:disabled {
  opacity: 0.65;
  cursor: wait;
}

.bk-footer-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--bk-muted);
  animation: bk-rise 0.6s ease 0.2s both;
}

.bk-footer-note a {
  color: var(--bk-green-dark);
  font-weight: 650;
}

.bk-choice-grid--single {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.bk-empty-note {
  margin: 0;
  padding: 14px 4px;
  color: var(--bk-muted);
  font-size: 0.92rem;
}

@keyframes bk-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.bk-step-panel.is-active {
  animation: bk-rise 0.4s ease both;
}

  @media (max-width: 560px) {
  .bk-progress-label {
    display: none;
  }

  .bk-progress-line {
    width: 16px;
  }

  .bk-back-arrow {
    top: 12px;
    left: 8px;
  }
}

@media (max-width: 900px) {
  .bk-layout {
    grid-template-columns: 1fr;
  }

  .bk-aside {
    position: static;
    order: -1;
  }

  .bk-choice-grid--4,
  .bk-freq {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bk-datetime {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bk-page {
    padding: 20px 14px 64px;
  }

  .bk-section {
    padding: 18px 16px;
  }

  .bk-fields,
  .bk-choice-grid,
  .bk-choice-grid--4,
  .bk-freq,
  .bk-time-list {
    grid-template-columns: 1fr;
  }

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

  .bk-fields .bk-field:nth-child(1),
  .bk-fields .bk-field:nth-child(2) {
    grid-column: auto;
  }
}
