@import url('/assets/fonts.css');

:root {
  --ink: #1d1d1b;
  --paper: #f5f1ea;
  --paper-2: #efe9df;
  --sand: #d4c4ad;
  --sand-soft: #e8ddc8;
  --line: #e2dccf;
  --muted: #8a8378;
  --danger: #b54848;
  --shadow-sm: 0 1px 2px rgba(29, 29, 27, .04), 0 4px 12px rgba(29, 29, 27, .04);
  --shadow-md: 0 1px 3px rgba(29, 29, 27, .06), 0 12px 32px rgba(29, 29, 27, .08);
  --serif: "Cormorant Garamond", "Playfair Display", "GT Sectra", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; cursor: pointer; }

.bk {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.bk-step { display: none; }
.bk-step[data-active="true"] { display: block; animation: fadeIn .4s ease-out; }

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

.bk-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}

.bk-logo-link {
  display: block;
  text-align: center;
  margin-bottom: 3.25rem;
}
.bk-back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: transparent;
  border: none;
  color: var(--muted);
  padding: .35rem .55rem .35rem .25rem;
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: .25rem;
  transition: color .15s, transform .15s;
}
.bk-back:hover { color: var(--ink); transform: translateX(-2px); }
.bk-back svg { width: 16px; height: 16px; }

.bk-skel { display: flex; flex-direction: column; gap: .5rem; }
.bk-skel-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.bk-skel-img,
.bk-skel-line {
  background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper) 50%, var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: bk-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}
.bk-skel-img { width: 90px; height: 90px; }
.bk-skel-body { display: flex; flex-direction: column; gap: .55rem; }
.bk-skel-line { height: 12px; }
.bk-skel-line.w70 { width: 70%; }
.bk-skel-line.w40 { width: 40%; }
@keyframes bk-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.bk-logo {
  display: inline-block;
  height: 64px;
  width: auto;
  color: var(--ink);
}

.bk-steps {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 460px;
}
.bk-steps li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
}
.bk-steps li > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
  z-index: 1;
}
.bk-steps li::after {
  content: attr(data-label);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.bk-steps li.active > span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.bk-steps li.active::after { color: var(--ink); font-weight: 600; }
.bk-steps li.done > span {
  background: var(--ink);
  color: transparent;
  border-color: var(--ink);
  font-size: 0;
  position: relative;
}
.bk-steps li.done:not(:last-child)::before { background: var(--ink); }
.bk-steps li.done > span::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.3l3 3 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.bk-step-label { display: none; }

.bk-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0 0 2rem;
  line-height: 1.15;
  text-align: center;
}

.bk-sub {
  color: var(--muted);
  margin: -.75rem 0 1.75rem;
  font-size: 1rem;
}
.bk-summary-line {
  color: var(--ink);
  background: var(--paper);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  margin: 0 0 1.75rem;
  font-size: .92rem;
  line-height: 1.5;
}

.bk-section-label {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 1rem;
}

.bk-trust {
  display: flex;
  align-items: center;
  gap: .55rem;
  justify-content: center;
  font-size: .82rem;
  color: var(--muted);
  margin: 2.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.bk-shield { width: 16px; height: 16px; flex-shrink: 0; }

.bk-loading, .bk-empty {
  color: var(--muted);
  text-align: center;
  padding: 1.5rem 0;
  margin: 0;
}

.bk-services {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.bk-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 .85rem 0 1rem;
  margin: 0 0 1.75rem;
  transition: border-color .15s, box-shadow .15s;
}
.bk-search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20, 20, 18, .06);
}
.bk-search svg { color: var(--muted); flex-shrink: 0; }
.bk-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: .9rem 0;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
}
.bk-search input::placeholder { color: var(--muted); }

