/**
 * Bookings module — merchant dashboard & public booking pages
 */

/* ── Page shell ───────────────────────────────────────────── */
.wo-bk-page .dash-main {
  max-width: 72rem;
  padding-bottom: 2.5rem;
}

.wo-bk-page-hero,
.wo-bk-page .wo-bk-hero {
  margin-bottom: 1.35rem;
  max-width: 52rem;
}

.wo-bk-page-hero h1,
.wo-bk-page .wo-bk-hero h1,
.wo-bk-page .dash-main > h1:first-child {
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.wo-bk-page-hero__lead,
.wo-bk-page .wo-bk-hero .settings-lead,
.wo-bk-page .dash-main > .settings-lead:first-of-type {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.wo-bk-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.wo-bk-toolbar .wo-bk-page-hero__inner,
.wo-bk-toolbar > div:first-child {
  flex: 1;
  min-width: 12rem;
}

/* ── Panels (upgrade dash-panel inside bookings) ─────────── */
.wo-bk-page .dash-panel,
.wo-bk-panel {
  margin-top: 0;
  margin-bottom: 1.15rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 4px 14px rgba(15, 23, 42, 0.03);
}

.wo-bk-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: -0.15rem 0 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
}

.wo-bk-panel__head h2,
.wo-bk-page .dash-panel > h2:first-child {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.wo-bk-panel__sub {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── Flash / empty states ─────────────────────────────────── */
.wo-bk-page .dash-db-banner {
  margin-bottom: 1rem;
  border-radius: 12px;
}

.wo-bk-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #64748b;
}

.wo-bk-empty__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.wo-bk-empty a {
  color: #31b800;
  font-weight: 600;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.wo-bk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  margin: 0 0 1.25rem;
  padding: 0 0 0.15rem;
}

.wo-bk-tabs a {
  color: #64748b;
  text-decoration: none;
  padding: 0.55rem 0 0.65rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.wo-bk-tabs a:hover {
  color: #475569;
}

.wo-bk-tabs a.is-active {
  color: #31b800;
  border-bottom-color: #31b800;
}

/* ── Filter bar ─────────────────────────────────────────── */
.wo-bk-filter {
  margin-bottom: 1.15rem;
}

.wo-bk-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  max-width: 24rem;
}

.wo-bk-search input[type='search'],
.wo-bk-search input[type='text'] {
  flex: 1;
  min-width: 10rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wo-bk-search input:focus {
  outline: none;
  border-color: #31b800;
  box-shadow: 0 0 0 3px rgba(49, 184, 0, 0.12);
}

/* ── Forms ────────────────────────────────────────────────── */
.wo-bk-form {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.wo-bk-form--wide {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .wo-bk-form--wide {
    grid-template-columns: 1fr;
  }
}

.wo-bk-form--grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

@media (max-width: 900px) {
  .wo-bk-form--grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .wo-bk-form--grid3 {
    grid-template-columns: 1fr;
  }
}

.wo-bk-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
}

.wo-bk-field--full {
  grid-column: 1 / -1;
}

.wo-bk-field label,
.wo-bk-field > legend {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.01em;
}

.wo-bk-field .wo-bk-hint,
.wo-bk-field .settings-muted {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.15rem;
}

.wo-bk-field input:not([type='checkbox']):not([type='radio']),
.wo-bk-field select,
.wo-bk-field textarea {
  width: 100%;
  padding: 0.62rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.92rem;
  background: #fff;
  color: #0f172a;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wo-bk-field input:focus,
.wo-bk-field select:focus,
.wo-bk-field textarea:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.wo-bk-field fieldset {
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0;
  background: #fafbfc;
}

.wo-bk-field fieldset legend {
  padding: 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.wo-bk-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wo-bk-checklist label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
}

.wo-bk-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding-top: 0.35rem;
}

.wo-bk-form__actions--full {
  grid-column: 1 / -1;
}

/* Legacy filter grid inside bookings pages */
.wo-bk-page .wo-dash-orders-filter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 1rem;
  align-items: end;
}

.wo-bk-page .wo-dash-orders-filter__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.wo-bk-page .wo-dash-orders-filter__field input,
.wo-bk-page .wo-dash-orders-filter__field select {
  width: 100%;
  padding: 0.62rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.92rem;
}

.wo-bk-page .wo-dash-orders-filter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

/* ── Primary CTA ──────────────────────────────────────────── */
.wo-bk-page .btn-primary,
.wo-bk-public-page .btn-primary,
.wo-bk-service-profile-page .btn-primary,
.wo-bk-btn-primary {
  background: #31b800;
  border-color: #31b800;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.55rem 1.1rem;
  box-shadow: 0 2px 8px rgba(49, 184, 0, 0.25);
}

.wo-bk-page .btn-primary:hover,
.wo-bk-public-page .btn-primary:hover,
.wo-bk-service-profile-page .btn-primary:hover,
a.wo-bk-btn-primary:hover {
  filter: brightness(1.05);
  color: #fff;
}

.wo-bk-public-page .btn,
.wo-bk-service-profile-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, filter 0.15s, border-color 0.15s;
  line-height: 1.2;
}

.wo-bk-public-page a.btn,
.wo-bk-public-page a.btn:visited,
.wo-bk-service-profile-page a.btn,
.wo-bk-service-profile-page a.btn:visited {
  text-decoration: none;
}

.wo-bk-public-page a.btn-primary,
.wo-bk-public-page a.btn-primary:visited,
.wo-bk-service-profile-page a.btn-primary,
.wo-bk-service-profile-page a.btn-primary:visited,
a.wo-bk-btn-primary,
a.wo-bk-btn-primary:visited {
  color: #fff;
}

.wo-bk-public-page a.btn:hover,
.wo-bk-service-profile-page a.btn:hover {
  text-decoration: none;
}

.wo-bk-public-page .btn-ghost,
.wo-bk-service-profile-page .btn-ghost {
  background: #fff;
  color: #334155;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  font-weight: 600;
}

.wo-bk-public-page a.btn-ghost,
.wo-bk-public-page a.btn-ghost:visited,
.wo-bk-service-profile-page a.btn-ghost,
.wo-bk-service-profile-page a.btn-ghost:visited {
  color: #334155;
}

.wo-bk-public-page .btn-ghost:hover,
.wo-bk-service-profile-page .btn-ghost:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.wo-bk-public-page .dash-db-banner {
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
}

.wo-bk-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  background: #31b800;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(49, 184, 0, 0.28);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.wo-bk-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(49, 184, 0, 0.35);
  color: #fff !important;
}

