/* Booking wizard — uses site tokens from ../styles.css */
:root {
  --book-selected-border: var(--accent);
  --book-selected-bg: #fffbf0;
  --book-selected-muted: rgba(255, 184, 0, 0.35);
  --book-link: #111111;
}

.book-body {
  background: var(--bg-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.book-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background: var(--bg-white);
  z-index: 20;
}

.book-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.book-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.book-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.book-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.book-main {
  flex: 1;
  padding: 2.5rem 0 4rem;
}

.book-panel {
  max-width: 720px;
}

.book-panel--wide {
  max-width: min(1040px, 100%);
}

.book-panel--packages .book-lead {
  margin-bottom: 1.25rem;
}

.book-panel--pay {
  max-width: 1100px;
}

.book-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.book-lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.book-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.book-field {
  margin-bottom: 1.25rem;
}

.book-field label,
.book-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  max-width: 480px;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--bg-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.25);
}

.book-field-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.book-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.book-link {
  color: var(--book-link);
  font-weight: 600;
  font-size: 0.95rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0.25rem 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}

.book-link:hover {
  text-decoration-color: var(--accent);
  color: var(--text);
}

/* Service cards */
.book-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 720px) {
  .book-card-grid {
    grid-template-columns: 1fr;
  }
}

.book-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-white);
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}

.book-select-card__check {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.book-service-section {
  margin-top: 2rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.book-select-card:hover {
  border-color: #c9c5bc;
}

.book-select-card.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
  box-shadow: 0 0 0 1px var(--book-selected-muted);
}

.book-select-card__icon {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.book-select-card__icon img,
.book-damage-card__icon img {
  max-height: 56px;
  width: auto;
  display: block;
  margin: 0 auto 0.75rem;
}

.book-select-card.is-selected .book-select-card__icon {
  color: var(--text);
}

.book-select-card__label {
  font-weight: 700;
  font-size: 0.95rem;
}

.book-damage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.book-window-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 520px;
  margin-bottom: 0.5rem;
}

.book-window-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.book-window-row.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
}

.book-window-row__check {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text);
}

.book-window-row__label {
  flex: 1;
  font-weight: 600;
}

.book-window-row__icon img {
  max-height: 36px;
  width: auto;
  margin: 0;
}

@media (max-width: 640px) {
  .book-damage-grid {
    grid-template-columns: 1fr;
  }
}

.book-damage-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  cursor: pointer;
  text-align: left;
}

.book-damage-card.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
  box-shadow: 0 0 0 1px var(--book-selected-muted);
}

.book-damage-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.book-damage-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.book-segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 11.5rem;
  padding: 4px;
  gap: 4px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  background: var(--bg-white);
}

.book-segment button {
  border: none;
  background: transparent;
  padding: 0.6rem 0.5rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  min-width: 0;
  border-radius: var(--radius-pill);
  line-height: 1.2;
}

.book-segment button.is-selected {
  background: var(--book-selected-bg);
  box-shadow: inset 0 0 0 2px var(--book-selected-border);
}

/* Yes / No toggles */
.book-yesno {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 480px;
}

.book-yesno button {
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.book-yesno button.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
}

.book-option-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
}

.book-option-btn {
  text-align: left;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-white);
  font: inherit;
  cursor: pointer;
}

.book-option-btn.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
}