.bk-cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.bk-cat[open] { border-color: var(--sand); }
.bk-cat-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.bk-cat-head::-webkit-details-marker { display: none; }
.bk-cat-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  flex: 1;
}
.bk-cat-count {
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--muted);
  background: var(--paper);
  padding: .15rem .55rem;
  border-radius: 999px;
}
.bk-cat-arrow {
  color: var(--muted);
  transition: transform .2s;
}
.bk-cat[open] .bk-cat-arrow { transform: rotate(180deg); }
.bk-cat-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.bk-service {
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 1.1rem 1.4rem 1.1rem 1.1rem;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  text-align: left;
  transition: background .15s;
  color: var(--ink);
  font: inherit;
}
.bk-service:last-child { border-bottom: none; }
.bk-service:hover { background: var(--paper); }
.bk-service:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}
.bk-service-img {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  align-self: center;
}
.bk-service-body {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-self: center;
  min-width: 0;
}
.bk-service-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
.bk-service-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bk-service-meta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--muted);
}
.bk-service-meta svg { width: 13px; height: 13px; }
.bk-service-price {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
}
.bk-service-desc {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.bk-featured {
  margin-bottom: 2.25rem;
}
.bk-featured-head {
  margin-bottom: 1.1rem;
  text-align: left;
}
.bk-featured-eyebrow {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 600;
  margin-bottom: .5rem;
}
.bk-featured-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.005em;
  margin: 0;
}
.bk-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.bk-feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  color: var(--ink);
  font: inherit;
}
.bk-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--sand);
}
.bk-feat-img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
  background-size: cover;
  background-position: center;
}
.bk-feat-tag {
  position: absolute;
  top: .65rem;
  left: .65rem;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 2px;
  font-weight: 600;
}
.bk-feat-body {
  padding: .9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bk-feat-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
}
.bk-feat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
}
.bk-feat-meta svg { width: 12px; height: 12px; vertical-align: -2px; margin-right: .25rem; }
.bk-feat-price {
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
}

.bk-all-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bk-all-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 .25rem;
}

.bk-staff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  margin-bottom: 1rem;
}
.bk-staff-card {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius);
  transition: transform .2s;
}
.bk-staff-card:hover { transform: translateY(-2px); }
.bk-staff-card .avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--sand);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  border: 1px solid var(--line);
}
.bk-staff-card .name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.bk-staff-card .role {
  color: var(--muted);
  font-size: .82rem;
  margin-top: -.5rem;
}
.bk-staff-card.any {
  grid-column: 1 / -1;
  flex-direction: column;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  background: var(--paper);
  margin-top: .25rem;
}
.bk-staff-card.any .avatar {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px dashed var(--muted);
  color: var(--muted);
  font-size: 1rem;
}
.bk-staff-card.any .label {
  font-family: var(--serif);
  font-size: 1.1rem;
}
.bk-staff-card.any .hint {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.bk-cal {
  background: #fff;
  margin-bottom: 1rem;
}
.bk-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bk-cal-nav {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .15s;
}
.bk-cal-nav:hover { background: var(--paper-2); }
.bk-cal-nav:disabled { color: var(--line); cursor: not-allowed; }
.bk-cal-month {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.bk-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: .5rem;
}
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
}
.bk-cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.bk-cal-day.outside { color: var(--line); pointer-events: none; }
.bk-cal-day.disabled { color: var(--line); cursor: not-allowed; }
.bk-cal-day:not(.disabled):not(.outside):not(.active):hover { background: var(--paper-2); }
.bk-cal-day.active { background: var(--ink); color: #fff; }

.bk-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
}
.bk-slots > .bk-empty,
.bk-slots > .bk-error,
.bk-slots > .bk-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--paper);
  border-radius: 8px;
  color: var(--muted);
  font-size: .92rem;
}
.bk-slot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .75rem .5rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
}
.bk-slot:hover { border-color: var(--ink); }
.bk-slot.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.bk-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bk-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.bk-form-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #8a8378;
  line-height: 1.4;
}
.bk-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.bk-form label > span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.bk-form input:not([type="checkbox"]):not([type="radio"]),
.bk-form textarea {
  font: inherit;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s;
}
.bk-form input::placeholder,
.bk-form textarea::placeholder { color: #b5ae9f; }
.bk-form input:focus,
.bk-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.bk-form textarea {
  font-family: inherit;
  resize: vertical;
  min-height: 90px;
}

.bk-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  cursor: pointer;
  padding: 0;
}
.bk-check span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.bk-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: .12rem 0 0;
  flex: 0 0 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background .15s, border-color .15s;
}
.bk-check input[type="checkbox"]:hover { border-color: var(--muted); }
.bk-check input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.bk-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.bk-check input[type="checkbox"]:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.bk-btn {
  display: inline-block;
  padding: 1rem 1.6rem;
  font: inherit;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.bk-btn:hover { background: #000; text-decoration: none; }
.bk-btn:active { transform: scale(.98); }
.bk-btn:disabled { opacity: .5; cursor: not-allowed; }

.bk-btn-primary { width: 100%; }

.bk-btn-secondary {
  background: var(--sand-soft);
  border-color: var(--sand-soft);
  color: var(--ink);
}
.bk-btn-secondary:hover { background: var(--sand); border-color: var(--sand); }

.bk-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--muted);
  text-decoration: underline;
}

.bk-error {
  margin: 0;
  color: var(--danger);
  background: #fbecec;
  border: 1px solid #f3d5d5;
  padding: .65rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
}
.bk-success {
  margin: 0;
  color: #1f6f3a;
  background: #ecf6ee;
  border: 1px solid #c8e2cd;
  padding: .65rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
}