/* ── Service type cards ───────────────────────────────────── */
.wo-bk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 1.1rem;
}

.wo-bk-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 176px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  text-decoration: none;
  color: inherit;
}

.wo-bk-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.1);
  transform: translateY(-2px);
}

a.wo-bk-card:hover {
  color: inherit;
}

.wo-bk-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
}

.wo-bk-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.wo-bk-card__meta {
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.wo-bk-card__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.wo-bk-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #f1f5f9;
  color: #475569;
}

.wo-bk-badge--slot {
  background: #eff6ff;
  color: #31b800;
}

.wo-bk-badge--public {
  background: #dbeafe;
  color: #1d4ed8;
}

.wo-bk-badge--muted {
  background: #f1f5f9;
  color: #64748b;
}

.wo-bk-card--admin-select {
  position: relative;
}

.wo-bk-card__bulk-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
}

.wo-bk-badge--flex {
  background: #fef3c7;
  color: #92400e;
}

/* ── Appointments table ───────────────────────────────────── */
.wo-bk-page .wo-table-wrap {
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.wo-bk-page .wo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.wo-bk-page .wo-table thead th {
  background: #f8fafc;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.wo-bk-page .wo-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  color: #334155;
}

.wo-bk-page .wo-table tbody tr:hover td {
  background: #fafbfc;
}

.wo-bk-appt-date-group {
  background: #f8fafc !important;
  font-weight: 700;
  font-size: 0.88rem;
  color: #475569 !important;
}

.wo-bk-appt-date-group td {
  padding: 0.65rem 1rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.wo-bk-appt-date-group span:last-child {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.82rem;
}

.wo-bk-status-select {
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
  color: #334155;
  cursor: pointer;
}

.wo-bk-code {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #31b800;
}

/* ── Availability ─────────────────────────────────────────── */
.wo-bk-staff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.wo-bk-staff-chips a {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.wo-bk-staff-chips a:hover {
  background: #eff6ff;
  color: #31b800;
}

.wo-bk-staff-chips a.is-active {
  background: #31b800;
  color: #fff;
}

.wo-bk-avail-sheet {
  margin-top: 0.5rem;
}

.wo-bk-day-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.wo-bk-day-row:last-child {
  border-bottom: none;
}

.wo-bk-day-row > strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
  padding-top: 0.55rem;
}

.wo-bk-day-row__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wo-bk-slot-pair {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 10px;
}

.wo-bk-slot-pair span {
  color: #94a3b8;
  font-weight: 600;
}

.wo-bk-slot-pair select {
  min-width: 7.25rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
  background: #fff;
}

.wo-bk-add-slot-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  border: 1px dashed #bfdbfe;
  background: #eff6ff;
  color: #31b800;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.wo-bk-add-slot-btn:hover {
  background: #dbeafe;
  border-color: #31b800;
}

/* ── Share link ───────────────────────────────────────────── */
.wo-bk-share-panel {
  max-width: 40rem;
}

.wo-bk-share-box {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 0.5rem;
}

.wo-bk-share-box input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 0.9rem;
  background: #f8fafc;
  font-family: ui-monospace, monospace;
}

.wo-bk-share-box input:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
  background: #fff;
}

/* ── Get booked ───────────────────────────────────────────── */
.wo-bk-get-booked {
  border-radius: 18px;
  padding: 1.75rem 2rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 20px rgba(49, 184, 0, 0.08);
  max-width: 40rem;
}

.wo-bk-get-booked h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1f7a00;
  letter-spacing: -0.02em;
}

.wo-bk-get-booked > p {
  margin: 0 0 1rem;
  color: #1d4ed8;
  line-height: 1.55;
}