.book-option-btn small {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.book-vin-help {
  margin: 1rem 0 1.5rem;
  max-width: 520px;
}

.book-vin-help summary {
  cursor: pointer;
  color: var(--book-link);
  font-weight: 600;
  list-style: none;
}

.book-vin-help summary::-webkit-details-marker {
  display: none;
}

.book-vin-help ul {
  margin: 0.75rem 0 0 1.1rem;
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.book-vehicle-line {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Promo banner */
.book-promo {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 0.9rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.book-promo strong {
  color: var(--text);
  font-weight: 700;
}

/* Payment toggle */
.book-pay-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 420px;
  padding: 4px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  gap: 4px;
}

.book-pay-toggle button {
  border: none;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.book-pay-toggle button.is-selected {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Package cards */
.book-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .book-packages {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.book-package {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem 1.25rem;
  cursor: pointer;
  position: relative;
  background: var(--bg-white);
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.book-package:hover {
  border-color: #d4d0c8;
}

.book-package.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
  box-shadow: 0 0 0 1px var(--book-selected-muted);
}

.book-package__head {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.book-package__radio {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--bg-white);
  position: relative;
}

.book-package.is-selected .book-package__radio {
  border-color: var(--accent);
  background: var(--accent);
}

.book-package.is-selected .book-package__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #111;
}

.book-package__title-wrap {
  flex: 1;
  min-width: 0;
}

.book-package__badge {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.book-package.is-selected .book-package__badge {
  color: #8a6d00;
}

.book-package h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.book-package__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.book-package__features li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}

.book-package__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.book-package__price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.45;
}

.book-package__price-main {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.book-package__price-label {
  display: block;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.book-package__price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.35rem;
}

.book-package__warn {
  color: #a83232;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0 0 0.75rem;
}

.book-afterpay {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0.9rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.book-afterpay strong {
  color: var(--text);
}

.book-packages-extras {
  margin-top: 0.5rem;
}

.book-packages-extras .book-link {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.book-panel--packages .book-nav {
  margin-top: 1.5rem;
}

.book-reset {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-white);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  font-family: inherit;
}

.book-reset:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.book-reset[hidden] {
  display: none;
}

.book-fine-print {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 52rem;
}

/* Mobile schedule */
.book-mobile-banner {
  background: var(--book-selected-bg);
  border: 1px solid var(--book-selected-muted);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.book-mobile-banner strong {
  display: block;
  margin-bottom: 0.35rem;
}

.book-mobile-banner .book-price-tag {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--accent);
  font-weight: 800;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-left: 0.35rem;
}

.book-calendar {
  max-width: 360px;
  margin-bottom: 1rem;
}

.book-calendar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.book-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.book-calendar__dow {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0;
}

.book-calendar__day {
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

.book-calendar__day.is-available {
  background: var(--book-selected-bg);
}

.book-calendar__day.is-selected {
  box-shadow: inset 0 0 0 2px var(--book-selected-border);
  font-weight: 800;
  background: var(--book-selected-bg);
}

.book-calendar__day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.book-times {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 280px;
}

.book-times button {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.book-times button.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
}

.book-waitlist {
  background: #f5f4f0;
  border-radius: var(--radius-card);
  padding: 1rem;
  margin-top: 1.5rem;
  max-width: 480px;
  font-size: 0.9rem;
}

.book-waitlist label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

/* Review */
.book-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.book-accordion summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book-accordion summary::-webkit-details-marker {
  display: none;
}

.book-accordion__body {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.book-accordion__amount {
  color: var(--text);
  font-weight: 800;
}

.book-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}

.book-pay-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  cursor: pointer;
  font-weight: 700;
  background: var(--bg-white);
  text-align: left;
  font-family: inherit;
  font-size: inherit;
}

.book-pay-option.is-selected {
  border-color: var(--book-selected-border);
  background: var(--book-selected-bg);
}

.book-pay-option__meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Payment layout */
.book-pay-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

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

.book-pay-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
}

.book-pay-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.book-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.book-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.book-summary-total {
  background: var(--bg-cream);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: var(--text);
  margin-top: 0.75rem;
  border: 1px solid var(--border);
}

.book-btn-pay {
  width: 100%;
  margin-top: 1rem;
  background: #1a2744;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.book-btn-pay:hover {
  background: #0f1829;
}

/* Modal */
.book-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
}

.book-modal {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  max-width: 440px;
  width: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.book-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.book-modal__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--bg-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.book-modal h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.book-modal .book-lead {
  text-align: center;
  margin-bottom: 1.25rem;
}

.book-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.25rem;
}

.book-tabs button {
  border: none;
  background: none;
  padding: 0.65rem;
  font: inherit;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.book-tabs button.is-selected {
  color: var(--text);
  border-bottom-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--border);
}

.book-checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin: 0.75rem 0;
}

.book-modal .book-field input {
  max-width: none;
}

.book-modal-send {
  width: 100%;
  margin-top: 0.5rem;
}

.book-skip {
  display: block;
  margin: 1rem auto 0;
}

.book-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.45;
}

.book-complete {
  text-align: center;
  max-width: 480px;
  margin: 2rem auto;
}

.book-complete h2 {
  margin-bottom: 0.75rem;
}

.book-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.book-errors {
  background: #fef5f5;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius-card);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.book-errors__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.book-errors__list {
  list-style: disc;
  margin-left: 1.15rem;
  font-size: 0.88rem;
  color: #8b2e2e;
}

.book-errors__list li {
  margin-bottom: 0.25rem;
}

.book-field input.book-input-invalid,
.book-field select.book-input-invalid {
  border-color: #c0392b;
}

/* Insurance search */
.book-combobox {
  position: relative;
  max-width: 480px;
}

.book-search-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.book-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.25);
}

.book-search-box__icon {
  flex-shrink: 0;
  color: var(--text-muted);
}

.book-search-box__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.85rem 0;
  font: inherit;
  font-size: 0.95rem;
}

.book-search-box__input:focus {
  outline: none;
}

.book-search-box:has(.book-input-invalid) {
  border-color: #c0392b;
}

.book-combobox__results {
  margin-top: 0.5rem;
}

.book-combobox__results-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.book-combobox__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.book-combobox__empty {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.75rem 0.85rem;
  background: var(--bg-cream);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 0;
}

.book-combobox__list {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 240px;
  overflow-y: auto;
}

.book-combobox__option {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.book-combobox__option mark {
  background: rgba(255, 184, 0, 0.45);
  color: inherit;
  font-weight: 700;
  padding: 0;
}

.book-combobox__option:hover,
.book-combobox__option:focus {
  background: var(--book-selected-bg);
  outline: none;
}

.book-claim-brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.book-hidden {
  display: none !important;
}