.bk-waitlist {
  margin: 1.75rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.bk-waitlist > summary {
  cursor: pointer;
  list-style: none;
  padding: .9rem 1.1rem;
  font-size: .92rem;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bk-waitlist > summary::-webkit-details-marker { display: none; }
.bk-waitlist > summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
}
.bk-waitlist[open] > summary::after { content: "−"; }
.bk-waitlist-form { padding: .25rem 1.1rem 1.1rem; gap: .9rem; }
.bk-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 480px) { .bk-row-2 { grid-template-columns: 1fr; } }

.bk-packages {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.bk-package {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  align-items: baseline;
  font-size: .92rem;
}
.bk-package strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.bk-pkg-expiry { color: var(--muted); font-size: .82rem; margin-left: auto; }

.bk-account-bookings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.bk-account-booking {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.bk-ab-main { flex: 1; min-width: 0; }
.bk-ab-title { margin: 0 0 .25rem; font-size: .98rem; }
.bk-ab-when { margin: 0; color: var(--muted); font-size: .88rem; }
.bk-ab-side {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: flex-end;
  text-align: right;
}
.bk-ab-state {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
}
.bk-ab-state.ok { background: #ecf6ee; color: #1f6f3a; }
.bk-ab-state.cancelled { background: #fbecec; color: var(--danger); }
.bk-ab-state.past { background: var(--paper-2); color: var(--muted); }

.review-stars-input {
  border: none;
  padding: 0;
  margin: 0 0 .5rem;
}
.review-stars-input legend > span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.review-radio-row {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: .15rem;
  padding: .5rem 0 .25rem;
}
.review-radio-row input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.review-radio-row label {
  cursor: pointer;
  color: var(--line);
  transition: color .15s;
}
.review-radio-row label:hover,
.review-radio-row label:hover ~ label,
.review-radio-row input[type="radio"]:checked ~ label { color: var(--sand); }
.review-radio-row input[type="radio"]:focus-visible + label { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }

.bk-discount {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: -.25rem 0 .25rem;
}
.bk-discount-label {
  display: flex !important;
  flex-direction: column !important;
  gap: .55rem !important;
}
.bk-discount-label > span:first-child {
  font-size: .72rem !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}
.bk-discount-row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.bk-discount-row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20, 20, 18, .06);
}
.bk-discount-row input {
  flex: 1;
  font: inherit;
  padding: .9rem 1rem;
  border: none;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  outline: none;
  min-width: 0;
}
.bk-discount-apply {
  flex-shrink: 0;
  padding: .9rem 1.2rem !important;
  letter-spacing: .14em !important;
  width: auto !important;
  margin: 0 !important;
  border: none !important;
  border-left: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-size: .76rem !important;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}
.bk-discount-apply:hover { background: var(--ink) !important; color: #fff !important; }
.bk-discount-feedback {
  margin: .65rem 0 0;
  font-size: .88rem;
  padding: .55rem .75rem;
  border-radius: 8px;
}
.bk-discount-feedback.ok {
  background: #ecf6ee;
  color: #1f6f3a;
  border: 1px solid #c8e2cd;
}
.bk-discount-feedback.err {
  background: #fbecec;
  color: var(--danger);
  border: 1px solid #f3d5d5;
}

.bk-pay-info {
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  font-size: .88rem;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.bk-pay-info:empty { display: none; }
.bk-pay-info p { margin: 0; color: var(--ink-2, var(--ink)); }
.bk-pay-info strong { font-weight: 600; }
.bk-pay-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-size: .92rem;
}
.bk-pay-head svg { flex-shrink: 0; }
.bk-pay-online {
  background: linear-gradient(135deg, #f0f8ee, #e8f1e3);
  border-color: #cfe2c5;
}
.bk-pay-online .bk-pay-head { color: #2f5a23; }
.bk-pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-top: .35rem;
  padding-top: .65rem;
  border-top: 1px dashed rgba(47, 90, 35, .25);
}
.bk-pay-icons .pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}
.bk-pay-icons .pay img {
  height: 20px;
  width: auto;
  display: block;
}
.bk-pay-icons .pay-klarna { background: #FFA8CD; }
.bk-pay-icons .pay-apple { background: #fff; }
.bk-pay-cash {
  background: var(--paper);
  border-color: var(--line);
}

.bk-done-card {
  display: block;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
.bk-done-text {
  padding: 2.5rem 2rem 2rem;
}
.bk-done-card .bk-title { text-align: center; }
.bk-done-card .bk-summary { text-align: left; }
.bk-done-text .bk-title {
  position: relative;
  padding-bottom: 1rem;
}
.bk-done-text .bk-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 1px;
  background: var(--sand);
}
.bk-summary {
  list-style: none;
  padding: 1.25rem 1.4rem;
  margin: 0 0 1.5rem;
  background: var(--paper);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.bk-summary li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
}
.bk-summary svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }

.bk-done-image {
  background:
    linear-gradient(135deg, rgba(212, 196, 173, .25), rgba(232, 221, 200, .55)),
    url("/assets/done-still.svg") center/cover no-repeat,
    var(--sand-soft);
  min-height: 220px;
}

@media (min-width: 720px) {
  .bk { max-width: 760px; }
  .bk-card { padding: 3rem 3rem 2rem; }
  .bk-logo { height: 84px; }
}
.bk-done-image { display: none; }

@media (max-width: 600px) {
  .bk { padding: 1rem .75rem 3rem; }
  .bk-card { padding: 2.5rem 1.25rem 1.75rem; border-radius: 12px; }
  .bk-logo { height: 76px; }
  .bk-logo-link { margin-bottom: 2.5rem; }
  .bk-steps { margin-bottom: 2.25rem; max-width: 100%; padding: 0 .25rem; }
  .bk-steps li > span { width: 28px; height: 28px; font-size: .8rem; }
  .bk-steps li:not(.active)::after { display: none; }
  .bk-steps li.active::after {
    font-size: .62rem;
    letter-spacing: .12em;
    color: var(--ink);
    font-weight: 600;
    white-space: nowrap;
  }
  .bk-steps li:not(:last-child)::before {
    top: 14px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
  }
  .bk-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
  .bk-back { margin-bottom: .5rem; }
  .bk-cat-head { padding: .85rem 1rem; }
  .bk-cat-name { font-size: 1.05rem; }
  .bk-service { grid-template-columns: 90px 1fr; gap: 1rem; padding: .9rem 1rem .9rem .9rem; }
  .bk-service-img { width: 90px; height: 90px; }
  .bk-service-name { font-size: 1rem; }
  .bk-service-desc { -webkit-line-clamp: 3; }
  .bk-staff-card .avatar { width: 90px; height: 90px; font-size: 1.6rem; }

  .bk-featured-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .bk-feat-img { aspect-ratio: 5 / 4; }
  .bk-feat-body { padding: .75rem .85rem .85rem; gap: .35rem; }
  .bk-feat-name { font-size: .95rem; }
  .bk-feat-meta { font-size: .75rem; }
  .bk-feat-price { font-size: .85rem; }
  .bk-featured { margin-bottom: 1.75rem; }
  .bk-featured-title { font-size: 1.2rem; }

  .bk-slots {
    grid-template-columns: repeat(4, 1fr);
    gap: .4rem;
  }
  .bk-slot {
    padding: .55rem .25rem;
    font-size: .82rem;
    border-radius: 6px;
    font-weight: 500;
  }

  .bk-section-label { margin: 1.5rem 0 .75rem; }
  .bk-cal-day { font-size: .85rem; }
}

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

@media (max-width: 360px) {
  .bk-staff { grid-template-columns: 1fr; }
  .bk-slots { grid-template-columns: repeat(3, 1fr); }
  .bk-slot { padding: .65rem .25rem; }
}

.bk-reschedule-banner {
  max-width: 720px;
  margin: 1.25rem auto 0;
  padding: 1rem 1.25rem;
  background: #fffaf0;
  border: 1px solid #e2dccf;
  border-left: 3px solid #b89968;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: #2a2825;
  font-size: .92rem;
}
.bk-reschedule-banner svg { flex: 0 0 22px; width: 22px; height: 22px; color: #b89968; margin-top: .15rem; }
.bk-reschedule-banner strong { display: block; margin-bottom: .2rem; font-family: var(--serif, Georgia, serif); font-size: 1.1rem; font-weight: 500; color: #131211; }
.bk-reschedule-banner span { display: block; line-height: 1.5; color: #2a2825; }

.bk-preselect { margin-bottom: 1.4rem; }
.bk-preselect .bk-featured-grid { grid-template-columns: 1fr; }
.bk-preselect-card { border: 2px solid var(--sand); box-shadow: var(--shadow-md); }
.bk-preselect-card .bk-feat-img { aspect-ratio: 16 / 7; }
.bk-preselect-card .bk-service-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.bk-preselect-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
  margin-top: .35rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
}
.bk-preselect-card:hover .bk-preselect-cta { background: #000; }
.bk-preselect-cta svg { width: 16px; height: 16px; }