.wo-bk-steps-list {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  line-height: 1.75;
  color: #334155;
}

.wo-bk-steps-list a {
  color: #31b800;
  font-weight: 600;
}

/* ── Slot setup ───────────────────────────────────────────── */
.wo-bk-slot-panel {
  max-width: 32rem;
}

/* ── Calendar ─────────────────────────────────────────────── */
.wo-bk-cal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.wo-bk-cal-nav__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  min-width: 10rem;
  text-align: center;
}

.wo-bk-cal-nav .btn-ghost {
  border-radius: 10px;
  min-width: 2.5rem;
}

.wo-bk-cal-wrap {
  overflow-x: auto;
  padding: 0.15rem;
}

.wo-bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(4.5rem, 1fr));
  gap: 4px;
  font-size: 0.82rem;
  min-width: 36rem;
}

.wo-bk-cal-grid .wo-bk-cal-head {
  font-weight: 700;
  color: #64748b;
  text-align: center;
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wo-bk-cal-cell {
  min-height: 88px;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 0.35rem;
  background: #fff;
  transition: border-color 0.15s ease;
}

.wo-bk-cal-cell.is-today {
  border-color: #31b800;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(49, 184, 0, 0.15);
}

.wo-bk-cal-cell.is-muted {
  background: #f8fafc;
  opacity: 0.55;
}

.wo-bk-cal-cell .n {
  font-weight: 700;
  font-size: 0.78rem;
  color: #64748b;
  display: block;
  margin-bottom: 0.2rem;
}

.wo-bk-cal-cell.is-today .n {
  color: #31b800;
}

.wo-bk-cal-event {
  display: block;
  margin-top: 3px;
  padding: 3px 5px;
  border-radius: 6px;
  background: #eff6ff;
  color: #31b800;
  font-size: 0.68rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.12s ease;
}

.wo-bk-cal-event:hover {
  background: #dbeafe;
  color: #1f7a00;
}

/* ── Public booking page ──────────────────────────────────── */
body.wo-bk-public-page {
  background: #f1f5f9;
  min-height: 100vh;
}

.wo-bk-public {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

.wo-bk-public-header h1 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.wo-bk-public-header p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.wo-bk-public-steps {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.35rem;
  margin-top: 1.5rem;
}

.wo-bk-step-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wo-bk-step-nav .step {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.wo-bk-step-nav .step.is-active {
  border-color: #31b800;
  background: #eff6ff;
  color: #31b800;
  box-shadow: 0 0 0 3px rgba(49, 184, 0, 0.1);
}

.wo-bk-public-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.wo-bk-public-card h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.wo-bk-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.5rem;
}

.wo-bk-slot-btn {
  padding: 0.55rem 0.4rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #334155;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.wo-bk-slot-btn.is-selected,
.wo-bk-slot-btn:hover {
  border-color: #31b800;
  background: #eff6ff;
  color: #31b800;
}

.wo-bk-slot-empty {
  margin: 0.85rem 0 0;
  font-weight: 600;
}

.wo-bk-period-title {
  margin: 1.1rem 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.wo-bk-confirmed {
  text-align: center;
  padding: 2rem 1rem;
}

.wo-bk-confirmed h2 {
  color: #059669;
  margin-bottom: 0.5rem;
}

/* Share link two-column + QR */
.wo-bk-share-layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 1.15rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

.wo-bk-share-qr-panel {
  text-align: center;
}

.wo-bk-share-qr__box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 1rem;
  background: #eff6ff;
  border: 1px dashed #bfdbfe;
  border-radius: 14px;
}

.wo-bk-share-qr__box canvas,
.wo-bk-share-qr__img {
  border-radius: 8px;
}

/* Visibility toggles */
.wo-bk-visibility-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.wo-bk-row--new td {
  background: #fef9c3;
}

.wo-bk-row--new .wo-bk-code {
  color: #a16207;
  font-weight: 700;
}

.wo-bk-notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.wo-bk-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  padding: 0.85rem 1rem;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  background: #fafbfc;
}

.wo-bk-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wo-bk-toggle__ui {
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #cbd5e1;
  position: relative;
  transition: background 0.2s ease;
  margin-top: 0.15rem;
}

.wo-bk-toggle__ui::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.wo-bk-toggle input:checked + .wo-bk-toggle__ui {
  background: #31b800;
}

.wo-bk-toggle input:checked + .wo-bk-toggle__ui::after {
  transform: translateX(1.25rem);
}

.wo-bk-toggle__label {
  display: grid;
  gap: 0.2rem;
}

.wo-bk-toggle__label strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.wo-bk-toggle__label small {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Analytics stats */
.wo-bk-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.wo-bk-stat-card {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wo-bk-stat-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.wo-bk-stat-card__value {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.wo-bk-stat-card__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.wo-bk-stat-card--ok .wo-bk-stat-card__value {
  color: #059669;
}

.wo-bk-stat-card--warn .wo-bk-stat-card__value {
  color: #d97706;
}

.wo-bk-stat-card--muted .wo-bk-stat-card__value {
  color: #64748b;
}

@media (max-width: 900px) {
  .wo-bk-share-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wo-bk-public-steps {
    grid-template-columns: 1fr;
  }

  .wo-bk-step-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .wo-bk-day-row {
    grid-template-columns: 1fr;
  }

  .wo-bk-day-row > strong {
    padding-top: 0;
  }

  .wo-bk-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .wo-bk-page .wo-table-wrap {
    overflow-x: auto;
  }

  .wo-bk-thumb-editor {
    grid-template-columns: 1fr;
  }

  .wo-bk-service-detail__cta {
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }
}

/* ── Service type thumbnails ─────────────────────────────── */
.wo-bk-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  margin-bottom: 0.15rem;
}

.wo-bk-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wo-bk-card--public {
  min-height: auto;
}

.wo-bk-card__excerpt {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64748b;
}

.wo-bk-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #475569;
}

.wo-bk-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.65rem;
}

.wo-bk-card__actions .btn {
  flex: 1 1 7rem;
  min-width: 0;
  justify-content: center;
}

.wo-bk-grid--public {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Merchant editor: details ────────────────────────────── */
.wo-bk-form--editor .wo-bk-editor-section {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.wo-bk-form--editor .wo-bk-editor-section:last-of-type {
  border-bottom: none;
}

.wo-bk-editor-section__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.wo-bk-editor-section__lead {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.5;
}

.wo-bk-editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem 1rem;
}

.wo-bk-thumb-editor {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1rem;
  align-items: start;
}

.wo-bk-thumb-editor__preview {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wo-bk-thumb-editor__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wo-bk-thumb-editor__placeholder {
  font-size: 2rem;
}

.wo-bk-gallery-manager {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem;
  background: #f8fafc;
}

.wo-bk-gallery-manager__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  min-height: 2rem;
}

.wo-bk-gallery-manager__empty {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: #94a3b8;
}

.wo-bk-gallery-item {
  position: relative;
  width: 8.5rem;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: grab;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}

.wo-bk-gallery-item.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}

.wo-bk-gallery-item.is-drop-target {
  border-color: #31b800;
  box-shadow: 0 0 0 2px rgba(49, 184, 0, 0.2);
}

.wo-bk-gallery-item__handle {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  z-index: 2;
  padding: 0.1rem 0.25rem;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.wo-bk-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wo-bk-gallery-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  padding: 0.35rem;
  border-top: 1px solid #f1f5f9;
}

.wo-bk-gallery-item__actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.2rem 0.35rem;
  font-size: 0.68rem;
}

.wo-bk-gallery-manager__add {
  display: grid;
  gap: 0.65rem;
}

.wo-bk-gallery-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 0.85rem;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.wo-bk-gallery-drop input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.wo-bk-gallery-drop span {
  display: grid;
  gap: 0.2rem;
  color: #64748b;
  font-size: 0.84rem;
}

.wo-bk-gallery-drop strong {
  color: #0f172a;
}

.wo-bk-gallery-pending {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: #64748b;
}

.wo-bk-gallery-url-add {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wo-bk-gallery-url-add input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

/* Rich text editor (service type admin) */
.wo-bk-rich-editor-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wo-bk-rich-editor-wrap .ql-toolbar.ql-snow {
  border-radius: 10px 10px 0 0;
  border-color: #e2e8f0;
  background: #f8fafc;
}

.wo-bk-rich-editor-wrap .ql-container.ql-snow {
  border-radius: 0 0 10px 10px;
  border-color: #e2e8f0;
  font: inherit;
  font-size: 0.92rem;
  min-height: 12rem;
  background: #fff;
}

.wo-bk-rich-editor-wrap .ql-editor {
  min-height: 11rem;
  line-height: 1.55;
  color: #0f172a;
}

.wo-bk-rich-editor-wrap .ql-editor.ql-blank::before {
  color: #94a3b8;
  font-style: normal;
}

/* Rich prose on public service profile */
.wo-bk-rich-prose h2,
.wo-bk-rich-prose h3,
.wo-bk-rich-prose h4 {
  margin: 1rem 0 0.45rem;
  color: #0f172a;
  line-height: 1.25;
}

.wo-bk-rich-prose h2 { font-size: 1.15rem; }
.wo-bk-rich-prose h3 { font-size: 1.05rem; }
.wo-bk-rich-prose p { margin: 0 0 0.75rem; }
.wo-bk-rich-prose ul,
.wo-bk-rich-prose ol { margin: 0 0 0.85rem 1.1rem; padding: 0; }
.wo-bk-rich-prose li { margin-bottom: 0.35rem; }
.wo-bk-rich-prose a { color: #15803d; text-decoration: underline; }
.wo-bk-rich-prose blockquote {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  border-left: 3px solid #31b800;
  background: #f8fafc;
  color: #475569;
}

body.wo-store-page.wo-bk-service-profile-page {
  background: #f8fafc;
}

body.wo-store-page.wo-bk-public-page--store {
  background: #f1f5f9;
}

.wo-bk-public-main .wo-bk-public {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.75rem 1.1rem 1.5rem;
}

.wo-bk-public-main .wo-bk-public--catalog {
  padding-bottom: 1rem;
}

@media (max-width: 900px) {
  .wo-bk-public-main .wo-bk-public--catalog {
    padding-bottom: 5.5rem;
  }

  .wo-bk-public-main .wo-bk-cart-bar {
    bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }
}

.wo-bk-service-profile-main .wo-bk-service-profile {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.75rem 1.1rem 1.5rem;
}

@media (max-width: 900px) {
  .wo-bk-service-profile-main .wo-bk-service-profile {
    padding-bottom: 6.5rem;
  }
}

.wo-bk-reviews-editor__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 0.65rem;
}

.wo-bk-reviews-editor__head h4 {
  margin: 0;
  font-size: 0.95rem;
}

.wo-bk-reviews-list {
  display: grid;
  gap: 0.85rem;
}

.wo-bk-review-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem 0.85rem;
  padding: 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fafbfc;
}

.wo-bk-review-row .wo-bk-review-remove {
  justify-self: start;
  align-self: end;
}

/* ── Stars ───────────────────────────────────────────────── */
.wo-bk-stars {
  display: inline-flex;
  gap: 0.05rem;
  color: #e2e8f0;
  line-height: 1;
}

.wo-bk-stars__icon {
  font-size: 1rem;
}

.wo-bk-stars__icon.is-full,
.wo-bk-stars__icon.is-half {
  color: #f59e0b;
}

.wo-bk-stars--sm .wo-bk-stars__icon {
  font-size: 0.82rem;
}

/* ── Public service detail page ──────────────────────────── */
.wo-bk-service-detail-page {
  padding-bottom: 5rem;
}

.wo-bk-service-detail__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wo-bk-service-detail__back {
  font-weight: 600;
  color: #31b800;
  text-decoration: none;
  font-size: 0.9rem;
}

.wo-bk-service-detail__store {
  font-size: 0.82rem;
  color: #64748b;
}

.wo-bk-service-gallery__hero {
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 16 / 10;
  margin-bottom: 0.65rem;
}

.wo-bk-service-gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wo-bk-service-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.wo-bk-service-gallery__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.wo-bk-service-gallery__thumb.is-active {
  border-color: #31b800;
}

.wo-bk-service-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wo-bk-service-detail__body {
  margin-top: 1.15rem;
}

.wo-bk-service-detail__head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
  color: #0f172a;
}

