/* ── Native booking experience ─────────────────────────────────────────
   Uses the site design tokens (var(--surface) etc.) so it inherits light/dark. */

.bk-section { padding: 60px 0 100px; }

.bk-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.bk-head .bk-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(95, 125, 118, 0.12); color: var(--accent);
  padding: 6px 14px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px;
}
.bk-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; color: var(--text); }
.bk-head p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

.bk-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px;
  max-width: 1040px; margin: 0 auto; align-items: start;
}

/* Summary card */
.bk-summary {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; box-shadow: var(--shadow); position: sticky; top: 96px;
}
.bk-price { font-size: 2.6rem; font-weight: 900; color: var(--text); line-height: 1; }
.bk-price span { font-size: 1rem; font-weight: 600; color: var(--text-secondary); }
.bk-summary h2 { font-size: 1.2rem; margin: 4px 0 18px; color: var(--text); }
.bk-includes { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.bk-includes li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-secondary); font-size: 0.98rem; line-height: 1.5; }
.bk-includes svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Form card */
.bk-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.bk-step { margin-bottom: 26px; }
.bk-step-label { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); margin-bottom: 14px; font-size: 1.05rem; }
.bk-step-num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}

.bk-days { display: flex; flex-wrap: wrap; gap: 10px; }
.bk-day {
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
  border-radius: 12px; padding: 10px 14px; cursor: pointer; font-family: inherit; font-weight: 700;
  font-size: 0.9rem; text-align: center; min-width: 84px; transition: all 0.15s ease;
}
.bk-day small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.bk-day:hover { border-color: var(--accent); }
.bk-day.selected { background: var(--accent); color: #fff; border-color: var(--accent); }
.bk-day.selected small { color: rgba(255,255,255,0.85); }

.bk-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 10px; margin-top: 6px; }
.bk-time {
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
  border-radius: 10px; padding: 11px 8px; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 0.92rem;
  transition: all 0.15s ease;
}
.bk-time:hover { border-color: var(--accent); }
.bk-time.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

.bk-field { margin-bottom: 16px; }
.bk-field label { display: block; font-weight: 700; color: var(--text); margin-bottom: 6px; font-size: 0.95rem; }
.bk-field input, .bk-field textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--bg); color: var(--text); font-family: inherit; font-size: 1rem;
}
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--accent); }
.bk-field textarea { min-height: 110px; resize: vertical; }

.bk-selected-banner {
  display: none; align-items: center; gap: 10px; background: rgba(95,125,118,0.1);
  border: 1px solid rgba(95,125,118,0.3); color: var(--text); border-radius: 12px;
  padding: 12px 16px; margin-bottom: 20px; font-weight: 700; font-size: 0.95rem;
}
.bk-selected-banner.show { display: flex; }
.bk-selected-banner svg { color: var(--accent); flex-shrink: 0; }

.bk-submit {
  width: 100%; background: var(--accent); color: #fff; border: none; border-radius: 12px;
  padding: 16px; font-family: inherit; font-weight: 800; font-size: 1.1rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s ease;
}
.bk-submit:hover:not(:disabled) { background: var(--logo); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bk-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.bk-note { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.5; }
.bk-note svg { vertical-align: middle; }

.bk-msg { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; }
.bk-msg.show { display: block; }
.bk-msg.error { background: rgba(239,68,68,0.1); color: #dc2626; }
.bk-msg.info { background: rgba(95,125,118,0.1); color: var(--accent); }

.bk-loading { text-align: center; color: var(--text-muted); padding: 20px; font-weight: 600; }
.bk-spin { display:inline-block; width:18px;height:18px;border:2.5px solid var(--border);border-top-color:var(--accent);border-radius:50%;animation:bk-rot 0.7s linear infinite;vertical-align:middle;margin-inline-end:8px;}
@keyframes bk-rot { to { transform: rotate(360deg); } }

.bk-preview-flag {
  max-width: 1040px; margin: 0 auto 18px; background: rgba(241,196,15,0.12); border: 1px solid rgba(241,196,15,0.4);
  color: var(--text); border-radius: 10px; padding: 10px 16px; font-size: 0.88rem; text-align: center;
}

@media (max-width: 860px) {
  .bk-grid { grid-template-columns: 1fr; }
  .bk-summary { position: static; order: 2; }
  .bk-card { order: 1; }
}
