/* Slotwise — public booking pages (booking page, manage booking, embed). Themed per business with --brand. */

.bk { background: #F5F6FA; min-height: 100vh; color: var(--text); }
[data-theme="dark"] .bk { background: var(--bg); }
.bk-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ------------------------------------------------------------ top bar */
.bk-top { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--border); }
.bk-top .bk-container { display: flex; align-items: center; gap: 12px; height: 60px; }
.bk-top-brand { display: flex; align-items: center; gap: 10px; min-width: 0; color: var(--text); font-weight: 700; }
.bk-top-brand:hover { color: var(--text); }
.bk-top-brand .avatar { width: 34px; height: 34px; border-radius: 10px; }
.bk-top-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.lang-switch { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; padding: 2px; background: var(--surface); }
.lang-switch a { height: 26px; padding: 0 10px; display: inline-flex; align-items: center; border-radius: 999px; font-size: 12px; font-weight: 650; color: var(--muted); }
.lang-switch a.is-active { background: var(--brand); color: #fff; }

/* ------------------------------------------------------------ hero */
.bk-cover { position: relative; height: 300px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 85%, #000), color-mix(in srgb, var(--brand) 55%, #fff)); overflow: hidden; }
.bk-cover img { width: 100%; height: 100%; object-fit: cover; }
.bk-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 30, 0) 40%, rgba(10, 10, 30, .38) 100%); }
.bk-cover-pattern { position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 20% 30%, #fff 0 2px, transparent 3px), radial-gradient(circle at 70% 60%, #fff 0 1.5px, transparent 2.5px); background-size: 42px 42px, 60px 60px; }
@media (max-width: 720px) { .bk-cover { height: 180px; } }

.bk-head { position: relative; z-index: 2; margin-top: -86px; display: flex; align-items: flex-end; gap: 20px; padding: 22px 24px; border-radius: 22px; background: var(--surface); border: 1px solid var(--border); box-shadow: 0 24px 60px -30px rgba(18, 19, 48, .35); }
.bk-logo { width: 96px; height: 96px; border-radius: 24px; flex: none; overflow: hidden; display: grid; place-items: center; font-size: 32px; font-weight: 800; color: #fff; background: var(--brand); box-shadow: 0 0 0 4px var(--surface), 0 12px 24px -12px rgba(0, 0, 0, .35); margin-top: -46px; }
.bk-logo img { width: 100%; height: 100%; object-fit: cover; }
.bk-head-main { flex: 1; min-width: 0; }
.bk-name { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -.035em; line-height: 1.15; }
.bk-tagline { color: var(--muted); font-size: 14.5px; margin-top: 3px; }
.bk-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; margin-top: 10px; font-size: 13px; color: var(--text-2); }
.bk-meta > span { display: inline-flex; align-items: center; gap: 6px; }
.bk-meta .icon { width: 15px; height: 15px; color: var(--muted-2); }
.bk-rating { font-weight: 700; color: var(--text); }
.bk-rating .stars .icon { width: 14px; height: 14px; color: #F5A524; }
.open-badge { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 9px; border-radius: 999px; font-size: 12px; font-weight: 650; background: var(--green-bg); color: var(--green); }
.open-badge.is-closed { background: var(--gray-bg); color: var(--gray); }
.open-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.bk-head-actions { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .bk-head { flex-direction: column; align-items: flex-start; margin-top: -56px; padding: 18px; gap: 14px; }
  .bk-logo { width: 76px; height: 76px; border-radius: 20px; margin-top: -54px; font-size: 26px; }
  .bk-name { font-size: 23px; }
  .bk-head-actions { width: 100%; }
  .bk-head-actions .btn { flex: 1; }
}

/* ------------------------------------------------------------ layout */
.bk-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; margin: 24px 0 48px; }
@media (max-width: 1020px) { .bk-grid { grid-template-columns: minmax(0, 1fr); } }
.bk-aside { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 1020px) { .bk-aside { position: static; } }
.bk-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 1px 2px rgba(18, 19, 48, .04), 0 12px 32px -22px rgba(18, 19, 48, .22); }
.bk-card-pad { padding: 22px; }
.bk-section { margin-top: 24px; }
.bk-section-title { font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ------------------------------------------------------------ wizard */
.wz-head { padding: 18px 22px 0; }
.wz-title { font-family: var(--font-display); font-size: 21px; font-weight: 800; letter-spacing: -.025em; display: flex; align-items: center; gap: 10px; }
.wz-back { width: 34px; height: 34px; border-radius: 10px; display: inline-grid; place-items: center; color: var(--text-2); border: 1px solid var(--border); background: var(--surface); flex: none; }
.wz-back:hover { background: var(--surface-3); color: var(--text); }
.wz-sub { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.stepper { display: flex; gap: 6px; margin-top: 16px; }
.stepper span { flex: 1; height: 4px; border-radius: 999px; background: var(--surface-3); overflow: hidden; position: relative; }
.stepper span.is-done::after, .stepper span.is-current::after { content: ""; position: absolute; inset: 0; background: var(--brand); border-radius: 999px; }
.stepper span.is-current::after { animation: grow .5s var(--ease) both; transform-origin: left; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.stepper-labels { display: flex; justify-content: space-between; margin-top: 7px; font-size: 11.5px; font-weight: 600; color: var(--muted-2); }
.stepper-labels .is-current { color: var(--brand); }
@media (max-width: 560px) { .stepper-labels { display: none; } }
.wz-body { padding: 18px 22px 22px; }
.wz-step { animation: fade-up .28s var(--ease) both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.cat-tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 12px; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { flex: none; height: 34px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); font-size: 13px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.cat-tab:hover { border-color: var(--border-strong); color: var(--text); }
.cat-tab.is-active { background: var(--text); border-color: var(--text); color: var(--surface); }
.svc-search { margin-bottom: 12px; }

.svc-group-title { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 18px 0 8px; }
.svc-group-title:first-child { margin-top: 4px; }
.svc { position: relative; display: flex; align-items: flex-start; gap: 14px; padding: 15px 16px; border: 1.5px solid var(--border); border-radius: 16px; background: var(--surface); cursor: pointer; transition: border-color .15s, box-shadow .15s, background .15s; text-align: left; width: 100%; }
.svc + .svc { margin-top: 10px; }
.svc:hover { border-color: var(--border-strong); box-shadow: 0 6px 18px -12px rgba(18, 19, 48, .25); }
.svc.is-disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.svc.is-disabled:hover { border-color: var(--border); }
.svc.is-selected { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 5%, var(--surface)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent); }
.svc-img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; }
.svc-main { flex: 1; min-width: 0; }
.svc-name { font-weight: 700; color: var(--text); font-size: 15px; line-height: 1.3; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.svc-desc { color: var(--muted); font-size: 13px; margin-top: 3px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.svc-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; margin-top: 7px; font-size: 12.5px; color: var(--text-2); }
.svc-meta span { display: inline-flex; align-items: center; gap: 5px; }
.svc-meta .icon { width: 14px; height: 14px; color: var(--muted-2); }
.svc-price { text-align: right; flex: none; }
.svc-price strong { display: block; font-size: 15px; font-weight: 750; color: var(--text); white-space: nowrap; }
.svc-price s { display: block; font-size: 12px; color: var(--muted-2); }
.svc-add { position: absolute; right: 14px; bottom: 14px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--border-strong); color: var(--text-2); background: var(--surface); transition: all .15s; }
.svc.is-selected .svc-add { background: var(--brand); border-color: var(--brand); color: #fff; }
.svc .svc-price { padding-bottom: 34px; }
.pill-note { display: inline-flex; align-items: center; height: 20px; padding: 0 7px; border-radius: 6px; font-size: 11px; font-weight: 700; background: color-mix(in srgb, var(--brand) 12%, var(--surface)); color: var(--brand); }
.pill-note.gold { background: #FFF4DB; color: #A26A00; }
.pill-note.green { background: var(--green-bg); color: var(--green); }

.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.staff-opt { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 18px 12px 14px; border: 1.5px solid var(--border); border-radius: 16px; background: var(--surface); cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s; }
.staff-opt:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.staff-opt.is-selected { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent); }
.staff-opt .avatar { width: 64px; height: 64px; font-size: 20px; }
.staff-opt-any .avatar { background: color-mix(in srgb, var(--brand) 12%, var(--surface)); color: var(--brand); }
.staff-opt-name { font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.25; }
.staff-opt-title { font-size: 12px; color: var(--muted); line-height: 1.35; }
.staff-opt-rating { font-size: 12px; font-weight: 650; color: var(--text-2); display: inline-flex; align-items: center; gap: 3px; }
.staff-opt-rating .icon { width: 13px; height: 13px; color: #F5A524; fill: #F5A524; stroke: none; }

.date-nav { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.date-nav-title { font-weight: 700; font-size: 15px; }
.date-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(58px, 1fr); gap: 8px; overflow-x: auto; padding: 2px 2px 8px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.date-chip { scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 9px 4px; border-radius: 14px; border: 1.5px solid var(--border); background: var(--surface); cursor: pointer; transition: all .15s; }
.date-chip small { font-size: 11px; font-weight: 650; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.date-chip strong { font-size: 18px; font-weight: 800; color: var(--text); line-height: 1.1; }
.date-chip em { font-style: normal; font-size: 10.5px; color: var(--muted-2); }
.date-chip:hover { border-color: var(--border-strong); }
.date-chip.is-selected { background: var(--brand); border-color: var(--brand); }
.date-chip.is-selected small, .date-chip.is-selected strong, .date-chip.is-selected em { color: #fff; }
.date-chip.is-off { cursor: not-allowed; opacity: .45; background: var(--surface-2); }
.date-chip.is-off strong { text-decoration: line-through; text-decoration-color: var(--muted-2); }
.date-chip.is-today em { color: var(--brand); font-weight: 700; }
.date-chip.is-selected.is-today em { color: #fff; }

.slot-groups { display: flex; flex-direction: column; gap: 16px; margin-top: 14px; }
.slot-group-title { font-size: 12.5px; font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.slot-group-title .icon { width: 15px; height: 15px; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.slot { height: 44px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--surface); font-weight: 650; font-size: 14px; color: var(--text); cursor: pointer; transition: all .15s; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.15; font-variant-numeric: tabular-nums; }
.slot small { font-size: 10.5px; font-weight: 600; color: var(--green); }
.slot:hover { border-color: var(--brand); color: var(--brand); }
.slot.is-selected { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--brand) 70%, transparent); }
.slot.is-selected small { color: rgba(255, 255, 255, .85); }
.slot-skeleton { height: 44px; border-radius: 12px; background: linear-gradient(90deg, var(--surface-3), var(--surface-2), var(--surface-3)); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.no-slots { text-align: center; padding: 26px 16px; border: 1.5px dashed var(--border-strong); border-radius: 16px; margin-top: 14px; }
.no-slots h4 { font-size: 15px; margin-bottom: 4px; }
.no-slots p { color: var(--muted); font-size: 13px; }
.tz-note { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; color: var(--muted); }
.tz-note .icon { width: 13px; height: 13px; }

.seat-picker { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border-strong); border-radius: 12px; overflow: hidden; }
.seat-picker button { width: 38px; height: 38px; display: grid; place-items: center; color: var(--text-2); }
.seat-picker button:hover { background: var(--surface-3); }
.seat-picker span { min-width: 40px; text-align: center; font-weight: 700; }

.pay-options { display: flex; flex-direction: column; gap: 10px; }
.pay-opt { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 14px; cursor: pointer; background: var(--surface); transition: all .15s; }
.pay-opt:hover { border-color: var(--border-strong); }
.pay-opt:has(input:checked) { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 5%, var(--surface)); }
.pay-opt input { margin-top: 3px; accent-color: var(--brand); width: 17px; height: 17px; flex: none; }
.pay-opt-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-3); color: var(--text-2); flex: none; }
.pay-opt-title { font-weight: 700; color: var(--text); }
.pay-opt-hint { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.pay-mm { display: none; margin-top: 12px; }
.pay-opt:has(input:checked) .pay-mm { display: grid; }
.pay-opt-bkash .pay-opt-icon { background: #FDEDF3; color: #D6336C; }
.pay-opt-nagad .pay-opt-icon { background: #FFF0E6; color: #E8590C; }
.pay-opt-online .pay-opt-icon { background: var(--blue-bg); color: var(--blue); }

.policy-box { display: flex; gap: 10px; padding: 12px 14px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); font-size: 12.5px; color: var(--text-2); line-height: 1.5; }
.policy-box .icon { color: var(--muted); margin-top: 1px; }

.wz-footer { position: sticky; bottom: 0; z-index: 5; display: flex; align-items: center; gap: 14px; padding: 14px 22px; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter: blur(10px); border-radius: 0 0 20px 20px; }
.wz-footer-info { flex: 1; min-width: 0; }
.wz-footer-total { font-weight: 800; font-size: 17px; color: var(--text); font-variant-numeric: tabular-nums; }
.wz-footer-sub { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wz-footer .btn { min-width: 150px; }
@media (max-width: 1020px) {
  .wz-footer { position: fixed; left: 0; right: 0; bottom: 0; border-radius: 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); box-shadow: 0 -12px 30px -18px rgba(18, 19, 48, .3); }
  .bk-has-footer { padding-bottom: 84px; }
}

/* summary card */
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 6px 0; color: var(--text-2); }
.sum-row strong { color: var(--text); font-weight: 650; text-align: right; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; margin-top: 8px; border-top: 1px dashed var(--border-strong); font-weight: 800; font-size: 16px; }
.sum-when { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 12px; background: color-mix(in srgb, var(--brand) 7%, var(--surface)); margin-bottom: 12px; }
.sum-when-date { width: 48px; height: 52px; border-radius: 11px; background: var(--surface); box-shadow: var(--sh-1); display: flex; flex-direction: column; align-items: center; justify-content: center; flex: none; overflow: hidden; }
.sum-when-date small { font-size: 10px; font-weight: 800; letter-spacing: .06em; color: #fff; background: var(--brand); width: 100%; text-align: center; padding: 1px 0; }
.sum-when-date strong { font-size: 20px; font-weight: 800; line-height: 1.2; }
.sum-empty { font-size: 13px; color: var(--muted); text-align: center; padding: 10px 0; }

/* info card */
.hours-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.hours-table td { padding: 5px 0; color: var(--text-2); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.is-today td { color: var(--text); font-weight: 700; }
.info-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-2); padding: 7px 0; }
.info-line .icon { color: var(--muted); margin-top: 2px; }
.info-line a { color: var(--text-2); }
.info-line a:hover { color: var(--brand); }
.social-row { display: flex; gap: 8px; margin-top: 10px; }
.social-row a { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--text-2); }
.social-row a:hover { color: var(--brand); border-color: var(--brand-line); }

/* team, reviews, gallery */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.team-card { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); }
.team-card .avatar { width: 54px; height: 54px; font-size: 17px; }
.team-card-name { font-weight: 700; color: var(--text); }
.team-card-title { font-size: 12.5px; color: var(--muted); }
.team-card-bio { font-size: 12.5px; color: var(--text-2); margin-top: 6px; line-height: 1.45; }
.rv-summary { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 24px; align-items: center; padding: 20px 22px; }
@media (max-width: 560px) { .rv-summary { grid-template-columns: minmax(0, 1fr); } }
.rv-big { text-align: center; }
.rv-big strong { font-family: var(--font-display); font-size: 46px; font-weight: 800; letter-spacing: -.04em; line-height: 1; display: block; }
.rv-bars { display: flex; flex-direction: column; gap: 6px; }
.rv-bar { display: grid; grid-template-columns: 14px minmax(0, 1fr) 36px; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); }
.rv-bar div { height: 7px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.rv-bar div span { display: block; height: 100%; background: #F5A524; border-radius: 999px; }
.rv-list { border-top: 1px solid var(--border); }
.rv-item { padding: 18px 22px; border-bottom: 1px solid var(--border); }
.rv-item:last-child { border-bottom: 0; }
.rv-head { display: flex; align-items: center; gap: 10px; }
.rv-name { font-weight: 700; font-size: 13.5px; color: var(--text); }
.rv-date { font-size: 12px; color: var(--muted-2); }
.rv-text { margin-top: 8px; font-size: 14px; color: var(--text-2); line-height: 1.55; }
.rv-tags { margin-top: 6px; font-size: 12px; color: var(--muted); }
.rv-reply { margin-top: 10px; padding: 10px 12px; border-radius: 12px; background: var(--surface-2); border-left: 3px solid var(--brand); font-size: 13px; color: var(--text-2); }
.rv-reply strong { display: block; font-size: 12px; color: var(--text); margin-bottom: 2px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
.about-text { color: var(--text-2); font-size: 14.5px; line-height: 1.7; white-space: pre-line; }

/* success & manage */
.done { text-align: center; padding: 30px 22px 10px; }
.done-mark { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--green-bg); color: var(--green); position: relative; }
.done-mark::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--green-line); animation: ring 1.6s var(--ease) infinite; }
.done-mark .icon { width: 40px; height: 40px; stroke-width: 2.6; }
.done-mark.is-pending { background: var(--amber-bg); color: var(--amber); }
.done-mark.is-pending::before { border-color: var(--amber-line); }
@keyframes ring { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }
.done h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.done p { color: var(--muted); margin-top: 6px; font-size: 14.5px; }
.ref-chip { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; height: 34px; padding: 0 14px; border-radius: 999px; background: var(--surface-3); font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: .04em; }
.ticket { margin: 20px 22px; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; text-align: left; }
.ticket-top { display: flex; gap: 14px; align-items: center; padding: 16px 18px; background: color-mix(in srgb, var(--brand) 7%, var(--surface)); }
.ticket-body { padding: 6px 18px 14px; }
.ticket-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.ticket-row:last-child { border-bottom: 0; }
.ticket-row .icon { color: var(--muted); margin-top: 2px; }
.ticket-row small { display: block; color: var(--muted); font-size: 12px; }
.ticket-row strong { color: var(--text); font-weight: 650; }
.done-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0 22px 24px; }
.status-banner { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 16px; margin-bottom: 16px; font-weight: 600; }
.status-banner .icon { width: 22px; height: 22px; }
.status-banner.tone-brand { background: color-mix(in srgb, var(--brand) 10%, var(--surface)); color: var(--brand); }
.status-banner.tone-green { background: var(--green-bg); color: var(--green); }
.status-banner.tone-amber { background: var(--amber-bg); color: var(--amber); }
.status-banner.tone-gray { background: var(--gray-bg); color: var(--gray); }
.status-banner.tone-red { background: var(--red-bg); color: var(--red); }
.status-banner.tone-blue { background: var(--blue-bg); color: var(--blue); }
.status-banner small { display: block; font-weight: 500; font-size: 13px; opacity: .85; }

.stars-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: center; }
.stars-input input { position: absolute; opacity: 0; pointer-events: none; }
.stars-input label { cursor: pointer; color: var(--border-strong); transition: transform .12s, color .12s; }
.stars-input label svg { width: 40px; height: 40px; fill: currentColor; stroke: none; }
.stars-input label:hover, .stars-input label:hover ~ label, .stars-input input:checked ~ label { color: #F5A524; }
.stars-input label:hover { transform: scale(1.1); }

.bk-footer { padding: 26px 0 40px; text-align: center; font-size: 12.5px; color: var(--muted); }
.bk-footer a { color: var(--muted); font-weight: 600; }
.bk-footer a:hover { color: var(--brand); }
.bk-powered { display: inline-flex; align-items: center; gap: 6px; }
.bk-powered .brand-mark { width: 20px; height: 20px; border-radius: 6px; box-shadow: none; }
.bk-powered .brand-mark svg { width: 13px; height: 13px; }

/* embed (iframe) */
.bk-embed { background: transparent; }
.bk-embed .bk-container { padding: 0; max-width: none; }
.bk-embed .bk-grid { margin: 0; grid-template-columns: minmax(0, 1fr); }
.bk-embed .bk-card { border-radius: 18px; }
.bk-embed-head { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--border); }
.bk-embed .wz-footer { position: sticky; left: auto; right: auto; border-radius: 0 0 18px 18px; }

/* find booking */
.find-card { max-width: 440px; margin: 40px auto; }
.closed-page { max-width: 560px; margin: 60px auto; text-align: center; }