.wo-bk-service-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  font-size: 0.88rem;
  color: #64748b;
}

.wo-bk-service-detail__price {
  font-weight: 700;
  color: #0f172a;
}

.wo-bk-service-detail__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
}

.wo-bk-service-detail__lead {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.wo-bk-service-block {
  margin-top: 1.35rem;
}

.wo-bk-service-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.wo-bk-service-detail__prose {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #334155;
}

.wo-bk-service-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.wo-bk-service-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wo-bk-service-reviews {
  display: grid;
  gap: 0.85rem;
}

.wo-bk-service-review {
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.wo-bk-service-review__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.45rem;
}

.wo-bk-service-review__head time {
  margin-left: auto;
  font-size: 0.78rem;
  color: #94a3b8;
}

.wo-bk-service-review p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
}

.wo-bk-service-detail__cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.wo-bk-service-detail__cta .btn {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  display: flex;
}

/* ── Service profile page (book-service.php) ───────────── */
body.wo-bk-service-profile-page {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  min-height: 100vh;
}

.wo-bk-service-profile {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.1rem 6rem;
}

.wo-bk-service-profile__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.wo-bk-service-profile__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #15803d;
  text-decoration: none;
}

.wo-bk-service-profile__back:hover {
  color: #31b800;
}

.wo-bk-service-profile__store {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-align: right;
}

