/* ═══════════════════════════════════════════════════════
   BOOKING WIDGET — shared across all Lilium pages
   ═══════════════════════════════════════════════════════ */

/* ─── Desktop bar interactive state ─────────────────── */
.booking-bar__inner { position: relative; overflow: visible; }
.bb-field { text-align: left; font: inherit; }
.bb-field.bb-field--active { background: var(--bg-light); box-shadow: inset 0 2px 0 var(--teal); }
.bb-field.bb-field--active .bb-field__label { color: var(--teal-pale); }

.bb-btn { flex-direction: column; gap: 3px; line-height: 1.2; }
.bb-submit__price {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.04em;
  text-transform: none;
}

/* Pulsing dot on submit button */
.bb-dot-wrap { position: relative; width: 7px; height: 7px; flex-shrink: 0; }
.bb-dot {
  position: absolute; inset: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: oklch(80% 0.14 165);
  box-shadow: 0 0 5px 1px oklch(80% 0.14 165 / 0.8), 0 0 10px 2px oklch(80% 0.14 165 / 0.4);
  animation: bk-pulse 2s ease-in-out infinite;
}
.bb-dot::after {
  content: ''; position: absolute; inset: -1px;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid oklch(80% 0.14 165 / 0.5);
  animation: bk-ring 2s ease-out infinite;
}
.bb-dot.sold { background: oklch(60% 0.18 25); box-shadow: 0 0 5px 1px oklch(60% 0.18 25 / 0.7), 0 0 10px 2px oklch(60% 0.18 25 / 0.3); }
.bb-dot.sold::after { border-color: oklch(60% 0.18 25 / 0.4); }
.bb-dot.minstay { background: oklch(70% 0.14 65); box-shadow: 0 0 5px 1px oklch(70% 0.14 65 / 0.7); }
.bb-dot.minstay::after { border-color: oklch(70% 0.14 65 / 0.4); }
@keyframes bk-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }
@keyframes bk-ring  { 0%{transform:scale(1);opacity:0.7;} 100%{transform:scale(2.6);opacity:0;} }

/* ─── Desktop dropdowns ──────────────────────────────── */
.bb-dropdown {
  position: absolute; top: 100%; z-index: 150;
  background: var(--bg); border: 1px solid var(--border);
  border-top: none; border-radius: 0 0 12px 12px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease), transform 0.22s var(--ease);
  box-shadow: 0 16px 40px oklch(0% 0 0 / 0.5);
}
.bb-dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.bb-dropdown--cal    { left: 0; width: 590px; }
.bb-dropdown--guests { right: 0; width: 256px; padding: 0.5rem 0; }

/* Calendar nav row */
.bb-cal-nav-row { display: flex; align-items: flex-start; gap: 6px; padding: 1.25rem 1rem 1rem; }
.bb-cal-arrow {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-faint);
  transition: background 0.18s, color 0.18s;
}
.bb-cal-arrow:hover { background: oklch(52% 0.11 196 / 0.15); color: var(--teal-pale); }
.bb-cal-arrow svg { display: block; }
.bb-cal-wrap { display: flex; gap: 1.25rem; flex: 1; justify-content: center; }

/* Calendar month */
.bb-month { flex: 0 0 240px; }
.bb-month-title {
  font-family: var(--display); font-size: 0.85rem; font-weight: 500;
  color: var(--ivory); text-align: center; margin-bottom: 0.9rem; letter-spacing: 0.01em;
}
.bb-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.bb-weekdays span {
  text-align: center; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--ivory-faint); text-transform: uppercase;
}
.bb-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px 0; }
.bb-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; background: transparent;
}
.bb-day::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 30px;
  transform: translateY(-50%); background: transparent; z-index: 0;
}
.bb-day-num {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.8rem; font-weight: 400; color: var(--ivory);
  position: relative; z-index: 2;
  transition: background 0.14s, color 0.14s;
}
.bb-day:not(.bb-day--off):not(.bb-day--empty):hover .bb-day-num { background: oklch(52% 0.11 196 / 0.22); }
.bb-day--off { cursor: default; pointer-events: none; }
.bb-day--off .bb-day-num { color: var(--ivory-faint); }
.bb-day--empty { cursor: default; pointer-events: none; }