.wo-bk-service-profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 1.5rem;
  align-items: start;
}

.wo-bk-service-profile__main {
  min-width: 0;
}

.wo-bk-service-profile__hero {
  margin-bottom: 1.25rem;
}

.wo-bk-service-gallery--profile .wo-bk-service-gallery__hero {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  position: relative;
}

.wo-bk-service-gallery__stage {
  position: relative;
  touch-action: pan-y;
}

.wo-bk-service-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
}

.wo-bk-service-gallery__nav--prev {
  left: 0.65rem;
}

.wo-bk-service-gallery__nav--next {
  right: 0.65rem;
}

.wo-bk-service-gallery__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0 0.15rem;
}

.wo-bk-service-gallery__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wo-bk-service-gallery__dot.is-active {
  background: #31b800;
  transform: scale(1.15);
}

.wo-bk-service-gallery__hero img {
  -webkit-user-drag: none;
  user-select: none;
  touch-action: pan-y;
}

.wo-bk-service-gallery__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.wo-bk-service-gallery--profile .wo-bk-service-gallery__thumbs {
  margin-top: 0.75rem;
  gap: 0.55rem;
  padding: 0.15rem 0.1rem 0.35rem;
}

.wo-bk-service-gallery--profile .wo-bk-service-gallery__thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 12px;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.wo-bk-service-gallery--profile .wo-bk-service-gallery__thumb.is-active {
  border-color: #31b800;
  box-shadow: 0 0 0 3px rgba(49, 184, 0, 0.15);
}