.bb-day--start .bb-day-num, .bb-day--end .bb-day-num {
  background: var(--teal) !important; color: oklch(10% 0.018 195) !important; font-weight: 600;
}
.bb-day--start::before { left: 50%; background: oklch(52% 0.11 196 / 0.15); }
.bb-day--end::before   { right: 50%; background: oklch(52% 0.11 196 / 0.15); }
.bb-day--inrange::before { background: oklch(52% 0.11 196 / 0.15); }
.bb-day--start.bb-day--end::before { background: transparent; }

/* Dropdown footer */
.bb-dropdown-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem; border-top: 1px solid var(--border);
}
.bb-drop-reset {
  font-size: 0.75rem; color: var(--ivory-faint); text-decoration: underline;
  cursor: pointer; transition: color 0.2s;
}
.bb-drop-reset:hover { color: var(--teal-pale); }
.bb-drop-confirm {
  background: var(--teal); color: oklch(10% 0.018 195);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 20px; padding: 0.55rem 1.4rem; cursor: pointer; transition: opacity 0.2s;
}
.bb-drop-confirm:hover { opacity: 0.85; }

/* Guests dropdown rows */
.bb-guest-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border);
}
.bb-guest-row:last-child { border-bottom: none; }
.bb-guest-label { font-size: 0.85rem; color: var(--ivory); font-weight: 400; display: block; }
.bb-guest-sub   { font-size: 0.68rem; color: var(--ivory-faint); margin-top: 1px; }
.bb-counter { display: flex; align-items: center; gap: 0.75rem; }
.bb-cnt-btn {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border); color: var(--ivory-dim);
  font-size: 1.15rem; font-weight: 300; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.18s, color 0.18s;
}
.bb-cnt-btn:hover { border-color: var(--teal-pale); color: var(--teal-pale); }
.bb-cnt-val { min-width: 18px; text-align: center; font-size: 0.95rem; font-weight: 500; color: var(--ivory); }

/* Hide desktop dropdowns on mobile */
@media (max-width: 768px) { .bb-dropdown { display: none !important; } }

/* Fix nth-child rules for 3 fields (removed promo field) */
@media (max-width: 860px) {
  .bb-field:nth-child(2) { border-right: none; }
  .bb-field:nth-child(3) { border-right: none; border-bottom: none; }
}