.wo-bk-service-profile__hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 45%, #86efac 100%);
  box-shadow: 0 12px 40px rgba(22, 101, 52, 0.12);
}

.wo-bk-service-profile__hero-icon {
  font-size: clamp(3rem, 12vw, 5rem);
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.wo-bk-service-profile__intro--mobile {
  display: none;
}

.wo-bk-service-profile__intro h1,
.wo-bk-service-profile__card-title {
  margin: 0;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.wo-bk-service-profile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.wo-bk-service-profile__chip {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.wo-bk-service-profile__chip--muted {
  background: #f8fafc;
  color: #64748b;
}

.wo-bk-service-profile__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
}

.wo-bk-service-profile__lead {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wo-bk-service-profile__section {
  margin-bottom: 1.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wo-bk-service-profile__section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.wo-bk-service-profile__section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.wo-bk-service-profile__section-head h2 {
  margin: 0;
}

.wo-bk-service-profile__review-summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.wo-bk-service-profile__review-score {
  font-size: 1.35rem;
  font-weight: 800;
  color: #15803d;
  line-height: 1;
}

.wo-bk-service-profile__review-summary small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: #64748b;
}

.wo-bk-service-profile__prose {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
}

.wo-bk-service-profile__section .wo-bk-service-reviews {
  margin-top: 0;
}

.wo-bk-service-profile__section--reviews {
  padding-bottom: 1rem;
}

.wo-bk-service-profile__section--reviews .wo-bk-service-review {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid #f1f5f9;
}

.wo-bk-service-profile__section--reviews .wo-bk-service-review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wo-bk-service-review__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #31b800, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wo-bk-service-review__body {
  flex: 1;
  min-width: 0;
}

.wo-bk-service-profile__aside {
  position: relative;
}

.wo-bk-service-profile__card {
  position: sticky;
  top: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.wo-bk-service-profile__card-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.wo-bk-service-profile__card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.wo-bk-service-profile__card-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.wo-bk-service-profile__rating--card {
  margin-top: 0;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.wo-bk-service-profile__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  margin-bottom: 1rem;
}

.wo-bk-service-profile__fact {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f8fafc;
}

.wo-bk-service-profile__fact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.wo-bk-service-profile__fact strong {
  font-size: 0.86rem;
  color: #0f172a;
  font-weight: 600;
}

.wo-bk-service-profile__price-block {
  margin-bottom: 0.85rem;
}

.wo-bk-service-profile__price-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.wo-bk-service-profile__price {
  margin: 0.15rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.wo-bk-service-profile__price--free {
  color: #15803d;
}

.wo-bk-service-profile__book {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.wo-bk-service-profile__back-alt {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.wo-bk-service-profile__card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wo-bk-service-profile__trust {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.wo-bk-service-profile__trust li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}

.wo-bk-service-profile__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #31b800;
  font-weight: 700;
}

.wo-bk-service-profile__cta-bar {
  display: none;
}

@media (max-width: 900px) {
  .wo-bk-service-profile__layout {
    grid-template-columns: 1fr;
  }

  .wo-bk-service-profile__aside {
    display: none;
  }

  .wo-bk-service-profile__intro--mobile {
    display: block;
    margin-top: 1rem;
  }

  .wo-bk-service-profile {
    padding-bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px));
  }

  .wo-bk-service-profile__hero {
    margin-left: -1.1rem;
    margin-right: -1.1rem;
    margin-bottom: 1rem;
  }

  .wo-bk-service-gallery--profile .wo-bk-service-gallery__hero {
    border-radius: 0;
    aspect-ratio: 1 / 1;
    max-height: min(100vw, 72vh);
    box-shadow: none;
  }

  .wo-bk-service-gallery--profile .wo-bk-service-gallery__thumbs {
    display: none;
  }

  .wo-bk-service-gallery__dots {
    display: flex;
  }

  .wo-bk-service-profile__cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(4.1rem + env(safe-area-inset-bottom, 0px));
    z-index: 10045;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -10px 32px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(8px);
  }

  .wo-bk-service-profile__cta-price {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
  }

  .wo-bk-service-profile__cta-price strong {
    font-size: 1rem;
    color: #0f172a;
  }

  .wo-bk-service-profile__cta-price span {
    font-size: 0.78rem;
    color: #64748b;
  }

  .wo-bk-service-profile__cta-bar .btn {
    flex-shrink: 0;
    min-width: 8.5rem;
    min-height: 2.75rem;
  }
}

/* ── Analytics activity search & pager ───────────────────── */
.wo-bk-activity-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wo-bk-activity-search input[type="search"] {
  flex: 1 1 12rem;
  min-width: 0;
}

.wo-bk-activity-search__per {
  flex: 0 0 auto;
  padding: 0.5rem 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.88rem;
  background: #fff;
}

.wo-bk-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.wo-bk-pager__summary {
  font-size: 0.86rem;
  color: #64748b;
}

.wo-bk-pager__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.wo-bk-pager__link,
.wo-bk-pager__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.wo-bk-pager__link {
  color: #334155;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.wo-bk-pager__link:hover {
  border-color: #31b800;
  color: #31b800;
}

.wo-bk-pager__current {
  background: #31b800;
  color: #fff;
}

.wo-bk-pager__ellipsis {
  color: #94a3b8;
  padding: 0 0.15rem;
}

.wo-bk-pager .btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.45;
}

/* ── Bookings hub — storefront FAB manager ───────────────── */
.bk-hub-fab-card {
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.bk-hub-fab-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.bk-hub-fab-card__head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  color: #0f172a;
}

.bk-hub-fab-card__lead {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.bk-hub-fab-card__body {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 1.25rem;
  align-items: center;
}

.bk-hub-fab-preview-stage {
  position: relative;
  min-height: 9rem;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.bk-hub-fab-preview-stage--modal {
  min-height: 11rem;
}

.bk-hub-fab-preview-btn {
  position: absolute !important;
  bottom: 1rem !important;
  left: 1rem !important;
  cursor: default;
  pointer-events: none;
}

.bk-hub-fab-preview-cart {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  background: #e2e8f0;
  opacity: 0.85;
}

.bk-hub-fab-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem 1rem;
  margin: 0;
}

.bk-hub-fab-summary div {
  margin: 0;
}

.bk-hub-fab-summary dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}

.bk-hub-fab-summary dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.bk-hub-fab-swatch {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  vertical-align: middle;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.bk-hub-fab-dialog {
  border: none;
  border-radius: 16px;
  padding: 0;
  width: min(52rem, calc(100vw - 1.5rem));
  max-height: calc(100vh - 2rem);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
}

.bk-hub-fab-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
}

.bk-hub-fab-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f1f5f9;
}

.bk-hub-fab-dialog__head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.bk-hub-fab-dialog__close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
  padding: 0.15rem 0.35rem;
}

.bk-hub-fab-dialog__layout {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 240px);
  gap: 1rem;
  padding: 1rem 1.15rem;
  max-height: min(70vh, 34rem);
  overflow: auto;
}

.bk-hub-fab-dialog__fields {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.bk-hub-fab-colors__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bk-hub-fab-colors__row input[type="color"] {
  width: 3rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
}

.bk-hub-fab-icon-picker__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.bk-hub-fab-icon-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.5rem;
}

.bk-hub-fab-icon-picker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.35rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bk-hub-fab-icon-picker__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bk-hub-fab-icon-picker__item.is-selected,
.bk-hub-fab-icon-picker__item:hover {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.bk-hub-fab-icon-picker__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #fff;
}

.bk-hub-fab-icon-picker__name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  line-height: 1.2;
}

.bk-hub-fab-dialog__preview-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.bk-hub-fab-dialog__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem 1rem;
  border-top: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
  .bk-hub-fab-card__body,
  .bk-hub-fab-dialog__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wo-bk-activity-search .btn {
    flex: 1 1 auto;
  }

  .wo-bk-pager {
    flex-direction: column;
    align-items: stretch;
  }

  .wo-bk-pager__links {
    justify-content: center;
  }
}

/* ── Public catalog: search, filters, multi-select ─────────── */
.wo-bk-public--catalog {
  max-width: 1120px;
}

.wo-bk-public-header__inner {
  max-width: 42rem;
}

.wo-bk-public-main {
  min-width: 0;
}

.wo-bk-step-nav .step.is-done {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.wo-bk-step-nav__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.72rem;
}

.wo-bk-step-nav .step.is-active .wo-bk-step-nav__num {
  background: #31b800;
  color: #fff;
}

.wo-bk-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wo-bk-catalog-search {
  flex: 1 1 12rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.wo-bk-catalog-search svg {
  flex-shrink: 0;
  color: #94a3b8;
}

.wo-bk-catalog-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  outline: none;
}

.wo-bk-catalog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

.wo-bk-catalog-filter-btn__badge {
  min-width: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #31b800;
  color: #fff;
  font-size: 0.68rem;
  text-align: center;
}