/* ─── Price bar — new dynamic elements ──────────────── */
.price-bar__info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; overflow: hidden; }
.price-bar__nights-lbl {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ivory-faint);
}
.price-bar__dates-val { font-size: 0.82rem; font-weight: 400; color: var(--ivory); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-bar__live {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.pb-dot-wrap { position: relative; width: 7px; height: 7px; flex-shrink: 0; }
.pb-dot {
  position: absolute; inset: 0; width: 7px; height: 7px; border-radius: 50%;
  background: oklch(80% 0.14 165);
  box-shadow: 0 0 5px 1px oklch(80% 0.14 165 / 0.8), 0 0 10px 2px oklch(80% 0.14 165 / 0.4);
  animation: bk-pulse 2s ease-in-out infinite;
}
.pb-dot::after {
  content: ''; position: absolute; inset: -1px;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid oklch(80% 0.14 165 / 0.5); animation: bk-ring 2s ease-out infinite;
}
.pb-dot.sold    { background: oklch(60% 0.18 25); box-shadow: 0 0 5px 1px oklch(60% 0.18 25 / 0.7); }
.pb-dot.minstay { background: oklch(70% 0.14 65); box-shadow: 0 0 5px 1px oklch(70% 0.14 65 / 0.7); }
.price-bar__live-text { font-size: 0.8rem; font-weight: 500; color: var(--ivory); white-space: nowrap; }
.price-bar__live-text.sold    { color: oklch(65% 0.16 25); font-weight: 400; }
.price-bar__live-text.minstay { color: oklch(72% 0.12 65); font-weight: 400; }

/* ─── Mobile bottom sheet ────────────────────────────── */
.lbk-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: oklch(0% 0 0 / 0.55);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lbk-overlay.is-open { opacity: 1; visibility: visible; }
.lbk-sheet {
  width: 100%; max-width: 500px; max-height: 90vh;
  background: #fff; border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}
.lbk-overlay.is-open .lbk-sheet { transform: translateY(0); }

.lbk-handle {
  width: 36px; height: 4px; background: oklch(88% 0.006 80); border-radius: 2px;
  margin: 10px auto 0; flex-shrink: 0;
}
.lbk-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 20px 10px; flex-shrink: 0;
}
.lbk-title {
  font-family: var(--display); font-size: 1.15rem; font-weight: 600;
  color: #1a1a1a; letter-spacing: -0.01em; margin-bottom: 8px;
}
.lbk-tabs { display: flex; align-items: center; gap: 8px; }
.lbk-tab {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  color: #bbb; cursor: pointer; transition: color 0.18s; padding: 2px 0;
}
.lbk-tab:hover, .lbk-tab--active { color: oklch(52% 0.11 196); }
.lbk-tab-sep { color: #ddd; font-size: 0.5rem; }
.lbk-close {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: oklch(95% 0.004 80); display: flex; align-items: center; justify-content: center;
  color: #666; cursor: pointer; transition: background 0.18s, color 0.18s;
}
.lbk-close:hover { background: oklch(52% 0.11 196 / 0.12); color: oklch(52% 0.11 196); }

.lbk-summary {
  display: flex; align-items: stretch; flex-shrink: 0;
  background: oklch(97% 0.006 80); border-top: 1px solid oklch(92% 0.006 80); border-bottom: 1px solid oklch(92% 0.006 80);
}
.lbk-sum-block { flex: 1; padding: 10px 20px; display: flex; flex-direction: column; gap: 2px; }
.lbk-sum-click { cursor: pointer; transition: background 0.14s; }
.lbk-sum-click:hover { background: oklch(93% 0.006 80); }
.lbk-sum-divider { width: 1px; background: oklch(88% 0.006 80); margin: 8px 0; }
.lbk-sum-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; color: #aaa; }
.lbk-sum-value { font-size: 0.85rem; font-weight: 500; color: #1a1a1a; line-height: 1.3; }

/* Sections (dates / guests) */
.lbk-section { display: none; flex-direction: column; flex: 1; overflow: hidden; min-height: 0; }
.lbk-section--active { display: flex; }

.lbk-quick-row { display: flex; gap: 8px; padding: 10px 20px 6px; flex-shrink: 0; }
.lbk-quick-btn {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid #ddd; border-radius: 20px; padding: 7px 13px;
  font-size: 0.8rem; font-weight: 500; color: #444;
  cursor: pointer; transition: border-color 0.18s, color 0.18s;
}
.lbk-quick-btn:hover { border-color: oklch(52% 0.11 196); color: oklch(52% 0.11 196); }

.lbk-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 6px 20px; border-bottom: 1px solid oklch(94% 0.004 80); flex-shrink: 0;
}
.lbk-weekdays span { text-align: center; font-size: 0.6rem; font-weight: 700; color: #ccc; letter-spacing: 0.03em; }
.lbk-months { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding: 0 10px 20px; }

.lbk-month { padding-top: 14px; }
.lbk-month:first-child { padding-top: 8px; }
.lbk-month-title { font-family: var(--display); font-size: 0.88rem; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; padding-left: 4px; }
.lbk-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px 0; }
.lbk-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; background: transparent;
}
.lbk-day::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 34px;
  transform: translateY(-50%); background: transparent; z-index: 0;
}
.lbk-day-num {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.88rem; color: #1a1a1a; position: relative; z-index: 2;
  transition: background 0.14s, color 0.14s;
}
.lbk-day:not(.lbk-day--off):not(.lbk-day--empty):hover .lbk-day-num { background: oklch(52% 0.11 196 / 0.12); color: oklch(52% 0.11 196); }
.lbk-day--off { cursor: default; pointer-events: none; }
.lbk-day--off .lbk-day-num { color: #ccc; }
.lbk-day--empty { cursor: default; pointer-events: none; }

.lbk-day--start .lbk-day-num, .lbk-day--end .lbk-day-num {
  background: oklch(52% 0.11 196) !important; color: #fff !important; font-weight: 600;
}
.lbk-day--start::before { left: 50%; background: oklch(52% 0.11 196 / 0.12); }
.lbk-day--end::before   { right: 50%; background: oklch(52% 0.11 196 / 0.12); }
.lbk-day--inrange::before { background: oklch(52% 0.11 196 / 0.12); }
.lbk-day--start.lbk-day--end::before { background: transparent; }

/* Guests section */
.lbk-guests-grid { display: flex; flex-direction: column; padding: 4px 20px 16px; overflow-y: auto; flex: 1; }
.lbk-guest-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid oklch(93% 0.004 80);
}
.lbk-guest-row:last-child { border-bottom: none; }
.lbk-guest-title { font-size: 0.95rem; font-weight: 500; color: #1a1a1a; display: block; }
.lbk-guest-sub { font-size: 0.7rem; color: #aaa; margin-top: 2px; }
.lbk-counter { display: flex; align-items: center; gap: 12px; }
.lbk-cnt-btn {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid #ddd; color: #555;
  font-size: 1.2rem; font-weight: 300; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.18s, color 0.18s;
}
.lbk-cnt-btn:hover { border-color: oklch(52% 0.11 196); color: oklch(52% 0.11 196); }
.lbk-cnt-val { min-width: 22px; text-align: center; font-size: 1rem; font-weight: 600; color: #1a1a1a; }

/* Sheet footer */
.lbk-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid oklch(93% 0.004 80); background: #fff; flex-shrink: 0; gap: 10px;
}
.lbk-footer-price { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.lbk-fp-dot-wrap { position: relative; width: 7px; height: 7px; flex-shrink: 0; }
.lbk-fp-dot {
  position: absolute; inset: 0; width: 7px; height: 7px; border-radius: 50%;
  background: oklch(80% 0.14 165);
  box-shadow: 0 0 5px 1px oklch(80% 0.14 165 / 0.8), 0 0 10px 2px oklch(80% 0.14 165 / 0.4);
  animation: bk-pulse 2s ease-in-out infinite;
}
.lbk-fp-dot::after {
  content: ''; position: absolute; inset: -1px; width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid oklch(80% 0.14 165 / 0.5); animation: bk-ring 2s ease-out infinite;
}
.lbk-fp-dot.sold    { background: oklch(60% 0.18 25); box-shadow: 0 0 5px 1px oklch(60% 0.18 25 / 0.7); }
.lbk-fp-dot.minstay { background: oklch(70% 0.14 65); box-shadow: 0 0 5px 1px oklch(70% 0.14 65 / 0.7); }
.lbk-fp-text { font-size: 0.88rem; font-weight: 500; color: #1a1a1a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lbk-fp-text.sold    { color: oklch(55% 0.16 25); font-weight: 400; font-size: 0.78rem; }
.lbk-fp-text.minstay { color: oklch(55% 0.12 65); font-weight: 400; font-size: 0.78rem; }

.lbk-footer-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lbk-reset {
  font-size: 0.8rem; font-weight: 500; color: #aaa;
  text-decoration: underline; cursor: pointer; transition: color 0.18s; padding: 8px 0;
}
.lbk-reset:hover { color: oklch(52% 0.11 196); }
.lbk-submit {
  background: oklch(52% 0.11 196); color: #fff;
  border-radius: 20px; padding: 11px 22px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: opacity 0.18s, background 0.18s; white-space: nowrap;
}
.lbk-submit:disabled { opacity: 0.3; cursor: default; }
.lbk-submit:not(:disabled):hover { background: oklch(44% 0.10 196); }
.lbk-submit.sold { background: #bbb; pointer-events: none; opacity: 1; }

/* ─── Mobile sheet — dark mode ───────────────────────── */
html[data-theme="dark"] .lbk-sheet,
html[data-theme="dark"] .lbk-title,
html[data-theme="dark"] .lbk-sum-value,
html[data-theme="dark"] .lbk-month-title,
html[data-theme="dark"] .lbk-day-num,
html[data-theme="dark"] .lbk-guest-title,
html[data-theme="dark"] .lbk-cnt-val,
html[data-theme="dark"] .lbk-fp-text { color: oklch(94% 0.010 80); }

html[data-theme="dark"] .lbk-sheet { background: oklch(11% 0.018 195); }
html[data-theme="dark"] .lbk-handle { background: oklch(28% 0.018 195); }
html[data-theme="dark"] .lbk-title { color: oklch(94% 0.010 80); }
html[data-theme="dark"] .lbk-close { background: oklch(20% 0.020 195); color: oklch(65% 0.010 80); }
html[data-theme="dark"] .lbk-close:hover { background: oklch(52% 0.11 196 / 0.18); color: oklch(72% 0.085 196); }
html[data-theme="dark"] .lbk-summary { background: oklch(8% 0.016 195); border-color: oklch(22% 0.02 195); }
html[data-theme="dark"] .lbk-sum-click:hover { background: oklch(14% 0.018 195); }
html[data-theme="dark"] .lbk-sum-divider { background: oklch(22% 0.02 195); }
html[data-theme="dark"] .lbk-sum-label { color: oklch(42% 0.010 195); }
html[data-theme="dark"] .lbk-quick-btn { border-color: oklch(28% 0.020 195); color: oklch(65% 0.010 80); }
html[data-theme="dark"] .lbk-quick-btn:hover { border-color: oklch(52% 0.11 196); color: oklch(72% 0.085 196); }
html[data-theme="dark"] .lbk-weekdays { border-color: oklch(22% 0.02 195); }
html[data-theme="dark"] .lbk-weekdays span { color: oklch(38% 0.010 195); }
html[data-theme="dark"] .lbk-day--off .lbk-day-num { color: oklch(28% 0.010 195); }
html[data-theme="dark"] .lbk-day:not(.lbk-day--off):not(.lbk-day--empty):hover .lbk-day-num { background: oklch(52% 0.11 196 / 0.2); color: oklch(72% 0.085 196); }
html[data-theme="dark"] .lbk-guest-row { border-color: oklch(22% 0.02 195); }
html[data-theme="dark"] .lbk-guest-sub { color: oklch(42% 0.008 195); }
html[data-theme="dark"] .lbk-cnt-btn { border-color: oklch(28% 0.020 195); color: oklch(65% 0.010 80); }
html[data-theme="dark"] .lbk-cnt-btn:hover { border-color: oklch(72% 0.085 196); color: oklch(72% 0.085 196); }
html[data-theme="dark"] .lbk-footer { background: oklch(11% 0.018 195); border-color: oklch(22% 0.02 195); }
html[data-theme="dark"] .lbk-reset { color: oklch(42% 0.010 195); }
html[data-theme="dark"] .lbk-reset:hover { color: oklch(72% 0.085 196); }
html[data-theme="dark"] .lbk-fp-text.sold    { color: oklch(55% 0.16 25); }
html[data-theme="dark"] .lbk-fp-text.minstay { color: oklch(62% 0.12 65); }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .lbk-sheet { background: oklch(11% 0.018 195); }
  :root:not([data-theme="light"]) .lbk-handle { background: oklch(28% 0.018 195); }
  :root:not([data-theme="light"]) .lbk-title { color: oklch(94% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-close { background: oklch(20% 0.020 195); color: oklch(65% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-close:hover { background: oklch(52% 0.11 196 / 0.18); color: oklch(72% 0.085 196); }
  :root:not([data-theme="light"]) .lbk-summary { background: oklch(8% 0.016 195); border-color: oklch(22% 0.02 195); }
  :root:not([data-theme="light"]) .lbk-sum-click:hover { background: oklch(14% 0.018 195); }
  :root:not([data-theme="light"]) .lbk-sum-divider { background: oklch(22% 0.02 195); }
  :root:not([data-theme="light"]) .lbk-sum-label { color: oklch(42% 0.010 195); }
  :root:not([data-theme="light"]) .lbk-sum-value { color: oklch(94% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-quick-btn { border-color: oklch(28% 0.020 195); color: oklch(65% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-quick-btn:hover { border-color: oklch(52% 0.11 196); color: oklch(72% 0.085 196); }
  :root:not([data-theme="light"]) .lbk-weekdays { border-color: oklch(22% 0.02 195); }
  :root:not([data-theme="light"]) .lbk-weekdays span { color: oklch(38% 0.010 195); }
  :root:not([data-theme="light"]) .lbk-month-title { color: oklch(94% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-day-num { color: oklch(90% 0.008 80); }
  :root:not([data-theme="light"]) .lbk-day--off .lbk-day-num { color: oklch(28% 0.010 195); }
  :root:not([data-theme="light"]) .lbk-day:not(.lbk-day--off):not(.lbk-day--empty):hover .lbk-day-num { background: oklch(52% 0.11 196 / 0.2); color: oklch(72% 0.085 196); }
  :root:not([data-theme="light"]) .lbk-guest-row { border-color: oklch(22% 0.02 195); }
  :root:not([data-theme="light"]) .lbk-guest-title { color: oklch(94% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-guest-sub { color: oklch(42% 0.008 195); }
  :root:not([data-theme="light"]) .lbk-cnt-btn { border-color: oklch(28% 0.020 195); color: oklch(65% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-cnt-btn:hover { border-color: oklch(72% 0.085 196); color: oklch(72% 0.085 196); }
  :root:not([data-theme="light"]) .lbk-cnt-val { color: oklch(94% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-footer { background: oklch(11% 0.018 195); border-color: oklch(22% 0.02 195); }
  :root:not([data-theme="light"]) .lbk-fp-text { color: oklch(94% 0.010 80); }
  :root:not([data-theme="light"]) .lbk-reset { color: oklch(42% 0.010 195); }
  :root:not([data-theme="light"]) .lbk-reset:hover { color: oklch(72% 0.085 196); }
}