.wo-bk-catalog-view-toggle {
  display: inline-flex;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.wo-bk-catalog-view-toggle button {
  padding: 0.5rem 0.7rem;
  border: 0;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.wo-bk-catalog-view-toggle button.is-active {
  background: #eff6ff;
  color: #31b800;
}

.wo-bk-catalog-meta {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: #64748b;
}

.wo-bk-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.wo-bk-active-filters__chip {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 600;
}

.wo-bk-catalog-pager {
  margin-top: 1.15rem;
}

.wo-bk-catalog-pager .wo-bk-pager__link {
  cursor: pointer;
  font: inherit;
}

.wo-bk-catalog-pager .wo-bk-pager__link:focus-visible {
  outline: 2px solid #31b800;
  outline-offset: 2px;
}

.wo-bk-grid--catalog {
  gap: 1rem;
}

.wo-bk-card--catalog {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.wo-bk-card--catalog .wo-bk-card__media-link .wo-bk-card__thumb,
.wo-bk-card--catalog > .wo-bk-card__media-link.wo-bk-card__media-link--icon,
.wo-bk-card--catalog > .wo-bk-card__icon {
  border-radius: 0;
  margin: 0;
}

.wo-bk-card--catalog .wo-bk-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wo-bk-card--catalog .wo-bk-card__media-link:hover {
  color: inherit;
}

.wo-bk-card--catalog .wo-bk-card__media-link .wo-bk-card__thumb img {
  transition: transform 0.2s ease;
}

.wo-bk-card--catalog .wo-bk-card__media-link:hover .wo-bk-card__thumb img {
  transform: scale(1.03);
}

.wo-bk-card--catalog .wo-bk-card__title-link {
  color: inherit;
  text-decoration: none;
}

.wo-bk-card--catalog .wo-bk-card__title-link:hover {
  color: #31b800;
}

.wo-bk-card--catalog .wo-bk-card__media-link:focus-visible,
.wo-bk-card--catalog .wo-bk-card__title-link:focus-visible {
  outline: 2px solid #31b800;
  outline-offset: 2px;
  border-radius: 4px;
}

.wo-bk-card--catalog .wo-bk-card__actions .btn {
  flex: 1 1 7rem;
  min-width: 0;
  text-align: center;
}

.wo-bk-card--catalog .wo-bk-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 1rem 1rem;
}

.wo-bk-card__price {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
}

.wo-bk-card__price--free {
  color: #059669;
}

.wo-bk-card__select {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  cursor: pointer;
}

.wo-bk-card__select input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wo-bk-card__select-ui {
  display: flex;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid #fff;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.35);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.wo-bk-card__select input:checked + .wo-bk-card__select-ui {
  background: #31b800;
  border-color: #31b800;
}

.wo-bk-card__select input:checked + .wo-bk-card__select-ui::after {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.wo-bk-grid--list.wo-bk-grid--catalog {
  grid-template-columns: 1fr;
}

.wo-bk-grid--list .wo-bk-card--catalog {
  flex-direction: row;
}

.wo-bk-grid--list .wo-bk-card--catalog .wo-bk-card__media-link .wo-bk-card__thumb {
  width: 8.5rem;
  min-height: 6rem;
  aspect-ratio: auto;
  flex-shrink: 0;
}

.wo-bk-grid--list .wo-bk-card--catalog > .wo-bk-card__media-link.wo-bk-card__media-link--icon,
.wo-bk-grid--list .wo-bk-card--catalog > .wo-bk-card__icon {
  width: 5rem;
  flex-shrink: 0;
  align-self: center;
  margin: 0.75rem;
}

.wo-bk-filter-sheet[hidden] {
  display: none !important;
}

.wo-bk-filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.wo-bk-filter-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.wo-bk-filter-sheet__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 22rem);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
}

.wo-bk-filter-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
}

.wo-bk-filter-sheet__head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.wo-bk-filter-sheet__close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}

.wo-bk-filter-sheet__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.1rem;
}

.wo-bk-filter-group {
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
}

.wo-bk-filter-group legend {
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.wo-bk-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.4rem 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
}

.wo-bk-filter-chip:has(input:checked) {
  border-color: #31b800;
  background: #eff6ff;
  color: #15803d;
}

.wo-bk-filter-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.wo-bk-filter-range label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: #64748b;
}

.wo-bk-filter-range input {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.wo-bk-filter-sheet__foot {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #e2e8f0;
}

.wo-bk-filter-sheet__foot .btn {
  flex: 1;
}

body.wo-bk-filter-open {
  overflow: hidden;
}

.wo-bk-cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.wo-bk-cart-bar__info {
  display: grid;
  gap: 0.1rem;
  font-size: 0.88rem;
  color: #64748b;
}

.wo-bk-cart-bar__info strong {
  color: #0f172a;
  font-size: 0.95rem;
}

.wo-bk-catalog-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #64748b;
}

.wo-bk-back {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
}

.wo-bk-selected-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.wo-bk-selected-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 0.88rem;
}

.wo-bk-selected-list li span {
  color: #64748b;
}

.wo-bk-summary-total {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.wo-bk-summary-when {
  margin: 0 0 0.5rem;
  color: #475569;
}

.wo-bk-schedule-mode {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.wo-bk-schedule-mode legend {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.wo-bk-schedule-mode__opt {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
}

.wo-bk-schedule-mode__opt.is-selected {
  border-color: #31b800;
  background: #f0fdf4;
}

.wo-bk-schedule-mode__opt span {
  display: grid;
  gap: 0.15rem;
}

.wo-bk-schedule-mode__opt small {
  color: #64748b;
}

.wo-bk-confirmed__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3rem;
}

.wo-bk-confirmed__codes {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.wo-bk-public-flash {
  margin-top: 1rem;
}

.wo-bk-bulk-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.wo-bk-bulk-bar label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .wo-bk-public--catalog {
    padding-bottom: 5rem;
  }

  .wo-bk-catalog-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
  }

  .wo-bk-filter-sheet__panel {
    width: 100%;
    max-height: 88vh;
    top: auto;
    border-radius: 16px 16px 0 0;
  }

  .wo-bk-grid--list .wo-bk-card--catalog {
    flex-direction: column;
  }

  .wo-bk-grid--list .wo-bk-card--catalog .wo-bk-card__media-link .wo-bk-card__thumb {
    width: 100%;
  }
}
