@import url("https://api.fontshare.com/v2/css?f[]=neue-machina@800,700,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;700;800;900&display=swap");

/* ════════════════════════════════════════════════════════════════════════
   BUSINESS DASHBOARD, standalone, violet/indigo palette
   Transparent glass cards so blobs are visible through them
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --biz-bg: #07060e;
  --biz-violet: #a78bfa;
  --biz-indigo: #7c3aed;
  --biz-vd: rgba(167, 139, 250, 0.12);
  --biz-vg: rgba(167, 139, 250, 0.06);
  --biz-text: #ede8ff;
  --biz-text2: rgba(237, 232, 255, 0.55);
  --biz-text3: rgba(237, 232, 255, 0.3);
  --biz-border: rgba(255, 255, 255, 0.08);
  --biz-border2: rgba(167, 139, 250, 0.18);
  --biz-green: #34d399;
  --biz-red: #f87171;
  --biz-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --biz-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--biz-bg) !important;
  color: var(--biz-text) !important;
  font-family: "Cabinet Grotesk", "DM Sans", sans-serif !important;
}

/* Blob canvas, NO CSS blur so blobs are sharp and visible */
.biz-blob-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* No filter, blobs render sharp */
}

/* ══ DYNAMIC ISLAND ══════════════════════════════════════════════════════ */
.biz-di {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  height: 48px;
  border-radius: 50px;
  background: rgba(7, 6, 14, 0.88);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 0 0 0.5px rgba(167, 139, 250, 0.08) inset,
    0 12px 48px rgba(0, 0, 0, 0.7),
    0 0 32px rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: 400px; /* hidden state: brand + 2 icons, widened for the longer "powered by Bassy Technologies" text */
  transition:
    width 0.52s var(--biz-spring),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  animation: bizDiIn 0.6s var(--biz-ease) 0.1s both;
  cursor: default;
}
@keyframes bizDiIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
.biz-di.is-expanded {
  width: 620px;
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow:
    0 0 0 0.5px rgba(167, 139, 250, 0.14) inset,
    0 12px 48px rgba(0, 0, 0, 0.7),
    0 0 52px rgba(124, 58, 237, 0.22);
}

/* Brand */
.biz-di-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 0 12px;
  flex-shrink: 0;
}
.biz-di-logo-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.1);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.biz-di-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.biz-di-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.biz-di-brand-name {
  font-family: "Neue Machina", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--biz-text);
  white-space: nowrap;
}
.biz-di-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--biz-violet);
  opacity: 0.8;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.biz-di-divider {
  width: 0.5px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.biz-di-links-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease 0.14s;
  min-width: 0;
  position: relative;
}
.biz-di.is-expanded .biz-di-links-wrap {
  opacity: 1;
  pointer-events: all;
}

.biz-di-links {
  display: flex;
  align-items: center;
  gap: 1px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 26px;
}
.biz-di-links::-webkit-scrollbar {
  display: none;
}

.biz-di-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0.5px solid rgba(167, 139, 250, 0.3);
  background: rgba(20, 15, 40, 0.92);
  backdrop-filter: blur(4px);
  color: var(--biz-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.biz-di-scroll-arrow--left { left: 2px; }
/* Sits with genuine clearance before the notifications bell that
   follows right after this whole links row, rather than crowding it. */
.biz-di-scroll-arrow--right { right: 10px; }
.biz-di-scroll-arrow svg { width: 11px; height: 11px; }
.biz-di-scroll-arrow:hover { background: rgba(167, 139, 250, 0.22); }
.biz-di-scroll-arrow:active:not([style*="display: none"]) { transform: translateY(-50%) scale(0.88); }
/* Desktop only, this is an alternative to the trackpad/shift-scroll
   gesture, which already works fine and stays exactly as it was.
   Mobile keeps its own swipe + scroll-track indicator instead. */
@media (max-width: 640px) {
  .biz-di-scroll-arrow { display: none !important; }
  .biz-di-links { padding: 0 6px; }
}

.biz-di-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 50px;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--biz-text2);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.biz-di-link svg {
  color: inherit;
  flex-shrink: 0;
}
.biz-di-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--biz-text);
}
.biz-di-link.is-active {
  background: var(--biz-vd);
  color: var(--biz-violet);
}
.biz-di-link--soon {
  opacity: 0.4;
  pointer-events: none;
}

.biz-di-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--biz-vd);
  color: var(--biz-violet);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  padding: 1px 6px;
  border-radius: 50px;
}

.biz-di-scroll-track {
  height: 2px;
  margin: 2px 8px 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
  display: none;
}
.biz-di-scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--biz-violet);
  border-radius: 1px;
  min-width: 20px;
  transition:
    left 0.1s ease,
    width 0.1s ease;
}

.biz-di-right {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 10px 0 6px;
  flex-shrink: 0;
}
.biz-di-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(237, 232, 255, 0.45);
  transition:
    background 0.14s ease,
    color 0.14s ease;
  position: relative;
}
.biz-di-icon-btn svg {
  width: 17px;
  height: 17px;
}
.biz-di-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--biz-text);
}

.biz-di-notif-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--biz-red);
  border: 1.5px solid rgba(7, 6, 14, 0.9);
}

.biz-acct-drop {
  position: fixed;
  top: 74px;
  left: 50%;
  width: 260px;
  background: rgba(10, 8, 20, 0.97);
  border: 0.5px solid rgba(167, 139, 250, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 16px;
  z-index: 299;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--biz-spring);
}
.biz-acct-drop.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}
.biz-acct-head {
  display: flex;
  align-items: center;
  gap: 11px;
}
.biz-acct-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--biz-vd);
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: var(--biz-violet);
  font-family: "Neue Machina", sans-serif;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-acct-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-text);
}
.biz-acct-email {
  font-size: 11.5px;
  color: var(--biz-text2);
  margin-top: 1px;
}
.biz-acct-divider {
  height: 0.5px;
  background: var(--biz-border);
  margin: 12px 0;
}
.biz-acct-logout {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-red);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 9px;
  transition: background 0.14s ease;
}
.biz-acct-logout svg {
  width: 15px;
  height: 15px;
}
.biz-acct-logout:hover {
  background: rgba(248, 113, 113, 0.1);
}

/* ══ PAGE LAYOUT ════════════════════════════════════════════════════════ */
.biz-page {
  position: relative;
  z-index: 2;
  padding: 82px 40px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.biz-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.biz-greeting {
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-text3);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.biz-headline {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--biz-text);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(130deg, #ede8ff 0%, #a78bfa 60%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.biz-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 50px;
  background: rgba(52, 211, 153, 0.08);
  border: 0.5px solid rgba(52, 211, 153, 0.22);
  font-size: 12px;
  font-weight: 700;
  color: var(--biz-green);
  align-self: flex-start;
}
.biz-status-pill--setup {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.22);
  color: #f5a623;
}
.biz-status-pill--setup .biz-status-dot { background: #f5a623; animation: none; }

/* Confirmed real Batch 6 addition, deliberately quiet, no
   background, no border, no icon. This is meant to read as a small,
   permanent footnote setting honest expectations, never as an alert
   or a banner, matching the confirmed reference intent precisely. */
.biz-dev-notice {
  font-size: 11.5px;
  color: var(--biz-text3);
  margin: -8px 0 20px;
}
.biz-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--biz-green);
  animation: bizPing 2.2s ease-in-out infinite;
}
@keyframes bizPing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
  }
}

.biz-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.biz-section-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.02em;
}

.biz-action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.biz-action-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.35s cubic-bezier(0.16,1,0.3,1),
    border-color 0.35s ease,
    box-shadow 0.35s cubic-bezier(0.16,1,0.3,1),
    background 0.2s ease;
}
.biz-action-card--disabled { opacity: 0.6; }
.biz-action-card--disabled:hover { background: rgba(255, 255, 255, 0.03); }
.biz-action-locked-tag {
  font-size: 11px;
  font-weight: 700;
  color: #f5a623;
  background: rgba(245, 166, 35, 0.1);
  border: 0.5px solid rgba(245, 166, 35, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 0;
  line-height: 1.4;
}
.biz-action-quota-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(237, 232, 255, 0.45);
  margin: 0 0 8px;
  line-height: 1.4;
}
.biz-action-card:hover {
  transform: translateY(-3px);
  background: rgba(167, 139, 250, 0.05);
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow: 0 20px 48px -18px rgba(107,70,193,0.35);
}
.biz-action-card--soon:hover,
.biz-action-card--disabled:hover {
  transform: none;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) { .biz-action-card:hover { transform: none; } }
.biz-action-card--soon {
  opacity: 0.7;
}

.biz-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-text2);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-action-card:hover .biz-action-icon { transform: scale(1.08) rotate(-3deg); }
@media (prefers-reduced-motion: reduce) { .biz-action-card:hover .biz-action-icon { transform: none; } }
.biz-action-icon--violet {
  background: var(--biz-vd);
  border-color: rgba(167, 139, 250, 0.2);
  color: var(--biz-violet);
}
.biz-action-icon--green {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.2);
  color: var(--biz-green);
}
.biz-action-icon svg {
  width: 22px;
  height: 22px;
}

.biz-action-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.01em;
}
.biz-action-desc {
  font-size: 13px;
  color: var(--biz-text2);
  line-height: 1.6;
  flex: 1;
}

.biz-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  color: var(--biz-text2);
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: all 0.14s ease;
}
.biz-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--biz-text);
}
.biz-action-btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.biz-checklist-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.biz-checklist-card:hover { border-color: rgba(167,139,250,0.2); box-shadow: 0 20px 48px -22px rgba(107,70,193,0.3); }
.biz-checklist-head-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.biz-checklist-progress-tag {
  flex-shrink: 0; font-size: 11.5px; font-weight: 800; color: var(--biz-violet);
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25);
  padding: 4px 11px; border-radius: 999px;
}
.biz-checklist-progress-track {
  height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06); overflow: hidden; margin-top: 14px;
}
.biz-checklist-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #7c3aed, var(--biz-violet), #c4b5fd);
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}
.biz-checklist-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--biz-text);
  letter-spacing: -0.02em;
}
.biz-checklist-sub {
  font-size: 13px;
  color: var(--biz-text2);
  margin-top: 4px;
}
.biz-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.biz-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--biz-border);
}
.biz-check-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.biz-check-item--done {
  opacity: 0.8;
}

.biz-check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-check-circle--done {
  background: var(--biz-green);
  border-color: var(--biz-green);
  color: #fff;
}
.biz-check-circle svg {
  width: 11px;
  height: 11px;
}

.biz-check-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.biz-check-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-text);
}
.biz-check-label--done {
  text-decoration: line-through;
  opacity: 0.6;
}
.biz-check-desc {
  font-size: 12px;
  color: var(--biz-text3);
}
.biz-check-status {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid var(--biz-border);
  color: var(--biz-text2);
  flex-shrink: 0;
}
.biz-check-status--done {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.2);
  color: var(--biz-green);
}

.biz-help-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.biz-help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.16,1,0.3,1),
    border-color 0.25s ease,
    background 0.2s ease,
    box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
  text-align: center;
}
.biz-help-card:hover {
  transform: translateY(-3px);
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 16px 36px -18px rgba(107,70,193,0.35);
}
@media (prefers-reduced-motion: reduce) { .biz-help-card:hover { transform: none; } }
.biz-help-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.1);
  border: 0.5px solid rgba(167, 139, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-violet);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-help-card:hover .biz-help-icon { transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) { .biz-help-card:hover .biz-help-icon { transform: none; } }
.biz-help-icon svg {
  width: 22px;
  height: 22px;
}
.biz-help-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--biz-text);
}

@media (max-width: 900px) {
  .biz-action-cards {
    grid-template-columns: 1fr 1fr;
  }
  .biz-help-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .biz-di-scroll-track {
    display: block;
  }
  .biz-di {
    width: 270px; /* widened for the longer "powered by Bassy Technologies" text */
  }
  .biz-di.is-expanded {
    width: calc(100vw - 24px);
  }
  .biz-page {
    padding: 76px 16px 48px;
    gap: 28px;
  }
  .biz-headline {
    font-size: 34px;
  }
  .biz-action-cards {
    grid-template-columns: 1fr;
  }
  .biz-help-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 380px) {
  .biz-help-cards {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   DASHBOARD V2 additions, live event creation links
   ════════════════════════════════════════════════════════════════════════ */

.biz-action-card--link {
  text-decoration: none;
  cursor: pointer;
}
.biz-action-card--link:hover {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

.biz-action-btn--violet {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--biz-vd);
  border-color: rgba(167, 139, 250, 0.3);
  color: var(--biz-violet);
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}
.biz-action-card--link:hover .biz-action-btn--violet {
  background: rgba(167, 139, 250, 0.22);
  border-color: rgba(167, 139, 250, 0.5);
}

.biz-check-item--link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: 10px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.biz-check-item--link:hover {
  background: rgba(167, 139, 250, 0.06);
}
.biz-check-item--link .biz-check-label {
  color: var(--biz-text);
}

.biz-check-status--action {
  background: var(--biz-vd);
  border-color: rgba(167, 139, 250, 0.25);
  color: var(--biz-violet);
  font-weight: 800;
}

/* ════════════════════════════════════════════════════════════════════════
   NAV ADDITIONS, Bell drop, Account drop, Account panel, Delete modal
   Notifications drawer v2: Apple-inspired card rows, swipe-to-dismiss,
   spring physics, contextual empty states, tour widget moved to dashboard.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Bell dropdown ────────────────────────────────────────────────────── */
.biz-notif-drop {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px) scale(0.96);
  width: 360px;
  max-height: 520px;
  /* Category E: genuine frosted glass, background is translucent
     ENOUGH to read as glass while still blocking most of what's
     behind it, paired with real backdrop blur. */
  background: rgba(12, 9, 26, 0.9);
  backdrop-filter: blur(28px) saturate(115%);
  -webkit-backdrop-filter: blur(28px) saturate(115%);
  border: 0.5px solid rgba(167, 139, 250, 0.18);
  border-radius: 20px;
  box-shadow:
    0 0 0 0.5px rgba(167, 139, 250, 0.08) inset,
    0 24px 64px rgba(0, 0, 0, 0.7),
    0 0 48px rgba(124, 58, 237, 0.12);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.biz-notif-drop.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* ── Header ───────────────────────────────────────────────────────────── */
.biz-notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 10px;
  flex-shrink: 0;
}
.biz-notif-head-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-notif-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.02em;
}
.biz-notif-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 50px;
  background: var(--biz-violet);
  color: #07060e;
  font-size: 11px;
  font-weight: 800;
  animation: bizBadgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bizBadgePop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.biz-notif-settings-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  color: var(--biz-text2);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.biz-notif-settings-btn svg {
  width: 15px;
  height: 15px;
}
.biz-notif-settings-btn:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.25);
  color: var(--biz-violet);
  transform: rotate(30deg);
}

/* ── Sub-header ───────────────────────────────────────────────────────── */
.biz-notif-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 10px;
  flex-shrink: 0;
}
.biz-notif-unread-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--biz-text3);
  transition: color 0.2s ease;
}
.biz-notif-unread-text.has-unread {
  color: var(--biz-violet);
}
.biz-notif-markall {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(167, 139, 250, 0.55);
  font-family: "Cabinet Grotesk", sans-serif;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.14s ease;
}
.biz-notif-markall:hover {
  color: var(--biz-violet);
  background: rgba(167, 139, 250, 0.08);
}
.biz-notif-markall:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── Body / Scroll area ───────────────────────────────────────────────── */
.biz-notif-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(167, 139, 250, 0.2) transparent;
}
.biz-notif-body::-webkit-scrollbar {
  width: 4px;
}
.biz-notif-body::-webkit-scrollbar-track {
  background: transparent;
}
.biz-notif-body::-webkit-scrollbar-thumb {
  background: rgba(167, 139, 250, 0.2);
  border-radius: 2px;
}

/* ── Date dividers ────────────────────────────────────────────────────── */
.biz-notif-date-divider {
  padding: 14px 18px 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 232, 255, 0.25);
}

/* ── Notification list ────────────────────────────────────────────────── */
.biz-notif-list {
  padding: 2px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Notification row (card) ──────────────────────────────────────────── */
.biz-notif-row {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

/* Category E, Apple's actual swipe pattern: NO color flood behind the
   row. The revealed area is just whatever's already there (this row's
   own glass background showing through); the delete action is a
   single self-contained circular button floating at the trailing
   edge, same idea as Apple's "Options"/"Clear" pills, just one
   button since dismiss is our only action. */
.biz-notif-row-swipe-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  cursor: pointer;
  z-index: 1;
}
.biz-notif-row-swipe-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.16);
  border: 0.5px solid rgba(248, 113, 113, 0.4);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: scale(0.8);
  opacity: 0.6;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    background 0.15s ease;
}
.biz-notif-row-swipe-btn svg {
  width: 17px;
  height: 17px;
}
/* Content layer (slides on swipe) */
.biz-notif-row-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border-radius: 14px;
  /* Category E fix: this MUST be near-opaque, not just translucent.
     This card sits directly on top of .biz-notif-row-swipe-bg above
     (a permanent full-bleed red layer, always present underneath, by
     design, only meant to show once dragged away during a swipe).
     At low opacity that red bled straight through even at rest, which
     is what was actually causing the solid-red card appearance, not
     a missing-blur issue. backdrop-filter still gives the genuine
     frosted-glass look against whatever's behind the WHOLE drawer. */
  background: rgba(20, 16, 38, 0.97);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  will-change: transform;
}

/* UNREAD state: left accent stripe + subtle violet tint */
.biz-notif-row.is-unread .biz-notif-row-content {
  background: rgba(167, 139, 250, 0.1);
  border-left: 3px solid var(--biz-violet);
  border-color: rgba(167, 139, 250, 0.15);
  padding-left: 13px;
}
.biz-notif-row.is-unread .biz-notif-row-content:hover {
  background: rgba(167, 139, 250, 0.16);
}

/* READ state: flat, muted, still opaque */
.biz-notif-row.is-read .biz-notif-row-content {
  background: rgba(20, 16, 38, 0.92);
  border-color: rgba(255, 255, 255, 0.05);
}
.biz-notif-row.is-read .biz-notif-row-content:hover {
  background: rgba(28, 22, 48, 0.94);
}

/* Icon */
.biz-notif-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.1);
  border: 0.5px solid rgba(167, 139, 250, 0.2);
  color: var(--biz-violet);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-notif-row.is-unread .biz-notif-row-icon {
  transform: scale(1.05);
}
.biz-notif-row-icon svg {
  width: 16px;
  height: 16px;
}

/* Status color variants for icons */
.biz-notif-row--success .biz-notif-row-icon {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.2);
  color: #34d399;
}
.biz-notif-row--warning .biz-notif-row-icon {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.2);
  color: #f5a623;
}
.biz-notif-row--error .biz-notif-row-icon {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

/* Body */
.biz-notif-row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.biz-notif-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.biz-notif-row-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--biz-text);
  letter-spacing: -0.01em;
}
.biz-notif-row.is-read .biz-notif-row-title {
  font-weight: 500;
  color: var(--biz-text2);
}
.biz-notif-row-time {
  font-size: 10.5px;
  color: rgba(237, 232, 255, 0.3);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.biz-notif-row-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--biz-text2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.biz-notif-row-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(237, 232, 255, 0.25);
}

/* Unread dot after title */
.biz-notif-row.is-unread .biz-notif-row-title::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--biz-violet);
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.5);
  vertical-align: middle;
  animation: bizUnreadPulse 2s ease-in-out infinite;
}
@keyframes bizUnreadPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

/* Hover dismiss button (desktop) */
.biz-notif-row-close {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(237, 232, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.15s ease;
  margin-top: -2px;
}
.biz-notif-row-close svg {
  width: 12px;
  height: 12px;
}
.biz-notif-row-content:hover .biz-notif-row-close {
  opacity: 1;
}
.biz-notif-row-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(237, 232, 255, 0.7);
}

/* ── Empty states ─────────────────────────────────────────────────────── */
.biz-notif-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 32px;
}
.biz-notif-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(167, 139, 250, 0.06);
  border: 0.5px solid rgba(167, 139, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-violet);
  margin-bottom: 14px;
  animation: bizEmptyFloat 3s ease-in-out infinite;
}
@keyframes bizEmptyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.biz-notif-empty-icon svg {
  width: 22px;
  height: 22px;
  opacity: 0.7;
}
.biz-notif-empty-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(237, 232, 255, 0.5);
  margin: 0 0 4px;
}
.biz-notif-empty-sub {
  font-size: 12px;
  color: rgba(237, 232, 255, 0.25);
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.biz-notif-footer {
  padding: 10px 14px 14px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.biz-notif-clear-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  color: var(--biz-text2);
  font-size: 12.5px;
  font-weight: 700;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  transition: all 0.15s ease;
}
.biz-notif-clear-all svg {
  width: 14px;
  height: 14px;
}
.biz-notif-clear-all:hover {
  background: rgba(248, 113, 113, 0.08);
  border-color: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

/* ── Dismiss animation ────────────────────────────────────────────────── */
.biz-notif-row.is-dismissing {
  animation: bizRowDismiss 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes bizRowDismiss {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
    max-height: 200px;
    margin-bottom: 6px;
  }
  40% {
    opacity: 0.5;
    transform: translateX(-30%) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%) scale(0.9);
    max-height: 0;
    margin-bottom: 0;
    padding: 0;
  }
}

/* ── Entry stagger animation ──────────────────────────────────────────── */
.biz-notif-row.is-entering {
  animation: bizRowEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}
@keyframes bizRowEnter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ════════════════════════════════════════════════════════════════════════
   TOASTS, corner pop-ups for real-time events (v2 update)
   ════════════════════════════════════════════════════════════════════════ */
.biz-toast2-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  pointer-events: none;
}
.biz-toast2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(13, 10, 28, 0.98);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  transition:
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: all;
}
.biz-toast2.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.biz-toast2--success {
  border-left: 3px solid #34d399;
}
.biz-toast2--warning {
  border-left: 3px solid #f5a623;
}
.biz-toast2--info {
  border-left: 3px solid #6e8fff;
}
.biz-toast2--error {
  border-left: 3px solid #f87171;
}

.biz-toast2-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-toast2-icon svg {
  width: 15px;
  height: 15px;
}
.biz-toast2--success .biz-toast2-icon {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}
.biz-toast2--warning .biz-toast2-icon {
  background: rgba(245, 166, 35, 0.12);
  color: #f5a623;
}
.biz-toast2--info .biz-toast2-icon {
  background: rgba(110, 143, 255, 0.12);
  color: #6e8fff;
}
.biz-toast2--error .biz-toast2-icon {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}

.biz-toast2-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.biz-toast2-body strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--biz-text);
}
.biz-toast2-body span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--biz-text2);
}

.biz-toast2-close {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(237, 232, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.14s ease;
}
.biz-toast2-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(237, 232, 255, 0.7);
}
.biz-toast2-close svg {
  width: 11px;
  height: 11px;
}

.biz-toast2-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.biz-toast2-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--biz-violet), #c4b5fd);
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .biz-toast2-wrap {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
  .biz-notif-drop {
    width: calc(100vw - 32px);
    max-height: 70vh;
  }
}
.biz-acct-info {
  flex: 1;
  min-width: 0;
}
.biz-acct-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  margin-top: 2px;
  color: var(--biz-violet);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Cabinet Grotesk", sans-serif;
  transition: opacity 0.14s ease;
}
.biz-acct-info-btn svg {
  width: 12px !important;
  height: 12px !important;
}
.biz-acct-info-btn:hover {
  opacity: 0.7;
}
.biz-acct-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-text2);
  text-decoration: none;
  transition: all 0.14s ease;
}
.biz-acct-link svg {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0;
  min-width: 15px;
  min-height: 15px;
}
.biz-acct-link:hover {
  background: rgba(167, 139, 250, 0.08);
  color: var(--biz-violet);
}

/* Account slide panel */
.biz-acct-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 398;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.biz-acct-panel-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.biz-acct-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  z-index: 399;
  background: rgba(8, 5, 20, 0.99);
  border-left: 0.5px solid rgba(167, 139, 250, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-acct-panel.is-open {
  transform: translateX(0);
}

.biz-acct-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}
.biz-acct-panel-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--biz-text);
  letter-spacing: -0.02em;
}
.biz-acct-panel-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--biz-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.14s ease;
}
.biz-acct-panel-close svg {
  width: 13px;
  height: 13px;
}
.biz-acct-panel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--biz-text);
}

.biz-acct-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.biz-acct-panel-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--biz-vd);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--biz-violet);
  overflow: hidden;
}
.biz-acct-panel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--biz-vd);
}
.biz-acct-panel-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--biz-text);
  letter-spacing: -0.02em;
}
.biz-acct-panel-bio {
  font-size: 13.5px;
  color: var(--biz-text2);
  line-height: 1.6;
}
.biz-acct-panel-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.biz-acct-panel-row {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.biz-acct-panel-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--biz-violet);
}
.biz-acct-panel-row a {
  color: var(--biz-text);
  text-decoration: none;
}
.biz-acct-panel-row a:hover {
  color: var(--biz-violet);
}
.biz-acct-panel-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.biz-acct-panel-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-text2);
  text-decoration: none;
  transition: all 0.14s ease;
}
.biz-acct-panel-social svg {
  width: 15px !important;
  height: 15px !important;
}
.biz-acct-panel-social:hover {
  background: var(--biz-vd);
  color: var(--biz-violet);
  border-color: rgba(167, 139, 250, 0.25);
  transform: translateY(-2px);
}
.biz-acct-panel-edit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  text-decoration: none;
  background: var(--biz-vd);
  border: 0.5px solid rgba(167, 139, 250, 0.3);
  color: var(--biz-violet);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.15s ease;
  margin-top: 4px;
}
.biz-acct-panel-edit-btn svg {
  width: 14px !important;
  height: 14px !important;
}
.biz-acct-panel-edit-btn:hover {
  background: rgba(167, 139, 250, 0.18);
}

.biz-acct-panel-footer {
  padding: 16px 22px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}
.biz-acct-panel-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.07);
  border: 0.5px solid rgba(248, 113, 113, 0.2);
  color: #f87171;
  font-size: 13px;
  font-weight: 700;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  transition: all 0.14s ease;
}
.biz-acct-panel-delete svg {
  width: 14px !important;
  height: 14px !important;
}
.biz-acct-panel-delete:hover {
  background: rgba(248, 113, 113, 0.14);
  border-color: rgba(248, 113, 113, 0.35);
}

/* Delete account modal */
.biz-delete-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.biz-delete-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.biz-delete-modal {
  background: rgba(10, 7, 24, 0.99);
  border: 0.5px solid rgba(248, 113, 113, 0.3);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}
.biz-delete-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(248, 113, 113, 0.1);
  border: 0.5px solid rgba(248, 113, 113, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  margin: 0 auto 16px;
}
.biz-delete-modal-icon svg {
  width: 22px;
  height: 22px;
}
.biz-delete-modal h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--biz-text);
  margin-bottom: 8px;
}
.biz-delete-modal p {
  font-size: 13.5px;
  color: var(--biz-text2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.biz-delete-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.biz-delete-modal-actions button {
  padding: 10px 20px;
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--biz-text2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Cabinet Grotesk", sans-serif;
  transition: all 0.14s ease;
}
.biz-delete-modal-actions button:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--biz-text);
}
.biz-delete-modal-confirm {
  background: #f87171 !important;
  border-color: transparent !important;
  color: #fff !important;
}
.biz-delete-modal-confirm:hover {
  background: #ef4444 !important;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .bpf-grid {
    grid-template-columns: 1fr;
  }
  .biz-acct-panel {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .bpf-page {
    padding: 74px 16px 80px;
  }
  .bpf-two-col {
    grid-template-columns: 1fr;
  }
  .bpf-field--wide {
    grid-column: 1;
  }
  .biz-notif-drop {
    right: 16px;
    width: calc(100vw - 32px);
  }
}

/* ── Global SVG size safety for all nav panel additions ─────────────────── */
.biz-notif-drop svg,
.biz-acct-drop svg,
.biz-acct-panel svg,
.biz-delete-modal-overlay svg {
  max-width: 24px;
  max-height: 24px;
}
.biz-acct-link svg,
.biz-acct-logout svg {
  width: 15px !important;
  height: 15px !important;
}
.biz-notif-empty svg {
  width: 28px !important;
  height: 28px !important;
}
.biz-acct-panel-close svg {
  width: 13px !important;
  height: 13px !important;
}
.biz-delete-modal-icon svg {
  width: 22px !important;
  height: 22px !important;
}
.biz-acct-info-btn svg {
  width: 12px !important;
  height: 12px !important;
}

/* ── Account dropdown position set by JS in nav partial ─────────────────── */
.biz-acct-drop {
  position: fixed !important;
  min-width: 240px !important;
  z-index: 300 !important;
}

/* ── Account panel redesign additions ────────────────────────────────────── */
.biz-acct-panel-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.biz-acct-panel-id-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.biz-acct-panel-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(167, 139, 250, 0.12);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  color: var(--biz-violet);
  padding: 2px 8px;
  border-radius: 50px;
}
.biz-acct-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}
.biz-acct-panel-empty {
  text-align: center;
  padding: 20px 0;
  border: 0.5px dashed rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  background: rgba(167, 139, 250, 0.04);
}
.biz-acct-panel-empty p {
  font-size: 13px;
  color: var(--biz-text2);
  margin-bottom: 8px;
}
.biz-acct-panel-empty-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--biz-violet);
  text-decoration: none;
}

/* ── Last login toast in account panel ────────────────────────────────── */
.biz-last-login-toast {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  font-size: 11.5px;
  color: rgba(167, 139, 250, 0.8);
  margin: 6px 0 2px;
  overflow: hidden;
  max-height: 48px;
}
.biz-last-login-toast svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.biz-last-login-toast strong {
  color: #c4b5fd;
}

/* ── Last login slide-in toast (dashboard page) ─────────────────────────── */
.biz-login-toast {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 250;
  transform: translateX(calc(100% + 30px));
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: all;
}
.biz-login-toast.is-visible {
  transform: translateX(0);
}
.biz-login-toast-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10, 7, 28, 0.97);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(109, 40, 217, 0.1) inset;
  min-width: 240px;
  max-width: 300px;
}
.biz-login-toast-timerbar {
  height: 3px;
  width: 100%;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.biz-login-toast-timerbar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}
.biz-login-toast-inner svg {
  width: 15px;
  height: 15px;
  color: #a78bfa;
  flex-shrink: 0;
}
.biz-login-toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.biz-login-toast-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(139, 92, 246, 0.55);
  font-weight: 700;
}
.biz-login-toast-time {
  font-size: 13px;
  font-weight: 700;
  color: #f5f3ff;
}
.biz-login-toast-close {
  background: none;
  border: none;
  color: rgba(139, 92, 246, 0.4);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.15s;
}
.biz-login-toast-close:hover {
  color: #c4b5fd;
}

/* ── Recent logins button (opens modal) ─────────────────────────────────── */
.biz-acct-loginhist-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 14px;
  margin-top: 10px;
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  color: rgba(220, 215, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  text-align: left;
}
.biz-acct-loginhist-btn:hover {
  background: rgba(109, 40, 217, 0.14);
  border-color: rgba(139, 92, 246, 0.3);
}
.biz-acct-loginhist-btn svg:first-child {
  width: 15px;
  height: 15px;
  color: #a78bfa;
  flex-shrink: 0;
}
.biz-acct-loginhist-btn span {
  flex: 1;
}
.biz-acct-loginhist-chev {
  width: 14px;
  height: 14px;
  color: rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

/* ── Login history modal ─────────────────────────────────────────────────── */
.biz-loginhist-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 15, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.biz-loginhist-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.biz-loginhist-modal {
  width: 92%;
  max-width: 380px;
  max-height: 70vh;
  background: rgba(13, 9, 32, 0.98);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.biz-loginhist-modal-overlay.is-open .biz-loginhist-modal {
  transform: scale(1) translateY(0);
}
.biz-loginhist-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}
.biz-loginhist-modal-head h3 {
  font-size: 15px;
  font-weight: 800;
  color: #f5f3ff;
  margin: 0;
}
.biz-loginhist-modal-close {
  background: none;
  border: none;
  color: rgba(139, 92, 246, 0.5);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.15s;
}
.biz-loginhist-modal-close:hover {
  color: #c4b5fd;
}
.biz-loginhist-modal-body {
  padding: 8px 20px 18px;
  overflow-y: auto;
}
.biz-loginhist-empty {
  font-size: 13px;
  color: rgba(139, 92, 246, 0.5);
  text-align: center;
  padding: 24px 0;
}
.biz-acct-login-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.07);
}
.biz-acct-login-row:last-child {
  border-bottom: none;
}
.biz-acct-login-row svg {
  width: 12px;
  height: 12px;
  color: rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}
.biz-acct-login-row-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.biz-acct-login-row-date {
  font-size: 12px;
  font-weight: 600;
  color: rgba(220, 215, 255, 0.8);
}
.biz-acct-login-row-ip {
  font-size: 10px;
  color: rgba(139, 92, 246, 0.4);
  font-family: monospace;
}

/* ════════════════════════════════════════════════════════════════════════
   ONBOARDING TOUR, LAYER 1 v2: Dynamic Island spotlight
   ════════════════════════════════════════════════════════════════════════ */

.biz-spot-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 6, 14, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--biz-ease);
}
.biz-spot-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* PILL MODE (Step 1, the Dynamic Island): glow painted directly on
   the real #bizDi via this class, NOT a separate tracked outline clone.
   The DI has its own native hover-driven width transition; a separate
   clone re-reading getBoundingClientRect() every animation frame is
   always one frame behind that transition (CSS transitions run on the
   compositor thread, ahead of any JS poll), that's what caused the
   visible desync on hover/de-hover. Painting on the element itself
   means the glow is part of its own border-box and animates for free
   with whatever transition the DI already has. #bizDi.biz-spot-target
   (id+class) plus !important ensures this always wins over
   .biz-di.is-expanded's own box-shadow regardless of hover state
   during the tour step. ── */
#bizDi.biz-spot-target {
  position: relative;
  z-index: 1001 !important;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.3),
    0 0 24px 4px rgba(167, 139, 250, 0.5),
    0 0 60px 12px rgba(124, 58, 237, 0.3) !important;
}
#bizDi.biz-spot-target::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(167, 139, 250, 0.4);
  animation: bizSpotBreathe 2.4s var(--biz-ease) infinite;
  pointer-events: none;
}

/* SECTION MODE outline, still a tracked clone, since
   .biz-action-cards is a static grid with no competing hover
   transition of its own, so there's no desync risk to begin with. ── */
.biz-spot-outline {
  position: fixed;
  z-index: 1000;
  border-radius: 50px;
  pointer-events: none;
  opacity: 0;
  border: 1.5px solid rgba(167, 139, 250, 0.9);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.25),
    0 0 24px 2px rgba(167, 139, 250, 0.45),
    0 0 60px 10px rgba(124, 58, 237, 0.25);
  transition:
    opacity 0.32s var(--biz-ease),
    width 0.52s var(--biz-spring);
}
.biz-spot-outline.is-visible {
  opacity: 1;
}

.biz-spot-outline::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(167, 139, 250, 0.4);
  animation: bizSpotBreathe 2.4s var(--biz-ease) infinite;
}
@keyframes bizSpotBreathe {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1.06);
    opacity: 0;
  }
}

/* ── Tooltip card ── */
.biz-spot-tip {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  z-index: 1002;
  transform: translate(-50%, -8px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.32s var(--biz-ease),
    transform 0.32s var(--biz-spring);

  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.16),
    rgba(124, 58, 237, 0.09)
  );
  border: 0.5px solid rgba(167, 139, 250, 0.28);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 0 0 0.5px rgba(167, 139, 250, 0.1) inset,
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(124, 58, 237, 0.18);
}
.biz-spot-tip.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0) scale(1);
}

.biz-spot-tip-top {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.biz-spot-tip-badge {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(167, 139, 250, 0.14);
  border: 0.5px solid rgba(167, 139, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-violet);
}
.biz-spot-tip-badge svg {
  width: 17px;
  height: 17px;
}
.biz-spot-tip-copy {
  flex: 1;
  min-width: 0;
}
.biz-spot-tip-step {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.7);
  margin-bottom: 3px;
}
.biz-spot-tip-copy h4 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.biz-spot-tip p {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--biz-text2);
}
.biz-spot-tip-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  justify-content: center;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.biz-spot-tip-btn svg {
  width: 14px;
  height: 14px;
}
.biz-spot-tip-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.biz-spot-tip-btn:active {
  transform: translateY(0);
}

.biz-spot-tip-dismiss {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 6px 0;
  background: none;
  border: none;
  color: rgba(167, 139, 250, 0.55);
  font-size: 12px;
  font-weight: 600;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  text-align: center;
  transition: color 0.14s ease;
}
.biz-spot-tip-dismiss:hover {
  color: rgba(167, 139, 250, 0.85);
}

@media (max-width: 480px) {
  .biz-spot-tip {
    width: calc(100vw - 32px);
    left: 50% !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   ONBOARDING TOUR, LAYER 2: Get Started section highlight
   ════════════════════════════════════════════════════════════════════════ */

.biz-spot-outline--section {
  border-radius: 24px;
  border: 1.5px solid rgba(167, 139, 250, 0.7);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.18),
    0 0 32px 4px rgba(167, 139, 250, 0.3),
    0 0 80px 16px rgba(124, 58, 237, 0.16);
  transition: opacity 0.32s var(--biz-ease);
}
.biz-spot-outline--section::after {
  border-radius: inherit;
  border-color: rgba(167, 139, 250, 0.32);
}

.biz-spot-target--section {
  position: relative;
  z-index: 1001 !important;
  border-radius: 24px;
}

.biz-spot-tip--section {
  width: 300px;
}
@media (max-width: 900px) {
  .biz-spot-tip--section {
    transform: translate(-50%, -8px) scale(0.94) !important;
  }
  .biz-spot-tip--section.is-visible {
    transform: translate(-50%, 0) scale(1) !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   ONBOARDING TOUR, LAYER 3: Help card expansion
   ════════════════════════════════════════════════════════════════════════ */

.biz-cardexp-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(7, 6, 14, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--biz-ease);
}
.biz-cardexp-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.biz-cardexp-panel {
  position: fixed;
  z-index: 1101;
  border-radius: 20px;
  background: rgba(13, 10, 28, 0.98);
  border: 0.5px solid rgba(167, 139, 250, 0.28);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    0 0 0 0.5px rgba(167, 139, 250, 0.12) inset,
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(124, 58, 237, 0.2);
  overflow: hidden;
  pointer-events: none;
  transform-origin: top left;
  transition: transform 0.46s var(--biz-spring);
}
.biz-cardexp-panel.is-open {
  pointer-events: all;
}

.biz-help-card.is-tour-source {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.biz-cardexp-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transition: opacity 0.26s ease 0.18s;
}
.biz-cardexp-panel.is-open .biz-cardexp-inner {
  opacity: 1;
}
.biz-cardexp-panel.is-closing .biz-cardexp-inner {
  opacity: 0;
  transition: opacity 0.14s ease;
}

.biz-cardexp-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px 18px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}
.biz-cardexp-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(167, 139, 250, 0.12);
  border: 0.5px solid rgba(167, 139, 250, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-violet);
}
.biz-cardexp-icon svg {
  width: 21px;
  height: 21px;
}
.biz-cardexp-titlewrap {
  flex: 1;
  min-width: 0;
}
.biz-cardexp-titlewrap h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.01em;
}
.biz-cardexp-step {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.65);
  margin-top: 2px;
}
.biz-cardexp-close {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--biz-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.14s ease;
}
.biz-cardexp-close svg {
  width: 14px;
  height: 14px;
}
.biz-cardexp-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--biz-text);
}

.biz-cardexp-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 26px 0;
}
.biz-cardexp-tab {
  flex: 1;
  padding: 9px 0;
  border: none;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--biz-text2);
  font-size: 13px;
  font-weight: 700;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  transition: all 0.16s ease;
}
.biz-cardexp-tab.is-active {
  background: var(--biz-vd);
  color: var(--biz-violet);
  border: 0.5px solid rgba(167, 139, 250, 0.3);
}
.biz-cardexp-tab:not(.is-active) {
  border: 0.5px solid transparent;
}
.biz-cardexp-tab:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.07);
}
.biz-cardexp-tab--locked {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Category C: green checkmark once the Tutorial tab has actually been
   opened, visited-state indicator, not a status/severity signal. */
.biz-cardexp-tab.is-visited::after {
  content: " \2713";
  color: #34d399;
  font-weight: 800;
}

.biz-cardexp-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 26px 26px;
}
.biz-cardexp-panel-content {
  display: none;
}
.biz-cardexp-panel-content.is-active {
  display: block;
}

.biz-cardexp-body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--biz-text2);
  margin: 0 0 14px;
}
.biz-cardexp-body p:last-child {
  margin-bottom: 0;
}
.biz-cardexp-body strong {
  color: var(--biz-text);
}

.biz-cardexp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}
.biz-cardexp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
}
.biz-cardexp-list-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--biz-violet);
  margin-top: 1px;
}
.biz-cardexp-list-item span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--biz-text2);
}
.biz-cardexp-list-item strong {
  color: var(--biz-text);
  font-weight: 700;
}

.biz-cardexp-foot {
  padding: 16px 26px 22px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}
.biz-cardexp-complete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 11px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.biz-cardexp-complete svg {
  width: 15px;
  height: 15px;
}
.biz-cardexp-complete:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Category C: soft-disabled state, never a real disabled attribute
   (stays focusable/clickable per accessibility guidance; clicking it
   shows the nudge below rather than a silent dead end). */
.biz-cardexp-complete.is-soft-disabled {
  opacity: 0.45;
}

.biz-cardexp-nudge {
  font-size: 12px;
  font-weight: 600;
  color: #f5a623;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    max-height 0.2s ease;
}
.biz-cardexp-nudge.is-visible {
  opacity: 1;
  max-height: 30px;
}

@media (max-width: 640px) {
  .biz-cardexp-panel.is-open {
    border-radius: 22px 22px 0 0 !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   SECURITY PANEL
   ════════════════════════════════════════════════════════════════════════ */

.biz-security-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(520px, 100%);
  height: 100vh;
  background: rgba(12, 12, 26, 0.98);
  backdrop-filter: blur(24px);
  z-index: 4000;
  transition: right 0.35s ease;
}
.biz-security-panel.is-open {
  right: 0;
}
.bizAcctPanel.slide-out {
  transform: translateX(-80px);
  opacity: 0;
  pointer-events: none;
}

.biz-security-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.biz-security-header h3 {
  margin: 0;
  color: white;
  font-size: 20px;
}
.biz-security-back {
  background: none;
  border: none;
  color: var(--biz-violet);
  cursor: pointer;
  font-weight: 700;
}

.biz-security-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: auto;
  height: calc(100vh - 90px);
}

.biz-security-section-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.biz-security-section-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.45);
}

.biz-security-current {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.biz-security-current strong {
  display: block;
  color: white;
}
.biz-security-current span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.biz-security-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.14);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
}

.biz-login-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.biz-login-row:first-of-type {
  border-top: none;
}
.biz-login-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(167, 139, 250, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}
.biz-login-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.biz-login-info {
  display: flex;
  flex-direction: column;
}
.biz-login-info strong {
  color: white;
}
.biz-login-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.biz-login-info small {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.biz-security-coming-soon {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 168, 255, 0.12);
  color: #2ea8ff;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}

.biz-security-launch {
  width: 100%;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #ede8ff;
  cursor: pointer;
  transition: 0.25s ease;
}
.biz-security-launch:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(167, 139, 250, 0.08);
}
.biz-security-launch-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.biz-security-launch-left svg {
  width: 22px;
  height: 22px;
  color: #a78bfa;
  flex-shrink: 0;
}
.biz-security-launch-left div {
  display: flex;
  flex-direction: column;
}
.biz-security-launch-left strong {
  font-size: 14px;
  font-weight: 700;
}
.biz-security-launch-left span {
  font-size: 12px;
  color: rgba(237, 232, 255, 0.55);
}

/* ════════════════════════════════════════════════════════════════════════
   ONBOARDING TOUR, Apple-style card in bell dropdown
   3 states: start (not activated), progress (mid-tour), complete (done)

   Category E fix: all three states now share ONE neutral glass card ,
   near-opaque background (same reasoning as the notification rows:
   the "complete" state has its own hidden swipe-to-dismiss red layer
   underneath via .biz-tour-nudge-swipe-bg, which was bleeding through
   at low opacity) plus real backdrop blur. The colored GRADIENT FLOODS
   per state that used to live here are removed entirely, Category E
   was specifically about killing exactly that pattern. Differentiation
   between states now comes only from the left accent stripe + icon
   tint (violet for start/progress, green for complete), never the
   card body itself.
   ════════════════════════════════════════════════════════════════════════ */

.biz-tour-nudge {
  margin: 10px 14px 6px;
  padding: 16px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: rgba(20, 16, 38, 0.97);
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--biz-violet);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.biz-tour-nudge--start,
.biz-tour-nudge--progress {
  border-left-color: var(--biz-violet);
}
.biz-tour-nudge--complete {
  border-left-color: #34d399;
}

/* Layout */
.biz-tour-nudge-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Badge icon */
.biz-tour-nudge-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-tour-nudge--start .biz-tour-nudge-badge,
.biz-tour-nudge--progress .biz-tour-nudge-badge {
  background: rgba(167, 139, 250, 0.12);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  color: var(--biz-violet);
}
.biz-tour-nudge--complete .biz-tour-nudge-badge {
  background: rgba(52, 211, 153, 0.12);
  border: 0.5px solid rgba(52, 211, 153, 0.25);
  color: var(--biz-green);
}
.biz-tour-nudge-badge svg {
  width: 16px;
  height: 16px;
}

/* Content */
.biz-tour-nudge-body {
  flex: 1;
  min-width: 0;
}
.biz-tour-nudge-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.01em;
  margin: 0 0 3px;
  line-height: 1.3;
}
.biz-tour-nudge--complete .biz-tour-nudge-title {
  color: var(--biz-green);
}
.biz-tour-nudge-desc {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--biz-text2);
  margin: 0;
}

/* Progress bar */
.biz-tour-nudge-track {
  margin-top: 10px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.biz-tour-nudge-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-tour-nudge--complete .biz-tour-nudge-fill {
  background: linear-gradient(90deg, #34d399, #10b981);
}

/* Progress meta text */
.biz-tour-nudge-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--biz-text3);
}

/* Start Tour button */
.biz-tour-nudge-btn {
  margin-top: 12px;
  width: 100%;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.biz-tour-nudge-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.biz-tour-nudge-btn svg {
  width: 13px;
  height: 13px;
}

/* Swipe container for complete state */
.biz-tour-nudge-swipe {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 10px 14px 6px;
}
.biz-tour-nudge-swipe-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  z-index: 1;
}
.biz-tour-nudge-swipe-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.16);
  border: 0.5px solid rgba(248, 113, 113, 0.4);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  opacity: 0.6;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    background 0.15s ease;
}
.biz-tour-nudge-swipe-btn svg {
  width: 17px;
  height: 17px;
}
.biz-tour-nudge-swipe.is-swiping .biz-tour-nudge-swipe-btn {
  opacity: 1;
  transform: scale(1);
}

.biz-tour-nudge-swipe-inner {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dismiss animation */
.biz-tour-nudge.is-dismissing {
  animation: bizTourNudgeDismiss 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes bizTourNudgeDismiss {
  to {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   Category E: backdrop-filter fallback for browsers/contexts that
   don't support it, without this, an unsupported browser would still
   render the near-opaque rgba backgrounds correctly (those work
   everywhere) but just miss the blur effect, an acceptable graceful
   degradation rather than a broken-looking result either way.
   ════════════════════════════════════════════════════════════════════════ */
@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .biz-notif-drop,
  .biz-notif-row-content,
  .biz-tour-nudge {
    background-color: rgba(12, 9, 26, 0.97);
  }
}

/* The complete-state card is nested one layer deeper (inside
   .biz-tour-nudge-swipe → .biz-tour-nudge-swipe-inner) than the other
   two states, which sit directly in the list. .biz-tour-nudge's own
   margin was doubling up with the wrapper's margin, leaving a gap
   around the edges that exposed the red swipe-bg layer underneath ,
   that's the red border in the screenshot, not a transparency issue.
   Inside the swipe wrapper, the card needs to fill it completely. */
.biz-tour-nudge-swipe .biz-tour-nudge {
  margin: 0;
}

/* Category F: on fine-pointer devices, hovering the row now auto-reveals
   the bin (handled in JS), cursor:pointer signals it's independently
   clickable once revealed, separate from the row's own click-to-read
   cursor. */
@media (hover: hover) and (pointer: fine) {
  .biz-notif-row-swipe-btn,
  .biz-tour-nudge-swipe-btn {
    cursor: pointer;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   ACCOUNT REDESIGN, simplified dropdown/panel rows + generic FLIP
   popover system shared by Profile preview, Login & Security, and
   Delete account confirmation.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Account dropdown header (avatar + email) ──────────────────────────── */
.biz-acct-drop-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 4px 12px;
}
.biz-acct-drop-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Simple icon + single-line-text row, used in both the account
   dropdown and the Account Info panel ───────────────────────────────── */
.biz-acct-rowlist {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.biz-acct-row {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--biz-text2);
  text-decoration: none;
  cursor: pointer;
  font-family: "Cabinet Grotesk", sans-serif;
  text-align: left;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.biz-acct-row svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: inherit;
}
.biz-acct-tier-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}
.biz-acct-tier-dot--free { background: #5b8def; }
.biz-acct-tier-dot--small { background: #f5a623; }
.biz-acct-tier-dot--mid { background: #a78bfa; box-shadow: 0 0 6px rgba(167, 139, 250, 0.6); }
.biz-acct-row:hover {
  background: rgba(167, 139, 250, 0.08);
  color: var(--biz-text);
}
.biz-acct-row--danger {
  color: var(--biz-red);
}
.biz-acct-row--danger:hover {
  background: rgba(248, 113, 113, 0.08);
  color: var(--biz-red);
}

/* ── Account Info panel: compact identity block above the row list ────── */
.biz-acct-panel-avatar--sm {
  width: 56px;
  height: 56px;
  font-size: 22px;
}
.biz-acct-panel-identity {
  padding-bottom: 10px;
}

/* ── Generic FLIP popover engine (mirrors .biz-cardexp-* exactly) ─────── */
.biz-acctflip-overlay {
  position: fixed;
  inset: 0;
  z-index: 1150;
  background: rgba(7, 6, 14, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--biz-ease);
}
.biz-acctflip-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.biz-acctflip-panel {
  position: fixed;
  z-index: 1151;
  border-radius: 20px;
  background: rgba(13, 10, 28, 0.98);
  border: 0.5px solid rgba(167, 139, 250, 0.28);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    0 0 0 0.5px rgba(167, 139, 250, 0.12) inset,
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(124, 58, 237, 0.2);
  overflow: hidden;
  pointer-events: none;
  transform-origin: top left;
  transition: transform 0.46s var(--biz-spring);
  display: flex;
  flex-direction: column;
}
.biz-acctflip-panel.is-open {
  pointer-events: all;
}
.biz-acctflip-panel--danger {
  border-color: rgba(248, 113, 113, 0.28);
}

.biz-acctflip-panel > * {
  opacity: 0;
  transition: opacity 0.26s ease 0.18s;
}
.biz-acctflip-panel.is-open > * {
  opacity: 1;
}
.biz-acctflip-panel.is-closing > * {
  opacity: 0;
  transition: opacity 0.14s ease;
}

.biz-acctflip-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 22px 16px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.biz-acctflip-head h3 {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--biz-text);
  letter-spacing: -0.01em;
}
.biz-acctflip-close {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--biz-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.14s ease;
}
.biz-acctflip-close svg {
  width: 13px;
  height: 13px;
}
.biz-acctflip-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--biz-text);
}

.biz-acctflip-back {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--biz-violet);
  font-size: 13px;
  font-weight: 700;
  font-family: "Cabinet Grotesk", sans-serif;
  cursor: pointer;
  padding: 4px 6px 4px 2px;
  border-radius: 7px;
  transition: background 0.14s ease;
}
.biz-acctflip-back svg {
  width: 15px;
  height: 15px;
}
.biz-acctflip-back:hover {
  background: rgba(167, 139, 250, 0.08);
}

.biz-acctflip-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-acctflip-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.biz-acctflip-cancel {
  flex: 1;
  padding: 11px;
  border-radius: 11px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--biz-text2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Cabinet Grotesk", sans-serif;
  transition: all 0.14s ease;
}
.biz-acctflip-cancel:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--biz-text);
}
.biz-acctflip-danger-btn {
  flex: 1;
  padding: 11px;
  border-radius: 11px;
  border: none;
  background: #f87171;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Cabinet Grotesk", sans-serif;
  transition: all 0.14s ease;
}
.biz-acctflip-danger-btn:hover {
  background: #ef4444;
}

.biz-delete-flip-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(248, 113, 113, 0.1);
  border: 0.5px solid rgba(248, 113, 113, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  margin: 0 auto;
}
.biz-delete-flip-icon svg {
  width: 22px;
  height: 22px;
}
.biz-delete-flip-text {
  font-size: 13.5px;
  color: var(--biz-text2);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.biz-security-empty {
  font-size: 13px;
  color: var(--biz-text2);
  text-align: center;
  padding: 12px 0;
  margin: 0;
}

@media (max-width: 480px) {
  .biz-acctflip-panel {
    width: calc(100vw - 32px) !important;
    left: 16px !important;
  }
}

.biz-acct-panel-close-float {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 401; /* above the panel (399) and its overlay (398) */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 16, 38, 0.92);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: var(--biz-text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.8);
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--biz-spring),
    color 0.14s ease;
}
.biz-acct-panel-close-float.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1);
}
.biz-acct-panel-close-float:hover {
  background: rgba(167, 139, 250, 0.18);
  color: var(--biz-text);
}
.biz-acct-panel-close-float svg {
  width: 16px;
  height: 16px;
}


/* ════════════════════════════════════════════════════════════════════════
   PLATFORM SETTINGS (business-side, per-business booking/processing fees)
   Append this block to bz_dashboard.css
   ════════════════════════════════════════════════════════════════════════ */

.ps-shell { max-width: 1180px; margin: 0 auto; padding: 100px 24px 80px; }

.ps-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.ps-header-left { display: flex; flex-direction: column; gap: 14px; }
.ps-back { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--biz-text2); text-decoration: none; width: fit-content; }
.ps-back:hover { color: var(--biz-text); }
.ps-back svg { width: 14px; height: 14px; }
.ps-title { margin: 0 0 6px; font-size: 26px; font-weight: 900; letter-spacing: -0.02em; color: var(--biz-text); }
.ps-sub { margin: 0; font-size: 14px; color: var(--biz-text2); }
.ps-header-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 999px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-violet); font-size: 12px; font-weight: 700; height: fit-content; }
.ps-header-badge svg { width: 14px; height: 14px; }

.ps-grid { display: grid; grid-template-columns: 1fr 380px; gap: 22px; align-items: start; }
@media (max-width: 940px) { .ps-grid { grid-template-columns: 1fr; } }

.ps-form { background: rgba(255,255,255,0.03); border: 0.5px solid rgba(167,139,250,0.18); border-radius: 22px; padding: 26px; display: flex; flex-direction: column; box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

.ps-section { display: flex; flex-direction: column; gap: 16px; }
.ps-section-head { display: flex; align-items: flex-start; gap: 14px; }
.ps-section-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-section-icon--blue { background: rgba(96,165,250,0.12); border: 0.5px solid rgba(96,165,250,0.28); color: #60a5fa; }
.ps-section-icon--violet { background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.28); color: var(--biz-violet); }
.ps-section-icon svg { width: 19px; height: 19px; }
.ps-section-title { font-size: 16px; font-weight: 800; color: var(--biz-text); margin-bottom: 4px; }
.ps-section-desc { font-size: 13px; color: var(--biz-text2); line-height: 1.5; }
.ps-section-desc strong { color: var(--biz-text); }

.ps-field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .ps-field-group { grid-template-columns: 1fr; } }
.ps-field { display: flex; flex-direction: column; gap: 6px; }
.ps-field--info { justify-content: center; padding: 12px 14px; border-radius: 12px; background: rgba(0,0,0,0.15); border: 0.5px solid rgba(255,255,255,0.06); }
.ps-label { font-size: 12px; font-weight: 700; color: var(--biz-text2); }
.ps-input-wrap { display: flex; align-items: center; background: rgba(0,0,0,0.2); border: 0.5px solid rgba(167,139,250,0.22); border-radius: 12px; overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.ps-input-wrap:focus-within { border-color: rgba(167,139,250,0.55); box-shadow: 0 0 0 4px rgba(167,139,250,0.1); }
.ps-input-prefix, .ps-input-suffix { padding: 0 12px; font-size: 13px; font-weight: 700; color: var(--biz-text3); flex-shrink: 0; }
.ps-input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--biz-text); font-size: 15px; font-weight: 700; padding: 11px 4px; outline: none; font-family: inherit; }
.ps-input--prefixed { padding-left: 0; }
.ps-input--error { color: #f87171; }
.ps-input-wrap:has(.ps-input--error) { border-color: rgba(248,113,113,0.5); }
.ps-validation { font-size: 11px; font-weight: 600; min-height: 14px; }
.ps-hint { font-size: 11px; color: var(--biz-text3); line-height: 1.4; }

.ps-combined-note { display: flex; align-items: center; gap: 9px; padding: 11px 14px; border-radius: 11px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.16); font-size: 12.5px; color: var(--biz-text2); }
.ps-combined-note svg { width: 15px; height: 15px; color: var(--biz-violet); flex-shrink: 0; }

.ps-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 22px 0; }

.ps-stripe-ref-title { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 8px; }
.ps-stripe-ref-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--biz-text2); padding: 4px 0; }
.ps-stripe-ref-row span:last-child { font-weight: 700; color: var(--biz-text); }

.ps-free-note { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-radius: 11px; background: rgba(52,211,153,0.08); border: 0.5px solid rgba(52,211,153,0.2); font-size: 12.5px; color: var(--biz-text2); }
.ps-free-note svg { width: 15px; height: 15px; color: #34d399; flex-shrink: 0; }
.ps-free-note strong { color: #34d399; }

.ps-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.ps-reset-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 18px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); color: var(--biz-text2); font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s ease; }
.ps-reset-btn:hover { background: rgba(255,255,255,0.08); color: var(--biz-text); }
.ps-reset-btn svg { width: 14px; height: 14px; }
.ps-save-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: 12px; border: 0; background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 6px 18px rgba(167,139,250,0.35); transition: all 0.2s ease; }
.ps-save-btn:hover { transform: translateY(-1px); }
.ps-save-btn svg { width: 14px; height: 14px; }

/* RIGHT, calculator */
.ps-right { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.ps-calc-card { background: rgba(255,255,255,0.03); border: 0.5px solid rgba(167,139,250,0.25); border-radius: 22px; padding: 22px; box-shadow: 0 16px 40px rgba(0,0,0,0.3); display: flex; flex-direction: column; gap: 16px; }
.ps-calc-header { display: flex; align-items: center; gap: 12px; }
.ps-calc-header svg { width: 30px; height: 30px; padding: 6px; border-radius: 10px; background: var(--biz-vd); color: var(--biz-violet); flex-shrink: 0; box-sizing: border-box; }
.ps-calc-title { font-size: 14px; font-weight: 800; color: var(--biz-text); }
.ps-calc-sub { font-size: 11px; color: var(--biz-text2); margin-top: 2px; }

.ps-calc-input-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ps-calc-label { font-size: 12.5px; font-weight: 600; color: var(--biz-text2); }
.ps-calc-price-wrap {
  display: flex; align-items: center; width: 120px;
  background: rgba(0,0,0,0.2); border: 0.5px solid rgba(167,139,250,0.22);
  border-radius: 12px; overflow: hidden;
}
.ps-calc-price { width: 100%; min-width: 0; text-align: right; }
.ps-calc-qty-wrap { display: flex; align-items: center; gap: 12px; }
.ps-qty-btn { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); color: var(--biz-text); font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ps-qty-btn:hover { background: var(--biz-vd); color: var(--biz-violet); }
.ps-calc-qty-val { font-size: 14px; font-weight: 800; color: var(--biz-text); min-width: 20px; text-align: center; }

.ps-calc-divider { height: 1px; background: rgba(255,255,255,0.06); }

.ps-calc-breakdown { display: flex; flex-direction: column; gap: 9px; }
.ps-calc-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.ps-calc-row-label { color: var(--biz-text2); display: flex; align-items: center; gap: 6px; }
.ps-calc-row-val { font-weight: 700; color: var(--biz-text); }
.ps-calc-row-val--blue { color: #60a5fa; }
.ps-calc-row-val--muted { color: var(--biz-text3); }
.ps-your-cut-tag { font-size: 9px; font-weight: 800; letter-spacing: 0.06em; color: #60a5fa; background: rgba(96,165,250,0.12); border: 0.5px solid rgba(96,165,250,0.25); padding: 2px 6px; border-radius: 5px; }

.ps-calc-total-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 14px; border-radius: 12px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.18); }
.ps-calc-total-label { font-size: 13px; font-weight: 700; color: var(--biz-text2); }
.ps-calc-total-val { font-size: 19px; font-weight: 900; color: var(--biz-text); }

.ps-earnings-card { padding: 16px; border-radius: 14px; background: rgba(96,165,250,0.07); border: 0.5px solid rgba(96,165,250,0.22); display: flex; flex-direction: column; gap: 4px; }
.ps-earnings-title { font-size: 11px; font-weight: 700; color: var(--biz-text2); }
.ps-earnings-val { font-size: 24px; font-weight: 900; color: #60a5fa; letter-spacing: -0.02em; }
.ps-earnings-sub { font-size: 11px; color: var(--biz-text3); margin-bottom: 8px; }
.ps-split-bar-mini { display: flex; height: 7px; border-radius: 4px; overflow: hidden; background: rgba(255,255,255,0.06); }
.ps-split-seg-mini { transition: flex 0.3s ease; }
.ps-split-seg-mini--net { background: rgba(255,255,255,0.18); }
.ps-split-seg-mini--platform { background: #60a5fa; }
.ps-split-seg-mini--stripe { background: var(--biz-violet); }
.ps-split-legend-mini { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.ps-split-legend-mini span { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--biz-text3); }
.ps-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.ps-dot--net { background: rgba(255,255,255,0.4); }
.ps-dot--platform { background: #60a5fa; }
.ps-dot--stripe { background: var(--biz-violet); }

.ps-calc-warning { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 11px; background: rgba(245,166,35,0.1); border: 0.5px solid rgba(245,166,35,0.28); font-size: 12px; color: #f5a623; }
.ps-calc-warning svg { width: 15px; height: 15px; flex-shrink: 0; }

.ps-compare-card { background: rgba(255,255,255,0.03); border: 0.5px solid rgba(245,166,35,0.25); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.ps-compare-title { font-size: 12px; font-weight: 800; color: #f5a623; letter-spacing: 0.04em; text-transform: uppercase; }
.ps-compare-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12px; }
.ps-compare-label { color: var(--biz-text3); flex-shrink: 0; }
.ps-compare-val { font-weight: 700; text-align: right; }
.ps-compare-val--old { color: var(--biz-text3); text-decoration: line-through; }
.ps-compare-val--new { color: var(--biz-text); }
.ps-compare-hint { font-size: 11px; color: var(--biz-text3); margin-top: 4px; }

@media (max-width: 480px) {
  .ps-shell { padding: 90px 16px 70px; }
  .ps-form { padding: 18px; border-radius: 18px; }
  .ps-actions { flex-direction: column-reverse; }
  .ps-actions .ps-reset-btn, .ps-actions .ps-save-btn { width: 100%; justify-content: center; }
  .ps-right { position: static; }
}

/* ════════════════════════════════════════════════════════════════════════
   EVENT WIZARD, Sessions repeater + Generate Slots (Category 2)
   Append to bz_dashboard.css
   ════════════════════════════════════════════════════════════════════════ */

.evw-generate-row { display: flex; align-items: flex-end; gap: 12px; }
.evw-generate-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 11px 16px; border-radius: 11px;
  background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); border: 0; color: #1e0a4a;
  font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 4px 14px rgba(167,139,250,0.3);
  transition: all 0.2s ease; white-space: nowrap;
}
.evw-generate-btn:hover { transform: translateY(-1px); }
.evw-generate-btn svg { width: 14px; height: 14px; }
@media (max-width: 560px) { .evw-generate-row { flex-direction: column; align-items: stretch; } }

.evw-session-block { margin-top: 4px; }
.evw-session-head { margin-bottom: 12px; }
.evw-session-title { font-size: 13px; font-weight: 800; color: var(--biz-text); margin-bottom: 4px; }
.evw-session-sub { font-size: 12px; color: var(--biz-text2); line-height: 1.5; }

.evw-session-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }

.evw-session-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr auto; gap: 10px; align-items: end;
  padding: 12px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(167,139,250,0.16);
}
.evw-reschedule-tag {
  grid-column: 1 / -1;
  display: inline-flex; align-items: center; width: fit-content;
  font-size: 10.5px; font-weight: 700; white-space: nowrap;
  color: #f5a623; background: rgba(245,166,35,0.1); border: 0.5px solid rgba(245,166,35,0.28);
  padding: 3px 9px; border-radius: 999px; margin-bottom: 2px;
}
.evw-reschedule-tag--accepted {
  color: #34d399; background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.28);
}
@media (max-width: 720px) {
  .evw-session-row { grid-template-columns: 1fr 1fr; grid-template-areas: "date date" "start end" "cap remove"; }
  .evw-session-row .evw-session-field:nth-child(1) { grid-area: date; }
  .evw-session-row .evw-session-field:nth-child(2) { grid-area: start; }
  .evw-session-row .evw-session-field:nth-child(3) { grid-area: end; }
  .evw-session-row .evw-session-field:nth-child(4) { grid-area: cap; }
  .evw-session-row .evw-session-remove { grid-area: remove; justify-self: end; }
}

.evw-session-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.evw-session-label { font-size: 10.5px; font-weight: 700; color: var(--biz-text3); letter-spacing: 0.04em; text-transform: uppercase; }
.evw-session-optional { font-weight: 500; text-transform: none; color: var(--biz-text3); opacity: 0.7; }
.evw-session-input {
  background: rgba(0,0,0,0.2); border: 0.5px solid rgba(167,139,250,0.2); border-radius: 10px;
  color: var(--biz-text); font-size: 13px; font-weight: 600; padding: 9px 10px; font-family: inherit;
  outline: none; width: 100%; box-sizing: border-box; transition: border-color 0.2s ease;
}
.evw-session-input:focus { border-color: rgba(167,139,250,0.55); box-shadow: 0 0 0 3px rgba(167,139,250,0.1); }
.evw-session-input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.6); cursor: pointer; }

.evw-session-remove {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(248,113,113,0.08); border: 0.5px solid rgba(248,113,113,0.2); color: #f87171;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s ease;
}
.evw-session-remove:hover { background: rgba(248,113,113,0.16); }
.evw-session-remove svg { width: 15px; height: 15px; }

.evw-session-add {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 11px;
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-violet);
  font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.15s ease;
}
.evw-session-add:hover { background: rgba(167,139,250,0.16); }
.evw-session-add svg { width: 14px; height: 14px; }

.evw-session-empty-hint { font-size: 12px; color: #f5a623; margin: 10px 0 0; padding: 9px 12px; border-radius: 10px; background: rgba(245,166,35,0.08); border: 0.5px solid rgba(245,166,35,0.2); }

/* Category 12, occurrence rows (recurring event picked days) 
   Same visual language as .evw-session-row, but 3 fields (date/start/end)
   plus 1 trailing button (remove) instead of 4 fields + 1 button, so the
   grid template needs its own column count. The booking window for a
   recurring event is set once at the event level, not per day, so
   there is no toggle button here any more. ── */
.evw-occ-row {
  grid-template-columns: 1.2fr 1fr 1fr auto;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .evw-occ-row { grid-template-columns: 1fr 1fr; grid-template-areas: "date date" "start end" ". remove"; }
  .evw-occ-row .evw-session-field:nth-child(2) { grid-area: date; }
  .evw-occ-row .evw-session-field:nth-child(3) { grid-area: start; }
  .evw-occ-row .evw-session-field:nth-child(4) { grid-area: end; }
  .evw-occ-row .evw-session-remove { grid-area: remove; justify-self: end; }
}

.evw-occ-row-error {
  grid-column: 1 / -1; margin: 8px 0 0; font-size: 12px; color: #fca5a5;
  padding: 8px 11px; border-radius: 9px; background: rgba(248,113,113,0.08); border: 0.5px solid rgba(248,113,113,0.22);
}
.evw-input-invalid { border-color: rgba(248,113,113,0.55) !important; background: rgba(248,113,113,0.06) !important; }


/* ════════════════════════════════════════════════════════════════════════
   BOOKINGS "COMING SOON" PLACEHOLDER, append to bz_dashboard.css
   ════════════════════════════════════════════════════════════════════════ */

.bcs-shell { max-width: 480px; margin: 0 auto; padding: 120px 24px 80px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.bcs-icon { width: 60px; height: 60px; border-radius: 18px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); display: flex; align-items: center; justify-content: center; color: var(--biz-violet); margin-bottom: 6px; }
.bcs-icon svg { width: 26px; height: 26px; }
.bcs-title { font-size: 21px; font-weight: 800; color: var(--biz-text); margin: 0; }
.bcs-sub { font-size: 14px; color: var(--biz-text2); line-height: 1.6; margin: 0 0 10px; }
.bcs-back { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 12px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-violet); font-size: 13px; font-weight: 700; text-decoration: none; }
.bcs-back svg { width: 14px; height: 14px; }
.bcs-ref-tag { display: inline-block; padding: 5px 12px; border-radius: 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-violet); font-size: 12px; font-weight: 700; font-family: ui-monospace, monospace; margin: -4px 0 4px; }

/* ════════════════════════════════════════════════════════════════════════
   NOTIFICATION ROW ACTION BUTTON (Category 3), append to bz_dashboard.css
   The category label and the new actionable link now share a row
   ("biz-notif-row-foot") instead of the category label sitting alone.
   ════════════════════════════════════════════════════════════════════════ */

.biz-notif-row-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 6px;
}
.biz-notif-row-action {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; font-weight: 700; color: var(--biz-violet);
  text-decoration: none; padding: 3px 9px; border-radius: 7px;
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25);
  transition: all 0.15s ease; flex-shrink: 0;
}
.biz-notif-row-action:hover { background: rgba(167,139,250,0.18); border-color: rgba(167,139,250,0.4); }
.biz-notif-row-action svg { width: 10px; height: 10px; }




/* ════════════════════════════════════════════════════════════════════════
   CATEGORY 5, BOOKINGS MANAGEMENT (business-side)
   Adapted from the admin reference's blue theme to our violet/glass
   system. Append to bz_dashboard.css.
   ════════════════════════════════════════════════════════════════════════ */

.bl-shell, .bd-shell { max-width: 1280px; margin: 0 auto; padding: 100px 24px 80px; display: flex; flex-direction: column; gap: 18px; }
.bd-shell { max-width: 1100px; padding: 100px 18px 80px; }

.bl-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bl-header-left { display: flex; flex-direction: column; gap: 10px; }
.bl-title { font-size: 26px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.02em; margin: 0; }
.bl-sub { font-size: 13px; color: var(--biz-text2); margin: 0; }

/* Stats */
.bl-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.bl-stat { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.08); }
.bl-stat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 0.5px solid; flex-shrink: 0; }
.bl-stat-icon svg { width: 17px; height: 17px; }
.bl-stat-icon--blue { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.22); color: #60a5fa; }
.bl-stat-icon--green { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.22); color: #34d399; }
.bl-stat-icon--amber { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.22); color: #f5a623; }
.bl-stat-icon--red { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.22); color: #f87171; }
.bl-stat-icon--violet { background: var(--biz-vd); border-color: rgba(167,139,250,0.25); color: var(--biz-violet); }
.bl-stat-val { font-size: 19px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.02em; }
.bl-stat-label { font-size: 11px; color: var(--biz-text2); font-weight: 600; }

/* Search/filters */
.bl-search-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.bl-search-wrap { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.08); flex: 1; min-width: 200px; max-width: 360px; }
.bl-search-wrap:focus-within { border-color: rgba(167,139,250,0.4); box-shadow: 0 0 0 3px rgba(167,139,250,0.08); }
.bl-search-wrap > svg { width: 14px; height: 14px; color: var(--biz-text3); flex-shrink: 0; }
.bl-search-input { flex: 1; background: transparent; border: 0; color: var(--biz-text); font-size: 13px; font-family: inherit; outline: none; }
.bl-search-input::placeholder { color: var(--biz-text3); }
.bl-search-clear { background: transparent; border: 0; color: var(--biz-text3); cursor: pointer; display: flex; padding: 0; }
.bl-search-clear:hover { color: #f87171; }
.bl-search-clear svg { width: 14px; height: 14px; }

.bl-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.bl-select { padding: 10px 12px; border-radius: 10px; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.08); color: var(--biz-text); font-size: 13px; font-family: inherit; outline: none; cursor: pointer; color-scheme: dark; }

/* ── Custom dropdown ─────────────────────────────────────────────────────
   Real Apple-style spring physics, this is genuinely impossible on a
   native <select>, whose popup is rendered entirely by the OS with zero
   styling or animation control. */
.bl-cdrop { position: relative; }
.bl-cdrop-native {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; pointer-events: none;
}
.bl-cdrop-trigger {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 13px; border-radius: 12px;
  background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.09);
  color: var(--biz-text); font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; white-space: nowrap; max-width: 200px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bl-cdrop-trigger:hover { border-color: rgba(167,139,250,0.35); background: rgba(167,139,250,0.06); }
.bl-cdrop-trigger:active { transform: scale(0.97); }
.bl-cdrop-trigger.is-open { border-color: rgba(167,139,250,0.5); background: rgba(167,139,250,0.1); }
.bl-cdrop-trigger-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bl-cdrop-chev { width: 13px; height: 13px; flex-shrink: 0; color: var(--biz-text3); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bl-cdrop-trigger.is-open .bl-cdrop-chev { transform: rotate(180deg); color: var(--biz-violet); }

.bl-cdrop-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  min-width: 100%; width: max-content; max-width: 280px;
  background: rgba(13, 10, 28, 0.98);
  border: 0.5px solid rgba(167,139,250,0.24);
  border-radius: 14px;
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 24px 56px -16px rgba(0,0,0,0.6), 0 0 0 0.5px rgba(167,139,250,0.1) inset;
  padding: 6px;
  max-height: 320px; overflow-y: auto;
  opacity: 0; transform: scale(0.92) translateY(-6px);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bl-cdrop-panel.is-open {
  opacity: 1; transform: scale(1) translateY(0);
  pointer-events: all;
}

.bl-cdrop-option {
  position: relative;
  padding: 9px 12px; border-radius: 9px;
  font-size: 13px; font-weight: 600; color: var(--biz-text2);
  cursor: pointer; outline: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bl-cdrop-option:hover,
.bl-cdrop-option:focus {
  background: rgba(167,139,250,0.14);
  color: var(--biz-text);
  transform: translateX(2px);
}
.bl-cdrop-option.is-selected {
  background: var(--biz-vd);
  color: var(--biz-violet);
  font-weight: 800;
}
.bl-cdrop-option.is-selected::after {
  content: '';
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--biz-violet); box-shadow: 0 0 6px rgba(167,139,250,0.7);
}
.bl-select:focus { border-color: rgba(167,139,250,0.4); }
.bl-search-btn { padding: 10px 16px; border-radius: 10px; border: 0; background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); transition: all 0.2s ease; }
.bl-search-btn:hover { transform: translateY(-1px); }
.bl-reset-btn { padding: 10px 14px; border-radius: 10px; border: 0.5px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); color: var(--biz-text2); font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: none; transition: all 0.15s; }
.bl-reset-btn:hover { background: rgba(255,255,255,0.07); color: var(--biz-text); }

/* Table */
.bl-table-wrap { border-radius: 18px; overflow: hidden; border: 0.5px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.bl-table { width: 100%; border-collapse: collapse; }
.bl-table thead th { padding: 12px 16px; text-align: left; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); background: rgba(0,0,0,0.2); border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.bl-row { cursor: pointer; position: relative; }
.bl-row td { padding: 13px 16px; border-bottom: 0.5px solid rgba(255,255,255,0.05); vertical-align: middle; transition: background 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.bl-row:last-child td { border-bottom: 0; }
.bl-row:hover td { background: rgba(167,139,250,0.07); }
.bl-row:hover td:first-child { box-shadow: inset 3px 0 0 var(--biz-violet); }
.bl-row--highlight td { background: rgba(167,139,250,0.1); }

.bl-ref { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--biz-violet); padding: 3px 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.2); border-radius: 6px; }
.bl-customer { display: flex; align-items: center; gap: 10px; }
.bl-avatar { width: 34px; height: 34px; border-radius: 50%; background: hsl(var(--av-hue, 260), 50%, 24%); border: 0.5px solid hsl(var(--av-hue, 260), 50%, 38%); color: hsl(var(--av-hue, 260), 75%, 78%); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bl-row:hover .bl-avatar { transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) { .bl-row:hover .bl-avatar { transform: none; } }
.bl-customer-name { font-size: 13px; font-weight: 600; color: var(--biz-text); }
.bl-customer-email { font-size: 11px; color: var(--biz-text2); }
.bl-event-name { font-size: 12px; color: var(--biz-text2); font-weight: 600; max-width: 160px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bl-reschedule-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; color: var(--biz-violet);
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25);
  padding: 2px 7px; border-radius: 999px; margin-top: 4px;
}
.bl-reschedule-badge svg { width: 10px; height: 10px; }
.bl-reschedule-badge--pending { color: #f5a623; background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.28); }

.bl-status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.bl-status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.bl-status-pill--confirmed { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.bl-status-pill--pending { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.2); }
.bl-status-pill--cancelled { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }

.bl-pay-pill { display: inline-block; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.bl-pay-pill--paid { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.bl-pay-pill--pending, .bl-pay-pill--cash_pending { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.2); }
.bl-pay-pill--unpaid { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }

.bl-refund-pill { display: inline-block; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.bl-refund-pill--requested { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.2); }
.bl-refund-pill--approved { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.bl-refund-pill--partial { background: var(--biz-vd); color: var(--biz-violet); border: 0.5px solid rgba(167,139,250,0.25); }
.bl-refund-pill--declined { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }
.bl-refund-pill--none { background: rgba(255,255,255,0.03); color: var(--biz-text3); border: 0.5px solid rgba(255,255,255,0.06); }

.bl-amount { font-size: 14px; font-weight: 800; color: var(--biz-text); }
.bl-date { font-size: 12px; color: var(--biz-text2); line-height: 1.4; }
.bl-time { color: var(--biz-text3); font-size: 11px; }

.bl-open-btn { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.22); color: var(--biz-violet); font-size: 12px; font-weight: 700; text-decoration: none; transition: all 0.15s; }
.bl-open-btn:hover { background: rgba(167,139,250,0.18); }
.bl-open-btn svg { width: 13px; height: 13px; }

.bl-empty { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 70px 24px; text-align: center; }
.bl-empty-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: var(--biz-text3); margin-bottom: 6px; }
.bl-empty-icon svg { width: 28px; height: 28px; }
.bl-empty h3 { font-size: 18px; font-weight: 800; color: var(--biz-text2); margin: 0; }
.bl-empty p { font-size: 13px; color: var(--biz-text3); margin: 0; }

@media (max-width: 1024px) { .bl-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .bl-stats { grid-template-columns: 1fr 1fr; } }

/* ════════════════════════════════════════════════════════════════════════
   BOOKING DETAIL
   ════════════════════════════════════════════════════════════════════════ */

.bd-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.bd-header-right { display: flex; align-items: center; gap: 8px; }
.bd-ref-badge { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; color: var(--biz-violet); padding: 5px 12px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.22); border-radius: 8px; }
.bd-checked-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; color: #34d399; padding: 5px 11px; background: rgba(52,211,153,0.1); border: 0.5px solid rgba(52,211,153,0.22); border-radius: 8px; }
.bd-checked-badge svg { width: 12px; height: 12px; }

.bd-status-banner { padding: 20px 22px; border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 0.5px solid; }
.bd-status-banner--paid { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.25); }
.bd-status-banner--cash_pending { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.22); }
.bd-status-banner--pending { background: rgba(245,166,35,0.06); border-color: rgba(245,166,35,0.18); }
.bd-status-banner--unpaid { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.2); }
.bd-status-banner-left { display: flex; align-items: center; gap: 14px; }
.bd-status-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; border: 0.5px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.bd-status-icon svg { width: 22px; height: 22px; }
.bd-status-banner--paid .bd-status-icon { background: rgba(52,211,153,0.14); color: #34d399; }
.bd-status-banner--cash_pending .bd-status-icon, .bd-status-banner--pending .bd-status-icon { background: rgba(245,166,35,0.12); color: #f5a623; }
.bd-status-banner--unpaid .bd-status-icon { background: rgba(248,113,113,0.1); color: #f87171; }
.bd-status-label { font-size: 16px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; }
.bd-status-sub { font-size: 12px; color: var(--biz-text2); margin-top: 3px; }
.bd-checkin-link {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; margin-top: -4px; margin-bottom: 4px;
  background: rgba(167,139,250,0.06); border: 0.5px solid rgba(167,139,250,0.22);
  border-radius: 12px; color: var(--biz-violet); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
}
.bd-checkin-link:hover { background: var(--biz-vd); border-color: rgba(167,139,250,0.4); transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(107,70,193,0.5); }
.bd-checkin-link svg:first-child { width: 15px; height: 15px; flex-shrink: 0; }

.bd-reschedule-status-pill {
  display: inline-flex; align-items: center; margin-left: 6px;
  font-size: 10px; font-weight: 700; color: #f5a623;
  background: rgba(245,166,35,0.1); border: 0.5px solid rgba(245,166,35,0.28);
  padding: 2px 8px; border-radius: 999px; vertical-align: middle;
}
.bd-status-total { text-align: right; }
.bd-status-total-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 4px; }
.bd-status-total-val { font-family: 'Cabinet Grotesk', sans-serif; font-size: 30px; font-weight: 900; color: var(--biz-text); letter-spacing: -0.03em; }

.bd-refund-pending-banner { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; background: rgba(245,166,35,0.08); border: 0.5px solid rgba(245,166,35,0.25); }
.bd-refund-pending-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(245,166,35,0.14); border: 0.5px solid rgba(245,166,35,0.25); display: flex; align-items: center; justify-content: center; color: #f5a623; flex-shrink: 0; }
.bd-refund-pending-icon svg { width: 19px; height: 19px; }
.bd-refund-pending-title { font-weight: 800; font-size: 14px; color: #f5a623; margin-bottom: 3px; }
.bd-refund-pending-sub { font-size: 12.5px; color: var(--biz-text2); }

.bd-grid { display: grid; grid-template-columns: 1fr 300px; gap: 16px; align-items: start; }
@media (max-width: 800px) { .bd-grid { grid-template-columns: 1fr; } .bd-right { order: -1; } }
.bd-left { display: flex; flex-direction: column; gap: 14px; }

.bd-card { padding: 20px 22px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); border: 0.5px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.bd-card--meta { background: rgba(0,0,0,0.15); }
.bd-card-title { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--biz-text3); }

.bd-customer-row { display: flex; align-items: center; gap: 14px; }
.bd-avatar-lg { width: 52px; height: 52px; border-radius: 50%; background: hsl(var(--av-hue, 260), 50%, 24%); border: 0.5px solid hsl(var(--av-hue, 260), 50%, 38%); color: hsl(var(--av-hue, 260), 75%, 78%); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; flex-shrink: 0; }
.bd-customer-detail { display: flex; flex-direction: column; gap: 3px; }
.bd-customer-name { font-size: 17px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; }
.bd-customer-email { font-size: 13px; color: var(--biz-violet); text-decoration: none; }
.bd-customer-email:hover { text-decoration: underline; }
.bd-customer-phone { font-size: 12px; color: var(--biz-text2); }

.bd-message-block { padding: 12px 14px; border-radius: 10px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.16); }
.bd-message-block--resolved { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
.bd-message-label { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 6px; }
.bd-message-text { font-size: 13px; color: var(--biz-text2); line-height: 1.5; white-space: pre-wrap; }
.bd-refund-amount-tag { display: inline-block; margin-top: 8px; padding: 3px 10px; border-radius: 6px; background: rgba(52,211,153,0.12); border: 0.5px solid rgba(52,211,153,0.22); color: #34d399; font-size: 12px; font-weight: 800; }

.bd-detail-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--biz-text); font-weight: 600; }
.bd-detail-row svg { width: 14px; height: 14px; color: var(--biz-text3); flex-shrink: 0; }
.bd-session-block { padding: 10px 14px; border-radius: 10px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.16); }
.bd-session-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-violet); margin-bottom: 4px; }
.bd-session-val { font-size: 13px; font-weight: 700; color: var(--biz-text); }

.bd-tickets { display: flex; flex-direction: column; border: 0.5px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; }
.bd-ticket-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 0.5px solid rgba(255,255,255,0.04); background: rgba(0,0,0,0.15); }
.bd-ticket-row:last-child { border-bottom: 0; }
.bd-ticket-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.18); display: flex; align-items: center; justify-content: center; color: var(--biz-violet); flex-shrink: 0; }
.bd-ticket-icon--package { background: rgba(52,211,153,0.08); border-color: rgba(52,211,153,0.2); color: #34d399; }
.bd-ticket-pkg-tag {
  display: inline-block; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--biz-violet); background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25);
  padding: 1px 6px; border-radius: 999px; margin-left: 4px; vertical-align: middle;
}
.bd-ticket-icon svg { width: 15px; height: 15px; }
.bd-ticket-info { flex: 1; }
.bd-ticket-name { font-size: 13px; font-weight: 700; color: var(--biz-text); }
.bd-ticket-type { font-size: 11px; color: var(--biz-text2); margin-top: 2px; }
.bd-ticket-prices { text-align: right; }
.bd-ticket-line { font-size: 14px; font-weight: 800; color: var(--biz-text); }
.bd-ticket-unit { font-size: 11px; color: var(--biz-text3); }

.bd-totals { display: flex; flex-direction: column; gap: 0; border-top: 0.5px solid rgba(255,255,255,0.05); padding-top: 10px; }
.bd-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--biz-text2); padding: 5px 0; }
.bd-total-green { color: #34d399; font-weight: 700; }
.bd-total-row--final { font-size: 15px; font-weight: 800; color: var(--biz-text); border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 10px; margin-top: 4px; }
.bd-empty-msg { font-size: 13px; color: var(--biz-text3); }

.bd-refund-detail-row { display: flex; align-items: center; gap: 10px; }
.bd-refund-detail-date { font-size: 12px; color: var(--biz-text3); }

.bd-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bd-meta-item { display: flex; flex-direction: column; gap: 4px; }
.bd-meta-item--wide { grid-column: 1 / -1; }
.bd-meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); }
.bd-meta-val { font-size: 13px; font-weight: 600; color: var(--biz-text); word-break: break-all; }
.bd-meta-val--mono { font-family: ui-monospace, monospace; font-size: 11px; color: var(--biz-text2); letter-spacing: 0.04em; }
.bd-meta-val--green { color: #34d399; font-weight: 700; }

.bd-right { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; }

.bd-actions-card { padding: 18px; border-radius: 18px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 8px; }
.bd-action-form { display: block; }
.bd-action-btn { width: 100%; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 11px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease; text-decoration: none; border: 0.5px solid transparent; }
.bd-action-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.bd-action-btn--primary { background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; border: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }
.bd-action-btn--primary:hover { transform: translateY(-1px); }
.bd-action-btn--ghost { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: var(--biz-text2); }
.bd-action-btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--biz-text); }
.bd-action-btn--amber { background: linear-gradient(180deg, rgba(255,200,80,0.95), rgba(245,166,35,0.9)); color: #2a1a00; border: 0; }
.bd-action-btn--amber:hover { transform: translateY(-1px); }
.bd-action-btn--red-ghost { background: transparent; border-color: rgba(248,113,113,0.2); color: rgba(248,113,113,0.75); }
.bd-action-btn--red-ghost:hover { background: rgba(248,113,113,0.08); color: #f87171; border-color: rgba(248,113,113,0.35); }
.bd-action-sep { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }

/* Resolve refund card */
.bd-resolve-card { padding: 18px; border-radius: 18px; background: rgba(245,166,35,0.05); border: 0.5px solid rgba(245,166,35,0.22); display: flex; flex-direction: column; gap: 14px; }
.bd-resolve-card--done { background: rgba(52,211,153,0.06); border-color: rgba(52,211,153,0.24); }
.bd-resolve-card--done .bd-card-title { color: #34d399; display: flex; align-items: center; gap: 8px; }
.bd-resolve-card--done .bd-card-title svg { width: 16px; height: 16px; }
.bd-neg-resolved-text { font-size: 12.5px; color: var(--biz-text2); line-height: 1.6; margin: 0; }
.bd-neg-resolved-text strong { color: var(--biz-text); }
.bd-neg-phone-note {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: rgba(167,139,250,0.08); border: 0.5px solid rgba(167,139,250,0.22);
  border-radius: 10px; font-size: 12px; color: var(--biz-text2); line-height: 1.4;
}
.bd-neg-phone-note svg { width: 15px; height: 15px; color: var(--biz-violet); flex-shrink: 0; }
.bd-neg-phone-note a { color: var(--biz-violet); font-weight: 700; text-decoration: none; }
.bd-neg-phone-note a:hover { text-decoration: underline; }
.bd-resolve-tabs { display: flex; gap: 6px; }
.bd-resolve-tab { flex: 1; padding: 8px 6px; border-radius: 9px; border: 0.5px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); color: var(--biz-text2); font-size: 11.5px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.15s ease; }
.bd-resolve-tab:hover { background: rgba(255,255,255,0.06); }
.bd-resolve-tab.is-active { background: var(--biz-vd); border-color: rgba(167,139,250,0.35); color: var(--biz-violet); }
.bd-resolve-note { font-size: 12.5px; color: var(--biz-text2); line-height: 1.5; margin: 0; }
.bd-resolve-note strong { color: var(--biz-text); }
.bd-resolve-label { font-size: 11px; font-weight: 700; color: var(--biz-text2); display: block; margin-bottom: 6px; }
.bd-resolve-optional { font-weight: 500; color: var(--biz-text3); }
.bd-resolve-amount-wrap { display: flex; align-items: center; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(167,139,250,0.22); border-radius: 10px; overflow: hidden; }
.bd-resolve-amount-prefix { padding: 0 10px; font-weight: 700; color: var(--biz-text2); font-size: 13px; border-right: 0.5px solid rgba(167,139,250,0.15); }
.bd-resolve-input { flex: 1; background: transparent; border: 0; color: var(--biz-text); padding: 10px 10px; font-size: 14px; outline: none; width: 100%; font-family: inherit; }
.bd-resolve-hint { font-size: 11px; color: var(--biz-text3); display: block; margin-top: 5px; }
.bd-resolve-textarea { width: 100%; box-sizing: border-box; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(167,139,250,0.2); border-radius: 10px; color: var(--biz-text); padding: 10px 12px; font-size: 13px; font-family: inherit; outline: none; resize: vertical; }
.bd-resolve-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 16px; border-radius: 12px; border: 0; font-size: 13.5px; font-weight: 800; cursor: pointer; font-family: inherit; background: linear-gradient(180deg, #3ee68a, #34d399); color: #042208; box-shadow: inset 0 1px 0 rgba(255,255,255,0.28); transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease; }
.bd-resolve-submit:hover { transform: translateY(-1px); }
.bd-resolve-submit--danger { background: linear-gradient(180deg, #fb7185, #f87171); color: #2a0606; }
.bd-resolve-submit svg { width: 15px; height: 15px; }

.bd-resolve-select {
  width: 100%; box-sizing: border-box; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(167,139,250,0.2);
  border-radius: 10px; color: var(--biz-text); padding: 10px 12px; font-size: 13px; font-family: inherit; outline: none;
}

/* Confirmed fix, native date/time inputs carry their own
   browser-enforced minimum intrinsic width, which overrides a plain
   flex:1 shrink and was pushing this row wider than its card,
   "leaking out". min-width:0 is the actual fix; max-width just keeps
   them from stretching unnecessarily wide on a spacious card. */
.bd-propose-new-row { display: flex; gap: 8px; }
.bd-propose-new-field { flex: 1 1 0; min-width: 0; }
.bd-propose-new-field .bd-resolve-select { max-width: 100%; }
@media (max-width: 480px) {
  .bd-propose-new-row { flex-direction: column; }
}

/* Category 16, organiser-side negotiation thread */
.bd-neg-thread { display: flex; flex-direction: column; gap: 10px; }
.bd-neg-msg { padding: 10px 13px; border-radius: 12px; max-width: 88%; }
.bd-neg-msg--me { align-self: flex-end; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); }
.bd-neg-msg--them { align-self: flex-start; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.08); }
.bd-neg-msg-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--biz-text3); margin-bottom: 4px; }
.bd-neg-msg-proposal { font-size: 13px; font-weight: 700; color: var(--biz-violet); margin-bottom: 4px; }
.bd-neg-msg-body { font-size: 13px; color: var(--biz-text); line-height: 1.4; }
.bd-neg-msg-status { font-size: 11px; font-weight: 800; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.bd-neg-msg-status--good { color: #6ee7b7; }
.bd-neg-msg-status--bad { color: #fca5a5; }

/* Self-contained flash messages for the bookings pages, defined
   here rather than assumed to exist elsewhere, since this file may be
   the first place flash styling is needed on these specific pages. ── */
.bl-flash-area { display: flex; flex-direction: column; gap: 8px; }
.bl-flash { padding: 11px 16px; border-radius: 12px; font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); }
.bl-flash--success { border-color: rgba(52,211,153,0.32); color: #34d399; background: rgba(52,211,153,0.06); }
.bl-flash--error { border-color: rgba(248,113,113,0.32); color: #f87171; background: rgba(248,113,113,0.06); }
.bl-flash--info { border-color: rgba(167,139,250,0.32); color: var(--biz-violet); background: var(--biz-vg); }


/* ════════════════════════════════════════════════════════════════════════
   CATEGORY 5, BOOKINGS MANAGEMENT (business-side)
   Adapted from the admin reference's blue theme to our violet/glass
   system. Append to bz_dashboard.css.
   ════════════════════════════════════════════════════════════════════════ */

.bl-shell, .bd-shell { max-width: 1280px; margin: 0 auto; padding: 100px 24px 80px; display: flex; flex-direction: column; gap: 18px; }
.bd-shell { max-width: 1100px; padding: 100px 18px 80px; }

.bl-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bl-header-left { display: flex; flex-direction: column; gap: 10px; }
.bl-title { font-size: 26px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.02em; margin: 0; }
.bl-sub { font-size: 13px; color: var(--biz-text2); margin: 0; }

/* Stats */
.bl-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.bl-stat { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.08); }
.bl-stat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 0.5px solid; flex-shrink: 0; }
.bl-stat-icon svg { width: 17px; height: 17px; }
.bl-stat-icon--blue { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.22); color: #60a5fa; }
.bl-stat-icon--green { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.22); color: #34d399; }
.bl-stat-icon--amber { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.22); color: #f5a623; }
.bl-stat-icon--red { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.22); color: #f87171; }
.bl-stat-icon--violet { background: var(--biz-vd); border-color: rgba(167,139,250,0.25); color: var(--biz-violet); }
.bl-stat-val { font-size: 19px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.02em; }
.bl-stat-label { font-size: 11px; color: var(--biz-text2); font-weight: 600; }

/* Search/filters */
.bl-search-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.bl-search-wrap { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.08); flex: 1; min-width: 200px; max-width: 360px; }
.bl-search-wrap:focus-within { border-color: rgba(167,139,250,0.4); box-shadow: 0 0 0 3px rgba(167,139,250,0.08); }
.bl-search-wrap > svg { width: 14px; height: 14px; color: var(--biz-text3); flex-shrink: 0; }
.bl-search-input { flex: 1; background: transparent; border: 0; color: var(--biz-text); font-size: 13px; font-family: inherit; outline: none; }
.bl-search-input::placeholder { color: var(--biz-text3); }
.bl-search-clear { background: transparent; border: 0; color: var(--biz-text3); cursor: pointer; display: flex; padding: 0; }
.bl-search-clear:hover { color: #f87171; }
.bl-search-clear svg { width: 14px; height: 14px; }

.bl-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.bl-select { padding: 10px 12px; border-radius: 10px; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.08); color: var(--biz-text); font-size: 13px; font-family: inherit; outline: none; cursor: pointer; color-scheme: dark; }
.bl-select:focus { border-color: rgba(167,139,250,0.4); }
.bl-search-btn { padding: 10px 16px; border-radius: 10px; border: 0; background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); transition: all 0.2s ease; }
.bl-search-btn:hover { transform: translateY(-1px); }
.bl-reset-btn { padding: 10px 14px; border-radius: 10px; border: 0.5px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); color: var(--biz-text2); font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: none; transition: all 0.15s; }
.bl-reset-btn:hover { background: rgba(255,255,255,0.07); color: var(--biz-text); }

/* Table */
.bl-table-wrap { border-radius: 18px; overflow: hidden; border: 0.5px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.bl-table { width: 100%; border-collapse: collapse; }
.bl-table thead th { padding: 12px 16px; text-align: left; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); background: rgba(0,0,0,0.2); border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.bl-row { cursor: pointer; position: relative; }
.bl-row td { padding: 13px 16px; border-bottom: 0.5px solid rgba(255,255,255,0.05); vertical-align: middle; transition: background 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.bl-row:last-child td { border-bottom: 0; }
.bl-row:hover td { background: rgba(167,139,250,0.07); }
.bl-row:hover td:first-child { box-shadow: inset 3px 0 0 var(--biz-violet); }
.bl-row--highlight td { background: rgba(167,139,250,0.1); }

.bl-ref { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--biz-violet); padding: 3px 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.2); border-radius: 6px; }
.bl-customer { display: flex; align-items: center; gap: 10px; }
.bl-avatar { width: 34px; height: 34px; border-radius: 50%; background: hsl(var(--av-hue, 260), 50%, 24%); border: 0.5px solid hsl(var(--av-hue, 260), 50%, 38%); color: hsl(var(--av-hue, 260), 75%, 78%); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bl-row:hover .bl-avatar { transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) { .bl-row:hover .bl-avatar { transform: none; } }
.bl-customer-name { font-size: 13px; font-weight: 600; color: var(--biz-text); }
.bl-customer-email { font-size: 11px; color: var(--biz-text2); }
.bl-event-name { font-size: 12px; color: var(--biz-text2); font-weight: 600; max-width: 160px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.bl-status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.bl-status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.bl-status-pill--confirmed { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.bl-status-pill--pending { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.2); }
.bl-status-pill--cancelled { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }

.bl-pay-pill { display: inline-block; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.bl-pay-pill--paid { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.bl-pay-pill--pending, .bl-pay-pill--cash_pending { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.2); }
.bl-pay-pill--unpaid { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }

.bl-refund-pill { display: inline-block; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.bl-refund-pill--requested { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.2); }
.bl-refund-pill--approved { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.bl-refund-pill--partial { background: var(--biz-vd); color: var(--biz-violet); border: 0.5px solid rgba(167,139,250,0.25); }
.bl-refund-pill--declined { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }
.bl-refund-pill--none { background: rgba(255,255,255,0.03); color: var(--biz-text3); border: 0.5px solid rgba(255,255,255,0.06); }

.bl-amount { font-size: 14px; font-weight: 800; color: var(--biz-text); }
.bl-date { font-size: 12px; color: var(--biz-text2); line-height: 1.4; }
.bl-time { color: var(--biz-text3); font-size: 11px; }

.bl-open-btn { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.22); color: var(--biz-violet); font-size: 12px; font-weight: 700; text-decoration: none; transition: all 0.15s; }
.bl-open-btn:hover { background: rgba(167,139,250,0.18); }
.bl-open-btn svg { width: 13px; height: 13px; }

.bl-empty { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 70px 24px; text-align: center; }
.bl-empty-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: var(--biz-text3); margin-bottom: 6px; }
.bl-empty-icon svg { width: 28px; height: 28px; }
.bl-empty h3 { font-size: 18px; font-weight: 800; color: var(--biz-text2); margin: 0; }
.bl-empty p { font-size: 13px; color: var(--biz-text3); margin: 0; }

@media (max-width: 1024px) { .bl-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .bl-stats { grid-template-columns: 1fr 1fr; } }

/* ════════════════════════════════════════════════════════════════════════
   BOOKING DETAIL
   ════════════════════════════════════════════════════════════════════════ */

.bd-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.bd-header-right { display: flex; align-items: center; gap: 8px; }
.bd-ref-badge { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; color: var(--biz-violet); padding: 5px 12px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.22); border-radius: 8px; }
.bd-checked-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; color: #34d399; padding: 5px 11px; background: rgba(52,211,153,0.1); border: 0.5px solid rgba(52,211,153,0.22); border-radius: 8px; }
.bd-checked-badge svg { width: 12px; height: 12px; }

.bd-status-banner { padding: 20px 22px; border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 0.5px solid; }
.bd-status-banner--paid { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.25); }
.bd-status-banner--cash_pending { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.22); }
.bd-status-banner--pending { background: rgba(245,166,35,0.06); border-color: rgba(245,166,35,0.18); }
.bd-status-banner--unpaid { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.2); }
.bd-status-banner-left { display: flex; align-items: center; gap: 14px; }
.bd-status-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; border: 0.5px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.bd-status-icon svg { width: 22px; height: 22px; }
.bd-status-banner--paid .bd-status-icon { background: rgba(52,211,153,0.14); color: #34d399; }
.bd-status-banner--cash_pending .bd-status-icon, .bd-status-banner--pending .bd-status-icon { background: rgba(245,166,35,0.12); color: #f5a623; }
.bd-status-banner--unpaid .bd-status-icon { background: rgba(248,113,113,0.1); color: #f87171; }
.bd-status-label { font-size: 16px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; }
.bd-status-sub { font-size: 12px; color: var(--biz-text2); margin-top: 3px; }
.bd-status-total { text-align: right; }
.bd-status-total-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 4px; }
.bd-status-total-val { font-family: 'Cabinet Grotesk', sans-serif; font-size: 30px; font-weight: 900; color: var(--biz-text); letter-spacing: -0.03em; }

.bd-refund-pending-banner { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; background: rgba(245,166,35,0.08); border: 0.5px solid rgba(245,166,35,0.25); }
.bd-refund-pending-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(245,166,35,0.14); border: 0.5px solid rgba(245,166,35,0.25); display: flex; align-items: center; justify-content: center; color: #f5a623; flex-shrink: 0; }
.bd-refund-pending-icon svg { width: 19px; height: 19px; }
.bd-refund-pending-title { font-weight: 800; font-size: 14px; color: #f5a623; margin-bottom: 3px; }
.bd-refund-pending-sub { font-size: 12.5px; color: var(--biz-text2); }

.bd-grid { display: grid; grid-template-columns: 1fr 300px; gap: 16px; align-items: start; }
@media (max-width: 800px) { .bd-grid { grid-template-columns: 1fr; } .bd-right { order: -1; } }
.bd-left { display: flex; flex-direction: column; gap: 14px; }

.bd-card { padding: 20px 22px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); border: 0.5px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.bd-card--meta { background: rgba(0,0,0,0.15); }
.bd-card-title { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--biz-text3); }

.bd-customer-row { display: flex; align-items: center; gap: 14px; }
.bd-avatar-lg { width: 52px; height: 52px; border-radius: 50%; background: hsl(var(--av-hue, 260), 50%, 24%); border: 0.5px solid hsl(var(--av-hue, 260), 50%, 38%); color: hsl(var(--av-hue, 260), 75%, 78%); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; flex-shrink: 0; }
.bd-customer-detail { display: flex; flex-direction: column; gap: 3px; }
.bd-customer-name { font-size: 17px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; }
.bd-customer-email { font-size: 13px; color: var(--biz-violet); text-decoration: none; }
.bd-customer-email:hover { text-decoration: underline; }
.bd-customer-phone { font-size: 12px; color: var(--biz-text2); }

.bd-message-block { padding: 12px 14px; border-radius: 10px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.16); }
.bd-message-block--resolved { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
.bd-message-label { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 6px; }
.bd-message-text { font-size: 13px; color: var(--biz-text2); line-height: 1.5; white-space: pre-wrap; }
.bd-refund-amount-tag { display: inline-block; margin-top: 8px; padding: 3px 10px; border-radius: 6px; background: rgba(52,211,153,0.12); border: 0.5px solid rgba(52,211,153,0.22); color: #34d399; font-size: 12px; font-weight: 800; }

.bd-detail-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--biz-text); font-weight: 600; }
.bd-detail-row svg { width: 14px; height: 14px; color: var(--biz-text3); flex-shrink: 0; }
.bd-session-block { padding: 10px 14px; border-radius: 10px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.16); }
.bd-session-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-violet); margin-bottom: 4px; }
.bd-session-val { font-size: 13px; font-weight: 700; color: var(--biz-text); }

.bd-tickets { display: flex; flex-direction: column; border: 0.5px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; }
.bd-ticket-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 0.5px solid rgba(255,255,255,0.04); background: rgba(0,0,0,0.15); }
.bd-ticket-row:last-child { border-bottom: 0; }
.bd-ticket-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.18); display: flex; align-items: center; justify-content: center; color: var(--biz-violet); flex-shrink: 0; }
.bd-ticket-icon svg { width: 15px; height: 15px; }
.bd-ticket-info { flex: 1; }
.bd-ticket-name { font-size: 13px; font-weight: 700; color: var(--biz-text); }
.bd-ticket-type { font-size: 11px; color: var(--biz-text2); margin-top: 2px; }
.bd-ticket-prices { text-align: right; }
.bd-ticket-line { font-size: 14px; font-weight: 800; color: var(--biz-text); }
.bd-ticket-unit { font-size: 11px; color: var(--biz-text3); }

.bd-totals { display: flex; flex-direction: column; gap: 0; border-top: 0.5px solid rgba(255,255,255,0.05); padding-top: 10px; }
.bd-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--biz-text2); padding: 5px 0; }
.bd-total-green { color: #34d399; font-weight: 700; }
.bd-total-row--final { font-size: 15px; font-weight: 800; color: var(--biz-text); border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 10px; margin-top: 4px; }
.bd-empty-msg { font-size: 13px; color: var(--biz-text3); }

.bd-refund-detail-row { display: flex; align-items: center; gap: 10px; }
.bd-refund-detail-date { font-size: 12px; color: var(--biz-text3); }

.bd-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bd-meta-item { display: flex; flex-direction: column; gap: 4px; }
.bd-meta-item--wide { grid-column: 1 / -1; }
.bd-meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); }
.bd-meta-val { font-size: 13px; font-weight: 600; color: var(--biz-text); word-break: break-all; }
.bd-meta-val--mono { font-family: ui-monospace, monospace; font-size: 11px; color: var(--biz-text2); letter-spacing: 0.04em; }
.bd-meta-val--green { color: #34d399; font-weight: 700; }

.bd-right { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; }

.bd-actions-card { padding: 18px; border-radius: 18px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 8px; }
.bd-action-form { display: block; }
.bd-action-btn { width: 100%; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 11px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease; text-decoration: none; border: 0.5px solid transparent; }
.bd-action-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.bd-action-btn--primary { background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; border: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }
.bd-action-btn--primary:hover { transform: translateY(-1px); }
.bd-action-btn--ghost { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: var(--biz-text2); }
.bd-action-btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--biz-text); }
.bd-action-btn--amber { background: linear-gradient(180deg, rgba(255,200,80,0.95), rgba(245,166,35,0.9)); color: #2a1a00; border: 0; }
.bd-action-btn--amber:hover { transform: translateY(-1px); }
.bd-action-btn--red-ghost { background: transparent; border-color: rgba(248,113,113,0.2); color: rgba(248,113,113,0.75); }
.bd-action-btn--red-ghost:hover { background: rgba(248,113,113,0.08); color: #f87171; border-color: rgba(248,113,113,0.35); }
.bd-action-sep { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }

/* Resolve refund card */
.bd-resolve-card { padding: 18px; border-radius: 18px; background: rgba(245,166,35,0.05); border: 0.5px solid rgba(245,166,35,0.22); display: flex; flex-direction: column; gap: 14px; }
.bd-resolve-tabs { display: flex; gap: 6px; }
.bd-resolve-tab { flex: 1; padding: 8px 6px; border-radius: 9px; border: 0.5px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); color: var(--biz-text2); font-size: 11.5px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.15s ease; }
.bd-resolve-tab:hover { background: rgba(255,255,255,0.06); }
.bd-resolve-tab.is-active { background: var(--biz-vd); border-color: rgba(167,139,250,0.35); color: var(--biz-violet); }
.bd-resolve-note { font-size: 12.5px; color: var(--biz-text2); line-height: 1.5; margin: 0; }
.bd-resolve-note strong { color: var(--biz-text); }
.bd-resolve-label { font-size: 11px; font-weight: 700; color: var(--biz-text2); display: block; margin-bottom: 6px; }
.bd-resolve-optional { font-weight: 500; color: var(--biz-text3); }
.bd-resolve-amount-wrap { display: flex; align-items: center; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(167,139,250,0.22); border-radius: 10px; overflow: hidden; }
.bd-resolve-amount-prefix { padding: 0 10px; font-weight: 700; color: var(--biz-text2); font-size: 13px; border-right: 0.5px solid rgba(167,139,250,0.15); }
.bd-resolve-input { flex: 1; background: transparent; border: 0; color: var(--biz-text); padding: 10px 10px; font-size: 14px; outline: none; width: 100%; font-family: inherit; }
.bd-resolve-hint { font-size: 11px; color: var(--biz-text3); display: block; margin-top: 5px; }
.bd-resolve-textarea { width: 100%; box-sizing: border-box; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(167,139,250,0.2); border-radius: 10px; color: var(--biz-text); padding: 10px 12px; font-size: 13px; font-family: inherit; outline: none; resize: vertical; }
.bd-resolve-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 16px; border-radius: 12px; border: 0; font-size: 13.5px; font-weight: 800; cursor: pointer; font-family: inherit; background: linear-gradient(180deg, #3ee68a, #34d399); color: #042208; box-shadow: inset 0 1px 0 rgba(255,255,255,0.28); transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease; }
.bd-resolve-submit:hover { transform: translateY(-1px); }
.bd-resolve-submit--danger { background: linear-gradient(180deg, #fb7185, #f87171); color: #2a0606; }
.bd-resolve-submit svg { width: 15px; height: 15px; }

/* Self-contained flash messages for the bookings pages, defined
   here rather than assumed to exist elsewhere, since this file may be
   the first place flash styling is needed on these specific pages. ── */
.bl-flash-area { display: flex; flex-direction: column; gap: 8px; }
.bl-flash { padding: 11px 16px; border-radius: 12px; font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); }
.bl-flash--success { border-color: rgba(52,211,153,0.32); color: #34d399; background: rgba(52,211,153,0.06); }
.bl-flash--error { border-color: rgba(248,113,113,0.32); color: #f87171; background: rgba(248,113,113,0.06); }
.bl-flash--info { border-color: rgba(167,139,250,0.32); color: var(--biz-violet); background: var(--biz-vg); }

/* ── Resend-disabled / partial-refund info labels above the action
   button, explains WHY before the user reaches for a disabled or
   still-active button, rather than leaving them to guess. ──────────── */
.bd-action-disabled-label {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 4px;
  background: rgba(248,113,113,0.08); border: 0.5px solid rgba(248,113,113,0.22);
  color: #f87171; font-size: 12px; font-weight: 600; line-height: 1.45;
}
.bd-action-disabled-label svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

.bd-action-info-label {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 4px;
  background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.18);
  color: var(--biz-text2); font-size: 12px; font-weight: 600; line-height: 1.45;
}
.bd-action-info-label svg { width: 14px; height: 14px; color: var(--biz-violet); flex-shrink: 0; margin-top: 1px; }

.bd-action-btn--disabled {
  background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.05);
  color: var(--biz-text3); cursor: not-allowed;
}

/* Blocked refund submit, checked-in attendee, approve disabled */
.bd-resolve-submit--blocked {
  background: rgba(255,255,255,0.03) !important;
  color: var(--biz-text3) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  border: 0.5px solid rgba(255,255,255,0.06) !important;
}

/* ════════════════════════════════════════════════════════════════════════
   CATEGORY 6, CHECK-IN / SCANNER / DOOR PIN
   Violet-recolored from the admin reference. Append to bz_dashboard.css.
   ════════════════════════════════════════════════════════════════════════ */

.ci-shell { max-width: 960px; margin: 0 auto; padding: 100px 18px 80px; display: flex; flex-direction: column; gap: 18px; }
.ci-header { display: flex; align-items: center; justify-content: space-between; }
.ci-door-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-violet); font-size: 11px; font-weight: 700; }
.ci-door-badge svg { width: 13px; height: 13px; }

.ci-status-card { border-radius: 22px; padding: 30px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; border: 0.5px solid; }
.ci-status-card--valid { background: rgba(52,211,153,0.12); border-color: rgba(52,211,153,0.3); }
.ci-status-card--used { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
.ci-status-card--unpaid { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.26); }
.ci-status-card--archived { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.26); }
.ci-status-card--too_early { background: var(--biz-vg); border-color: rgba(167,139,250,0.25); }
.ci-status-card--expired, .ci-status-card--invalid, .ci-status-card--refunded { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.26); }

.ci-status-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; border: 0.5px solid rgba(255,255,255,0.1); margin-bottom: 4px; }
.ci-status-icon svg { width: 28px; height: 28px; }
.ci-status-card--archived .ci-status-icon { background: rgba(245,166,35,0.14); color: #f5a623; }
.ci-status-card--valid .ci-status-icon { background: rgba(52,211,153,0.16); color: #34d399; }
.ci-status-card--used .ci-status-icon { background: rgba(255,255,255,0.05); color: var(--biz-text2); }
.ci-status-card--unpaid .ci-status-icon { background: rgba(245,166,35,0.14); color: #f5a623; }
.ci-status-card--too_early .ci-status-icon { background: var(--biz-vd); color: var(--biz-violet); }
.ci-status-card--expired .ci-status-icon, .ci-status-card--invalid .ci-status-icon, .ci-status-card--refunded .ci-status-icon { background: rgba(248,113,113,0.12); color: #f87171; }

.ci-status-label { font-size: 22px; font-weight: 900; color: var(--biz-text); letter-spacing: -0.02em; }
.ci-grace-tag {
  display: inline-flex; align-items: center; margin-left: 8px; vertical-align: middle;
  font-size: 11px; font-weight: 700; color: #f5a623;
  background: rgba(245,166,35,0.1); border: 0.5px solid rgba(245,166,35,0.28);
  padding: 3px 9px; border-radius: 999px;
}
.ci-grace-tag--late {
  color: #60a5fa;
  background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.28);
}
.ci-status-sub { font-size: 14px; color: var(--biz-text2); max-width: 400px; line-height: 1.5; }

.ci-grid { display: grid; grid-template-columns: 1fr 300px; gap: 16px; align-items: start; }
@media (max-width: 768px) { .ci-grid { grid-template-columns: 1fr; } .ci-right { order: -1; } }
.ci-left { display: flex; flex-direction: column; gap: 14px; }

.ci-card { padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 12px; }
.ci-card-title { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--biz-text3); }

.ci-info-row { display: flex; align-items: center; gap: 14px; }
.ci-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-violet); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; }
.ci-info-block { display: flex; flex-direction: column; gap: 3px; }
.ci-info-name { font-size: 16px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; }
.ci-info-email { font-size: 13px; color: var(--biz-text2); }
.ci-info-phone { font-size: 12px; color: var(--biz-text3); }

.ci-detail-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--biz-text); font-weight: 600; }
.ci-detail-row svg { width: 14px; height: 14px; color: var(--biz-text3); flex-shrink: 0; }
.ci-session-block { padding: 10px 12px; border-radius: 10px; background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.16); }
.ci-session-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-violet); margin-bottom: 4px; }
.ci-session-time { font-size: 13px; font-weight: 700; color: var(--biz-text); }

.ci-ticket-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 0.5px solid rgba(255,255,255,0.04); }
.ci-ticket-row:last-of-type { border-bottom: 0; }
.ci-ticket-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--biz-text); }
.ci-ticket-qty { font-size: 12px; color: var(--biz-text2); font-weight: 700; }
.ci-ticket-price { font-size: 13px; font-weight: 800; color: var(--biz-text); min-width: 50px; text-align: right; }
.ci-ticket-total { display: flex; justify-content: space-between; padding-top: 10px; font-size: 13px; color: var(--biz-text2); font-weight: 600; }
.ci-ticket-total-val { font-size: 16px; font-weight: 900; color: var(--biz-text); }

.ci-payment-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ci-payment-method { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--biz-text); }
.ci-payment-method svg { width: 15px; height: 15px; color: var(--biz-text2); }
.ci-payment-status { font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 6px; text-transform: capitalize; }
.ci-payment-status--paid { background: rgba(52,211,153,0.12); color: #34d399; border: 0.5px solid rgba(52,211,153,0.22); }
.ci-payment-status--cash_pending { background: rgba(245,166,35,0.1); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.22); }
.ci-payment-status--unpaid, .ci-payment-status--pending, .ci-payment-status--refunded { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.2); }

.ci-ref-row { display: flex; align-items: center; gap: 10px; font-size: 12px; padding-top: 4px; }
.ci-ref-label { color: var(--biz-text3); font-weight: 600; min-width: 80px; }
.ci-ref-val { font-family: ui-monospace, monospace; color: var(--biz-violet); font-size: 11px; letter-spacing: 0.06em; font-weight: 700; }
.ci-ref-row--checked { color: #34d399; font-weight: 700; padding: 8px 10px; background: rgba(52,211,153,0.07); border: 0.5px solid rgba(52,211,153,0.16); border-radius: 8px; }
.ci-ref-row--checked svg { width: 13px; height: 13px; }

.ci-right { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 100px; }
.ci-alert { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: 12px; font-size: 13px; font-weight: 600; }
.ci-alert--success { background: rgba(52,211,153,0.1); border: 0.5px solid rgba(52,211,153,0.22); color: #34d399; }
.ci-alert--error { background: rgba(248,113,113,0.1); border: 0.5px solid rgba(248,113,113,0.22); color: #f87171; }
.ci-alert--info { background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.2); color: var(--biz-violet); }

.ci-action-card { padding: 16px; border-radius: 16px; display: flex; flex-direction: column; gap: 12px; border: 0.5px solid; }
.ci-action-card--green { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.28); }
.ci-action-card--amber { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.28); }
.ci-action-card--muted { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }
.ci-action-card-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 0.5px solid rgba(255,255,255,0.08); }
.ci-action-card-icon svg { width: 17px; height: 17px; }
.ci-action-card--green .ci-action-card-icon { background: rgba(52,211,153,0.12); color: #34d399; }
.ci-action-card--amber .ci-action-card-icon { background: rgba(245,166,35,0.12); color: #f5a623; }
.ci-action-card--muted .ci-action-card-icon { background: rgba(255,255,255,0.04); color: var(--biz-text3); }
.ci-action-card-title { font-size: 14px; font-weight: 800; color: var(--biz-text); margin-bottom: 3px; }
.ci-action-card-sub { font-size: 12px; color: var(--biz-text2); line-height: 1.45; }
.ci-days-used { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ci-days-used-chip {
  font-size: 11px; font-weight: 700; color: #34d399;
  background: rgba(52,211,153,0.1); border: 0.5px solid rgba(52,211,153,0.25);
  padding: 3px 9px; border-radius: 999px;
}

/* Manual check-in confirmation modal, self-contained, this page
   doesn't load any of the other stylesheets where these classes
   already exist. */
.bec-qty-confirm-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(7,6,14,0.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.bec-qty-confirm-modal {
  width: 100%; max-width: 400px;
  background: var(--biz-bg); border: 0.5px solid rgba(245,166,35,0.28);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bec-qty-confirm-title { font-size: 15px; font-weight: 800; color: var(--biz-text); margin: 0 0 14px; }
.bec-qty-confirm-note { font-size: 12.5px; color: var(--biz-text2); line-height: 1.6; }
.bec-qty-confirm-actions { display: flex; gap: 10px; margin-top: 18px; }
.bec-qty-confirm-btn {
  flex: 1; padding: 10px; border-radius: 10px; font-size: 13px; font-weight: 700;
  cursor: pointer; border: 0.5px solid transparent; transition: opacity 0.15s ease;
}
.bec-qty-confirm-btn:hover { opacity: 0.85; }
.bec-qty-confirm-btn--cancel { background: rgba(255,255,255,0.05); color: var(--biz-text2); border-color: rgba(255,255,255,0.1); }
.bec-qty-confirm-btn--confirm { background: #f5a623; color: #1e0a02; }

.ci-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 13px 16px; border-radius: 12px; border: 0; font-size: 14px; font-weight: 800; cursor: pointer; font-family: inherit; transition: all 0.2s ease; margin-top: 4px; }
.ci-btn svg { width: 15px; height: 15px; }
.ci-btn--green { background: linear-gradient(180deg, #3ee68a, #34d399); color: #042208; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }
.ci-btn--green:hover { transform: translateY(-1px); }
.ci-btn--amber { background: linear-gradient(180deg, rgba(255,200,80,0.95), rgba(245,166,35,0.9)); color: #2a1a00; }
.ci-btn--amber:hover { transform: translateY(-1px); }

.ci-manual-form { display: flex; flex-direction: column; gap: 0; }
.ci-manual-reason {
  width: 100%; box-sizing: border-box; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(245,166,35,0.25);
  border-radius: 10px; color: var(--biz-text); padding: 10px 12px; font-size: 13px; font-family: inherit;
  outline: none; resize: vertical; min-height: 54px;
}
.ci-manual-reason::placeholder { color: var(--biz-text3); }

.ci-history-card { padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.06); }
.ci-history-title { font-size: 12.5px; font-weight: 800; color: var(--biz-text2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.ci-history-row { display: flex; gap: 10px; padding: 10px 0; border-top: 0.5px solid rgba(255,255,255,0.06); }
.ci-history-row:first-child { border-top: none; padding-top: 0; }
.ci-history-row-icon {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52,211,153,0.12); color: #34d399;
}
.ci-history-row-icon svg { width: 13px; height: 13px; }
.ci-history-row--manual .ci-history-row-icon { background: rgba(245,166,35,0.12); color: #f5a623; }
.ci-history-row-top { font-size: 12.5px; font-weight: 700; color: var(--biz-text); }
.ci-history-row-by { font-size: 10.5px; font-weight: 600; color: var(--biz-text3); margin-left: 6px; text-transform: capitalize; }
.ci-history-row-reason { font-size: 11.5px; color: var(--biz-text2); line-height: 1.5; margin-top: 2px; }
.ci-history-row--manual .ci-history-row-reason { color: #f5a623; }
.ci-btn--disabled { background: rgba(255,255,255,0.05); color: var(--biz-text3); cursor: not-allowed; }

.ci-scan-again { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 12px; border: 0.5px solid rgba(167,139,250,0.18); background: var(--biz-vd); color: var(--biz-violet); font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s ease; }
.ci-scan-again:hover { background: rgba(167,139,250,0.16); }
.ci-scan-again svg { width: 15px; height: 15px; }

/* ════════════════════════════════════════════════════════════════════════
   SCANNER PAGE
   ════════════════════════════════════════════════════════════════════════ */

.sc-shell { max-width: 640px; margin: 0 auto; padding: 100px 18px 80px; display: flex; flex-direction: column; gap: 18px; }
.sc-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sc-header-center { text-align: center; flex: 1; }
.sc-event-name { font-size: 15px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; }
.sc-event-sub { font-size: 11px; color: var(--biz-text3); margin-top: 2px; }
.sc-bookings-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--biz-text2); text-decoration: none; }
.sc-bookings-link:hover { color: var(--biz-text); }
.sc-bookings-link svg { width: 14px; height: 14px; }

.sc-counter-card { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-radius: 20px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); }

.sc-session-list-card { padding: 18px 20px; border-radius: 20px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07); }
.sc-session-list-head { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; font-weight: 800; color: var(--biz-text2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.sc-session-list-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-top: 0.5px solid rgba(255,255,255,0.06); }
.sc-session-list-row:first-child { border-top: none; padding-top: 0; }
.sc-session-list-time { font-size: 14px; font-weight: 700; color: var(--biz-text); }
.sc-session-list-count { font-size: 13px; font-weight: 700; color: var(--biz-violet); }
.sc-session-list-empty { font-size: 12.5px; color: var(--biz-text3); padding: 8px 0; }
.sc-counter-donut { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.sc-donut-svg { width: 80px; height: 80px; transform: rotate(-90deg); }
#scDonutArc { transition: stroke-dashoffset 0.8s cubic-bezier(0.4,0,0.2,1); }
.sc-counter-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; display: flex; flex-direction: column; line-height: 1; }
.sc-counter-val { font-size: 22px; font-weight: 900; color: var(--biz-text); letter-spacing: -0.02em; }
.sc-counter-sep { font-size: 10px; color: var(--biz-text3); font-weight: 600; }
.sc-counter-cap { font-size: 12px; color: var(--biz-text2); font-weight: 700; }
.sc-counter-info { flex: 1; }
.sc-counter-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 4px; }
.sc-counter-sub { font-size: 14px; font-weight: 700; color: var(--biz-text); }
.sc-live-dot { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #34d399; flex-shrink: 0; }
.sc-live-indicator { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: bizPing 1.8s ease-in-out infinite; }

.sc-scanner-card { border-radius: 22px; background: rgba(10,8,22,0.7); border: 0.5px solid rgba(167,139,250,0.2); overflow: hidden; display: flex; flex-direction: column; }
.sc-camera-wrap { position: relative; width: 100%; aspect-ratio: 1/1; background: #000; overflow: hidden; max-height: 380px; }
#scanner-video { width: 100%; height: 100%; object-fit: cover; display: none; }
.sc-idle { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(5,4,12,0.95); }
.sc-idle-icon { width: 72px; height: 72px; border-radius: 20px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.2); display: flex; align-items: center; justify-content: center; color: var(--biz-violet); }
.sc-idle-icon svg { width: 32px; height: 32px; }
.sc-idle-text { font-size: 16px; font-weight: 800; color: var(--biz-text); }
.sc-idle-sub { font-size: 13px; color: var(--biz-text2); }

.sc-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; background: rgba(0,0,0,0.35); }
.sc-reticle { position: relative; width: 200px; height: 200px; }
.sc-corner { position: absolute; width: 28px; height: 28px; border-color: var(--biz-violet); border-style: solid; border-width: 0; }
.sc-corner--tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 4px 0 0 0; }
.sc-corner--tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 4px 0 0; }
.sc-corner--bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 4px; }
.sc-corner--br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 4px 0; }
.sc-scan-line { position: absolute; top: 10%; left: 5%; right: 5%; height: 2px; background: linear-gradient(90deg, transparent, var(--biz-violet), transparent); animation: scScanAnim 2s ease-in-out infinite; }
@keyframes scScanAnim { 0%,100% { top: 10%; opacity: 1; } 50% { top: 88%; opacity: 0.8; } }
.sc-overlay-label { font-size: 13px; font-weight: 700; color: rgba(237,232,255,0.8); letter-spacing: 0.06em; text-transform: uppercase; }

.sc-flash { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.15s ease; }
.sc-flash--ok { background: rgba(52,211,153,0.4); }
.sc-flash--fail { background: rgba(248,113,113,0.4); }

.sc-status-bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; font-size: 13px; font-weight: 600; border-top: 0.5px solid rgba(255,255,255,0.05); }
.sc-status-icon svg { width: 16px; height: 16px; }
.sc-status-bar--idle { color: var(--biz-text2); }
.sc-status-bar--scanning { color: var(--biz-violet); }
.sc-status-bar--success { color: #34d399; }
.sc-status-bar--error { color: #f87171; }
.sc-status-text { flex: 1; }

.sc-controls { padding: 14px 18px 18px; display: flex; gap: 10px; }
.sc-start-btn, .sc-stop-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s ease; border: 0; }
.sc-start-btn { flex: 1; justify-content: center; background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }
.sc-start-btn:hover { transform: translateY(-1px); }
.sc-start-btn svg, .sc-stop-btn svg { width: 16px; height: 16px; }
.sc-stop-btn { background: rgba(248,113,113,0.1); border: 0.5px solid rgba(248,113,113,0.22); color: #f87171; padding: 12px 16px; }
.sc-stop-btn:hover { background: rgba(248,113,113,0.18); }

.sc-recent-title { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--biz-text3); margin-bottom: 10px; }
.sc-recent-list { display: flex; flex-direction: column; gap: 6px; }
.sc-recent-item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 10px; font-size: 12px; font-weight: 600; border: 0.5px solid; }
.sc-recent-item--ok { background: rgba(52,211,153,0.06); border-color: rgba(52,211,153,0.14); }
.sc-recent-item--fail { background: rgba(248,113,113,0.06); border-color: rgba(248,113,113,0.14); }
.sc-recent-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sc-recent-item--ok .sc-recent-dot { background: #34d399; }
.sc-recent-item--fail .sc-recent-dot { background: #f87171; }
.sc-recent-ref { flex: 1; color: var(--biz-text); font-family: ui-monospace, monospace; letter-spacing: 0.04em; }
.sc-recent-time { color: var(--biz-text3); font-size: 11px; }

/* Inline scan-result card, slides up over the camera feed instead
   of a full-page redirect per scan, so staff can keep scanning. ────── */
.sc-result-card {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 10;
  background: rgba(14,11,28,0.97); backdrop-filter: blur(20px);
  border: 0.5px solid rgba(167,139,250,0.3); border-radius: 18px;
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: scResultSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes scResultSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sc-result-head { display: flex; align-items: center; justify-content: space-between; }
.sc-result-status-pill { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.sc-result-status-pill--ok { background: rgba(52,211,153,0.16); color: #34d399; }
.sc-result-status-pill--fail { background: rgba(248,113,113,0.16); color: #f87171; }
.sc-result-close { width: 26px; height: 26px; border-radius: 8px; border: 0; background: rgba(255,255,255,0.06); color: var(--biz-text2); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.sc-result-close svg { width: 13px; height: 13px; }
.sc-result-name { font-size: 17px; font-weight: 800; color: var(--biz-text); }
.sc-result-ref { font-family: ui-monospace, monospace; font-size: 11px; color: var(--biz-violet); letter-spacing: 0.05em; }
.sc-result-grace-note {
  font-size: 12px; color: #f5a623; line-height: 1.5; margin-top: 6px;
  background: rgba(245,166,35,0.08); border: 0.5px solid rgba(245,166,35,0.22);
  border-radius: 10px; padding: 8px 11px;
}
.sc-result-grace-note--late {
  color: #60a5fa;
  background: rgba(96,165,250,0.08); border-color: rgba(96,165,250,0.22);
}
.sc-result-tickets { display: flex; gap: 6px; flex-wrap: wrap; }
.sc-result-tix-tag { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--biz-vd); color: var(--biz-violet); border: 0.5px solid rgba(167,139,250,0.2); }
.sc-result-actions { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.sc-result-detail-link { font-size: 12px; color: var(--biz-text2); text-decoration: none; text-align: center; }
.sc-result-detail-link:hover { color: var(--biz-text); }

/* ════════════════════════════════════════════════════════════════════════
   DOOR PIN ENTRY PAGE
   ════════════════════════════════════════════════════════════════════════ */

.dp-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.dp-card { width: 100%; max-width: 380px; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(167,139,250,0.25); border-radius: 24px; padding: 32px 28px; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.dp-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25); display: flex; align-items: center; justify-content: center; color: var(--biz-violet); }
.dp-icon svg { width: 26px; height: 26px; }
.dp-title { font-size: 22px; font-weight: 800; color: var(--biz-text); margin: 0 0 6px; }
.dp-sub { font-size: 13px; color: var(--biz-text2); margin: 0 0 14px; }
.dp-event-tag { display: inline-block; padding: 5px 14px; border-radius: 999px; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.08); color: var(--biz-text); font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.dp-flash-area { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.dp-flash { padding: 9px 14px; border-radius: 10px; font-size: 12.5px; font-weight: 600; }
.dp-flash--success { background: rgba(52,211,153,0.1); color: #34d399; border: 0.5px solid rgba(52,211,153,0.25); }
.dp-flash--error { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.25); }
.dp-form { display: flex; flex-direction: column; gap: 14px; }
.dp-pin-input { width: 100%; box-sizing: border-box; text-align: center; font-size: 26px; font-weight: 800; letter-spacing: 0.5em; padding: 16px 10px 16px 18px; border-radius: 14px; background: rgba(0,0,0,0.3); border: 0.5px solid rgba(167,139,250,0.25); color: var(--biz-text); outline: none; font-family: inherit; }
.dp-pin-input:focus { border-color: rgba(167,139,250,0.6); box-shadow: 0 0 0 4px rgba(167,139,250,0.1); }
.dp-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 20px; border-radius: 14px; border: 0; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; background: linear-gradient(180deg, #c4b5fd, var(--biz-violet)); color: #1e0a4a; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); transition: all 0.2s ease; }
.dp-submit:hover { transform: translateY(-1px); }
.dp-submit svg { width: 16px; height: 16px; }
.dp-hint { font-size: 11.5px; color: var(--biz-text3); line-height: 1.5; margin: 16px 0 0; }

/* ════════════════════════════════════════════════════════════════════════
   READ-ONLY TICKET VIEW (public, no access)
   ════════════════════════════════════════════════════════════════════════ */

.tv-status-row { margin-bottom: 12px; }
.tv-status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.tv-status-pill svg { width: 14px; height: 14px; }
.tv-status-pill--ok { background: rgba(52,211,153,0.14); color: #34d399; border: 0.5px solid rgba(52,211,153,0.28); }
.tv-status-pill--warn { background: rgba(245,166,35,0.12); color: #f5a623; border: 0.5px solid rgba(245,166,35,0.26); }
.tv-status-pill--info { background: var(--biz-vd); color: var(--biz-violet); border: 0.5px solid rgba(167,139,250,0.25); }
.tv-status-pill--fail { background: rgba(248,113,113,0.12); color: #f87171; border: 0.5px solid rgba(248,113,113,0.26); }
.tv-status-pill--muted { background: rgba(255,255,255,0.05); color: var(--biz-text2); border: 0.5px solid rgba(255,255,255,0.08); display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.tv-note { font-size: 12.5px; color: var(--biz-text3); margin: 12px 0 0; }

/* ════════════════════════════════════════════════════════════════════════
   SCANNER HUB, event picker page
   ════════════════════════════════════════════════════════════════════════ */

.sc-hub-list { display: flex; flex-direction: column; gap: 10px; }

.sc-hub-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 18px; text-decoration: none;
  background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.07);
  transition: all 0.2s ease;
}
.sc-hub-row:hover {
  background: var(--biz-vg); border-color: rgba(167,139,250,0.25);
  transform: translateY(-1px);
}

.sc-hub-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--biz-violet);
}
.sc-hub-icon svg { width: 20px; height: 20px; }

.sc-hub-info { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sc-hub-name { font-size: 15px; font-weight: 800; color: var(--biz-text); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-hub-date { font-size: 12px; color: var(--biz-text2); font-weight: 600; }
.sc-hub-loc { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--biz-text3); font-weight: 600; }
.sc-hub-loc svg { width: 11px; height: 11px; flex-shrink: 0; }

.sc-hub-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sc-hub-count { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--biz-text2); white-space: nowrap; }

.sc-hub-session-rows { padding: 0 20px 14px; display: flex; flex-direction: column; gap: 4px; }
.sc-hub-session-row { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--biz-text3); padding: 3px 0; }
.sc-hub-session-row span:last-child { font-weight: 700; color: var(--biz-text2); }
.sc-hub-session-row--passed { opacity: 0.5; }
.sc-hub-count svg { width: 13px; height: 13px; }
.sc-hub-arrow { width: 16px; height: 16px; color: var(--biz-violet); opacity: 0.6; }
.sc-hub-row:hover .sc-hub-arrow { opacity: 1; transform: translateX(2px); transition: all 0.2s ease; }

/* ── Door PIN block in event manage widget ──────────────────────────────── */
.ci-door-pin-block { background: var(--biz-vg); border: 0.5px solid rgba(167,139,250,0.22); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.ci-door-pin-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ci-door-pin-digits { font-family: ui-monospace, monospace; font-size: 28px; font-weight: 900; letter-spacing: 0.35em; color: var(--biz-violet); }
.ci-door-link-row { display: flex; flex-direction: column; gap: 6px; border-top: 0.5px solid rgba(255,255,255,0.06); padding-top: 12px; }
.ci-door-link-label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--biz-text2); text-transform: uppercase; letter-spacing: 0.08em; }
.ci-door-link-label svg { width: 12px; height: 12px; }
.ci-door-link-wrap { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px; background: rgba(0,0,0,0.25); border: 0.5px solid rgba(255,255,255,0.07); }
.ci-door-link-text { flex: 1; font-size: 11px; font-family: ui-monospace, monospace; color: var(--biz-violet); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ci-door-copy-btn { width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px; border: 0.5px solid rgba(167,139,250,0.25); background: var(--biz-vd); color: var(--biz-violet); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.15s ease; }
.ci-door-copy-btn:hover { background: rgba(167,139,250,0.18); }
.ci-door-copy-btn svg { width: 12px; height: 12px; }


/* Category 7 notification additions
   Bassy Events admin message rows, violet shield accent, Bassy Events sender tag */
.biz-notif-row--mkctv .biz-notif-row-content { border-left: 2px solid rgba(167,139,250,0.5); }
.biz-notif-row-icon--mkctv { background: var(--biz-vd) !important; color: var(--biz-violet) !important; border-color: rgba(167,139,250,0.25) !important; }
.biz-notif-row-cat--mkctv { display: inline-flex; align-items: center; gap: 4px; color: var(--biz-violet); font-weight: 700; font-size: 10px; }

/* 7-day auto-dismiss label at bottom of drawer */
.biz-notif-auto-label { font-size: 10.5px; color: var(--biz-text3); text-align: center; padding: 12px 16px 4px; opacity: 0.7; }


/* Category 7 notification additions
   Bassy Events admin message rows, violet shield accent, Bassy Events sender tag */
.biz-notif-row--mkctv .biz-notif-row-content { border-left: 2px solid rgba(167,139,250,0.5); }
.biz-notif-row-icon--mkctv { background: var(--biz-vd) !important; color: var(--biz-violet) !important; border-color: rgba(167,139,250,0.25) !important; }
.biz-notif-row-cat--mkctv { display: inline-flex; align-items: center; gap: 4px; color: var(--biz-violet); font-weight: 700; font-size: 10px; }

/* 7-day auto-dismiss label at bottom of drawer */
.biz-notif-auto-label { font-size: 10.5px; color: var(--biz-text3); text-align: center; padding: 12px 16px 4px; opacity: 0.7; }

/* Platform settings, Bassy Events fee read-only notice */
.ps-mkctv-fee-notice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: 11px; margin-bottom: 16px;
  background: rgba(167,139,250,0.06);
  border: 0.5px solid rgba(167,139,250,0.2);
  color: var(--biz-text2, rgba(237,232,255,0.55));
}
.ps-mkctv-fee-notice > svg {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px;
  color: var(--biz-violet, #a78bfa);
}
.ps-mkctv-fee-notice > div { display: flex; flex-direction: column; gap: 2px; }
.ps-mkctv-fee-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--biz-text3, rgba(237,232,255,0.3));
}
.ps-mkctv-fee-val {
  font-size: 14px; font-weight: 800;
  color: var(--biz-violet, #a78bfa);
  letter-spacing: -0.01em;
}
.ps-mkctv-fee-hint {
  font-size: 11.5px; color: var(--biz-text3, rgba(237,232,255,0.3));
  line-height: 1.45; margin-top: 2px;
}
/* Shared flash message styling, moved here from page-specific files so
   ANY business page can render flash messages consistently, not just
   Finance/Profile. Dashboard and others were missing this entirely. ── */
.bfn-flash { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 12px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.bfn-flash svg { width: 16px; height: 16px; flex-shrink: 0; }
.bfn-flash--success { background: rgba(52,211,153,0.1); border: 0.5px solid rgba(52,211,153,0.3); color: #34d399; }
.bfn-flash--error   { background: rgba(248,113,113,0.1); border: 0.5px solid rgba(248,113,113,0.3); color: #f87171; }
.bfn-flash--info    { background: rgba(167,139,250,0.08); border: 0.5px solid rgba(167,139,250,0.25); color: #a78bfa; }




/* ── Add position:relative to your existing .biz-di-logo-wrap rule ── */
.biz-di-logo-wrap { position: relative; }

/* Data export "Live Activity" ring, hidden entirely at idle */
.biz-di-export-ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.biz-di-logo-wrap.is-exporting .biz-di-export-ring,
.biz-di-logo-wrap.is-complete .biz-di-export-ring,
.biz-di-logo-wrap.is-cancelled .biz-di-export-ring {
  opacity: 1;
}
.biz-di-export-ring-track { stroke: rgba(255, 255, 255, 0.08); }
.biz-di-export-ring-fill {
  stroke: #a78bfa;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease, stroke 0.4s ease;
}
.biz-di-logo-wrap.is-exporting .biz-di-export-ring-fill {
  animation: bizExportPulse 1.6s ease-in-out infinite;
}
.biz-di-logo-wrap.is-complete .biz-di-export-ring-fill { stroke: #34d399; animation: none; }
.biz-di-logo-wrap.is-cancelled .biz-di-export-ring-fill { stroke: #f87171; animation: none; }
@keyframes bizExportPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

#bizDiBrand { cursor: default; }

.biz-export-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  background: rgba(12, 9, 26, 0.98);
  backdrop-filter: blur(16px);
  border: 0.5px solid rgba(167, 139, 250, 0.25);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  padding: 14px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.22s;
  z-index: 200;
}
.biz-export-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.biz-export-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.biz-export-panel-title { font-size: 13px; font-weight: 700; color: #fff; }
.biz-export-panel-close { background: none; border: none; color: rgba(237, 232, 255, 0.5); cursor: pointer; padding: 2px; display: flex; }
.biz-export-panel-close svg { width: 14px; height: 14px; }
.biz-export-progress-track { width: 100%; height: 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin-bottom: 8px; }
.biz-export-progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #a78bfa, #7c3aed); transition: width 0.5s ease; }
.biz-export-panel-meta { font-size: 11.5px; color: rgba(237, 232, 255, 0.55); margin-bottom: 12px; }
.biz-export-panel-actions { display: flex; gap: 8px; }
.biz-export-cancel-btn {
  flex: 1; padding: 8px 12px; border-radius: 9px;
  background: rgba(248, 113, 113, 0.1); border: 0.5px solid rgba(248, 113, 113, 0.25);
  color: #f87171; font-size: 12.5px; font-weight: 700; cursor: pointer;
}
.biz-export-download-btn {
  flex: 1; padding: 8px 12px; border-radius: 9px;
  background: linear-gradient(180deg, #34d399, #10b981); color: #05261c;
  font-size: 12.5px; font-weight: 800; text-align: center; text-decoration: none; display: block;
}

/* ── The "Export my data" trigger + modal (for wherever you place _data_export.html) ── */
.biz-export-trigger-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 11px;
  background: rgba(167,139,250,0.08); border: 0.5px solid rgba(167,139,250,0.25);
  color: #c4b5fd; font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit;
}
.biz-export-trigger-btn svg { width: 15px; height: 15px; }

.biz-export-modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(5,4,12,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s;
}
.biz-export-modal-overlay.is-open { opacity: 1; visibility: visible; }
.biz-export-modal {
  width: 420px; max-width: calc(100vw - 32px);
  background: rgba(14,11,28,0.98); border: 0.5px solid rgba(167,139,250,0.2);
  border-radius: 20px; padding: 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.biz-export-modal-overlay.is-open .biz-export-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.biz-export-state {
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.biz-export-state.is-measuring {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.biz-export-state.is-entering {
  opacity: 0;
  transform: scale(0.97) translateY(4px);
}
.biz-export-state.is-leaving {
  opacity: 0;
  transform: scale(0.98) translateY(-4px);
}
.biz-export-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.biz-export-modal-head h3 { margin: 0; font-size: 17px; font-weight: 800; color: #fff; }
.biz-export-modal-close { background: none; border: none; color: rgba(237,232,255,0.5); cursor: pointer; }
.biz-export-modal-close svg { width: 16px; height: 16px; }
.biz-export-modal-sub { font-size: 12.5px; color: rgba(237,232,255,0.5); margin: 0 0 16px; line-height: 1.5; }
.biz-export-field-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(237,232,255,0.4); margin: 14px 0 8px; }
.biz-export-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.biz-export-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #ede8ff; cursor: pointer; }
.biz-export-format-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.biz-export-format-note {
  font-size: 11px; color: rgba(237,232,255,0.4); margin: 8px 0 0;
}
.biz-export-format-note--positive { color: #34d399; }
.biz-export-format-opt input { position: absolute; opacity: 0; }
.biz-export-format-opt--disabled { cursor: not-allowed; opacity: 0.5; }
.biz-export-format-opt--disabled .biz-export-format-card { cursor: not-allowed; }
.biz-export-format-card { display: block; padding: 12px 14px; border-radius: 12px; cursor: pointer; background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.1); }
.biz-export-format-opt input:checked + .biz-export-format-card { border-color: #a78bfa; background: rgba(167,139,250,0.08); }
.biz-export-format-card strong { display: block; font-size: 13px; color: #fff; margin-bottom: 3px; }
.biz-export-format-card small { font-size: 11px; color: rgba(237,232,255,0.5); line-height: 1.4; }
.biz-export-continue-btn, .biz-export-confirm-btn {
  width: 100%; margin-top: 20px; padding: 13px; border-radius: 12px; border: 0;
  background: linear-gradient(180deg, #c4b5fd, #a78bfa); color: #1e0a4a;
  font-size: 14px; font-weight: 800; cursor: pointer;
}
.biz-export-confirm-card { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; }
.biz-export-confirm-row { display: flex; justify-content: space-between; font-size: 13px; color: #ede8ff; padding: 4px 0; }
.biz-export-confirm-row span:first-child { color: rgba(237,232,255,0.5); }
.biz-export-confirm-actions { display: flex; gap: 10px; margin-top: 20px; }
.biz-export-back-btn {
  flex: 1; padding: 13px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.12); color: rgba(237,232,255,0.7);
  font-size: 13px; font-weight: 700;
}
.biz-export-confirm-btn { flex: 2; margin-top: 0; }


.lilka-trademark-footer {
  width: 100%;
  padding: 18px 24px;
  background: rgba(167, 139, 250, 0.06);
  border-top: 0.5px solid rgba(167, 139, 250, 0.18);
  margin-top: 40px;
}
.lilka-trademark-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lilka-trademark-mark {
  font-size: 15px;
  font-weight: 800;
  color: #a78bfa;
  flex-shrink: 0;
  align-content: center;
}
.lilka-trademark-text {
  font-size: 12.5px;
  color: rgba(237, 232, 255, 0.55);
  line-height: 1.5;
  margin-right: 8%;
}
.lilka-trademark-text strong {
  color: #c4b5fd;
  font-weight: 700;
}
@media (max-width: 640px) {
  .lilka-trademark-footer { padding: 16px 18px; }
  .lilka-trademark-text { font-size: 11.5px; }
}
 

/* ══════════════════════════════════════════════════════════════════════
   BOOKINGS PAGE, attendee resolution column, feature toggles, resolve modal
   ══════════════════════════════════════════════════════════════════════ */

.bl-resolution-pill {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  white-space: nowrap;
}
.bl-resolution-pill--no_show   { background: rgba(248,113,113,0.1); color: #f87171; border: 0.5px solid rgba(248,113,113,0.25); }
.bl-resolution-pill--attended  { background: rgba(52,211,153,0.1); color: #34d399; border: 0.5px solid rgba(52,211,153,0.25); }
.bl-resolution-pill--cancelled { background: rgba(255,255,255,0.05); color: var(--biz-text2); border: 0.5px solid rgba(255,255,255,0.12); }
.bl-resolution-pill--refunded  { background: rgba(167,139,250,0.1); color: var(--biz-violet); border: 0.5px solid rgba(167,139,250,0.25); }

.bl-resolution-confirm-btn {
  padding: 7px 14px; border-radius: 9px;
  background: rgba(167,139,250,0.1); border: 0.5px solid rgba(167,139,250,0.25);
  color: var(--biz-violet); font-size: 12px; font-weight: 700; cursor: pointer;
  white-space: nowrap;
}
.bl-resolution-confirm-btn:hover { background: rgba(167,139,250,0.18); }

.bl-resolution-cell-dash { color: var(--biz-text2); }

/* ── Feature toggle panel ────────────────────────────────────────────── */
.bl-features-panel {
  margin-bottom: 16px;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.bl-features-toggle-btn {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.02);
  border: none;
  color: var(--biz-text2);
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.bl-features-toggle-btn svg:first-child { width: 15px; height: 15px; flex-shrink: 0; }
.bl-features-toggle-chevron { width: 14px; height: 14px; margin-left: auto; transition: transform 0.2s ease; }
.bl-features-body { padding: 4px 16px 14px; display: flex; flex-direction: column; gap: 4px; }

.bl-feature-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.bl-feature-row:first-child { border-top: none; }
.bl-feature-info { display: flex; flex-direction: column; gap: 2px; }
.bl-feature-label { font-size: 13px; font-weight: 700; color: var(--biz-text); }

.bem-grandfathered-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(245, 166, 35, 0.12);
  color: #f5a623;
  vertical-align: middle;
}

.bem-limit-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.06);
  border: 0.5px solid rgba(245, 166, 35, 0.2);
  font-size: 12.5px;
  color: #f5a623;
  line-height: 1.5;
}
.bem-limit-banner svg { width: 16px; height: 16px; flex-shrink: 0; }
.bl-feature-desc { font-size: 11.5px; color: var(--biz-text2); line-height: 1.4; max-width: 480px; }
.bl-feature-form { flex-shrink: 0; }

.bl-feature-switch {
  width: 42px; height: 24px; border-radius: 50px;
  background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.15);
  position: relative; cursor: pointer; padding: 0; transition: background 0.2s ease;
}
.bl-feature-switch.is-on { background: var(--biz-violet); border-color: var(--biz-violet); }
.bl-feature-switch:disabled { opacity: 0.4; cursor: not-allowed; }
.bl-feature-switch-knob {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; transition: transform 0.2s var(--biz-spring);
}
.bl-feature-switch.is-on .bl-feature-switch-knob { transform: translateX(18px); }

/* ── Resolve modal ────────────────────────────────────────────────────── */
.bl-resolve-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.bl-resolve-modal-overlay.is-open { opacity: 1; pointer-events: all; }
.bl-resolve-modal {
  background: rgba(12,9,26,0.98);
  border: 0.5px solid rgba(167,139,250,0.2);
  border-radius: 20px; padding: 26px;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s var(--biz-spring);
}
.bl-resolve-modal-overlay.is-open .bl-resolve-modal { transform: translateY(0) scale(1); }
.bl-resolve-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.bl-resolve-modal-head h3 { font-size: 17px; font-weight: 800; color: var(--biz-text); margin: 0; }
.bl-resolve-modal-close { background: none; border: none; color: var(--biz-text2); cursor: pointer; }
.bl-resolve-modal-close svg { width: 16px; height: 16px; }
.bl-resolve-modal-sub { font-size: 12.5px; color: var(--biz-text2); line-height: 1.5; margin: 0 0 18px; }
.bl-resolve-modal-sub strong { color: var(--biz-text); }

.bl-resolve-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bl-resolve-option {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: 11px;
  background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.1);
  cursor: pointer; font-size: 13px; color: var(--biz-text2);
  transition: border-color 0.15s, background 0.15s;
}
.bl-resolve-option input { position: absolute; opacity: 0; }
.bl-resolve-option.is-selected { border-color: var(--biz-violet); background: rgba(167,139,250,0.08); color: var(--biz-text); }

.bl-resolve-modal-label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--biz-text2); margin: 16px 0 8px;
}
.bl-resolve-modal-textarea {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 10px 12px; color: var(--biz-text);
  font-family: inherit; font-size: 13px; resize: vertical;
}
.bl-resolve-modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.bl-resolve-modal-cancel-btn {
  flex: 1; padding: 12px; border-radius: 11px;
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.12);
  color: var(--biz-text2); font-size: 13px; font-weight: 700; cursor: pointer;
}
.bl-resolve-modal-confirm-btn {
  flex: 2; padding: 12px; border-radius: 11px; border: none;
  background: linear-gradient(180deg, #c4b5fd, #a78bfa);
  color: #1e0a4a; font-size: 13px; font-weight: 800; cursor: pointer;
}

.bd-resolution-pending-text {
  font-size: 12.5px;
  color: var(--biz-text2);
  line-height: 1.5;
  margin: 0;
}
.bd-resolution-pending-text a { color: var(--biz-violet); }

.ci-resolved-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(237, 232, 255, 0.6);
  background: rgba(167,139,250,0.05);
  border: 0.5px solid rgba(167,139,250,0.18);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 10px 0;
}
.ci-resolved-note svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--biz-violet); }
.ci-resolved-note strong { color: var(--biz-text); }

/* ══════════════════════════════════════════════════════════════════════
   CASH REFUND REPAYMENT, booking detail page
   ══════════════════════════════════════════════════════════════════════ */

.bl-refund-pill--cash_awaiting_repayment {
  background: rgba(245,166,35,0.1);
  color: #f5a623;
  border: 0.5px solid rgba(245,166,35,0.2);
}

.bd-cashref-method-row {
  display: flex;
  gap: 10px;
}
.bd-cashref-method-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 13px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  color: var(--biz-text2);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.bd-cashref-method-btn:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.05);
  color: var(--biz-text);
}
.bd-cashref-method-btn svg { width: 20px; height: 20px; }

.bd-cashref-markpaid-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(180deg, #34d399, #10b981);
  color: #05261c;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
}
.bd-cashref-markpaid-btn svg { width: 15px; height: 15px; }

.bd-cashref-form { display: flex; flex-direction: column; gap: 4px; }
.bd-resolve-input-text {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: var(--biz-text);
  font-family: inherit;
  font-size: 13px;
  margin-bottom: 8px;
}

.bd-cashref-waiting {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 20px 12px;
  color: var(--biz-text2);
  font-size: 13px;
}
.bd-cashref-waiting svg { width: 24px; height: 24px; color: #f5a623; margin-bottom: 4px; }
.bd-cashref-waiting-sub { font-size: 11.5px; color: var(--biz-text3); }

.bd-cashref-details-ready { display: flex; flex-direction: column; }
.bd-cashref-reveal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: 11px;
  background: rgba(167,139,250,0.08);
  border: 0.5px solid rgba(167,139,250,0.22);
  color: var(--biz-violet);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.bd-cashref-reveal-btn svg { width: 15px; height: 15px; }

.bd-cashref-bank-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.bd-cashref-bank-row:last-child { border-bottom: none; }
.bd-cashref-bank-row span { color: var(--biz-text2); }
.bd-cashref-bank-row strong { color: var(--biz-text); font-weight: 700; }

.bl-pay-method-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  margin-left: 5px;
  vertical-align: middle;
}
.bl-pay-method-tag--cash { background: rgba(52,211,153,0.1); color: #34d399; }
.bl-pay-method-tag--stripe { background: rgba(167,139,250,0.1); color: var(--biz-violet); }
.bl-pay-method-tag--unknown { background: rgba(255,255,255,0.05); color: var(--biz-text3); }

.bd-cashref-resend-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: var(--biz-text2);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}
.bd-cashref-resend-btn:hover { background: rgba(255,255,255,0.07); color: var(--biz-text); }




.biz-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-tier-badge:active { transform: scale(0.95); }
.biz-tier-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.biz-tier-badge--free { background: rgba(91, 141, 239, 0.12); color: #8fb4ff; }
.biz-tier-badge--free .biz-tier-badge-dot { background: #5b8def; }
.biz-tier-badge--small { background: rgba(245, 166, 35, 0.12); color: #ffcf7a; }
.biz-tier-badge--small .biz-tier-badge-dot { background: #f5a623; }
.biz-tier-badge--mid { background: rgba(167, 139, 250, 0.15); color: #c4b5fd; }
.biz-tier-badge--mid .biz-tier-badge-dot { background: #a78bfa; box-shadow: 0 0 6px rgba(167, 139, 250, 0.6); }

.biz-acctflip-about-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--biz-violet);
}
.biz-acctflip-about-icon svg { width: 20px; height: 20px; }
.biz-about-title {
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 22px; font-weight: 900;
  letter-spacing: -0.02em; color: #fff; margin-top: 16px;
}
.biz-about-version { font-size: 13px; font-weight: 700; color: var(--biz-violet); margin-top: 2px; }
.biz-about-blurb { font-size: 13px; line-height: 1.6; color: var(--biz-text2); margin-top: 16px; }
.biz-about-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; padding: 11px 16px; border-radius: 12px; width: 100%; box-sizing: border-box;
  background: var(--biz-vd); border: 0.5px solid rgba(167,139,250,0.28);
  color: var(--biz-violet); font-size: 13px; font-weight: 800; text-decoration: none;
  transition: background 0.15s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-about-link:hover { background: rgba(167,139,250,0.16); }
.biz-about-link:active { transform: scale(0.98); }
.biz-about-link svg { width: 15px; height: 15px; margin-left: auto; }
.biz-about-footer { margin-top: 22px; padding-top: 16px; border-top: 0.5px solid rgba(255,255,255,0.08); font-size: 11.5px; color: var(--biz-text3); text-align: center; }
 
.biz-sub-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  animation: bizSubBannerIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bizSubBannerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.biz-sub-banner-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.biz-sub-banner-icon svg { width: 17px; height: 17px; }
.biz-sub-banner-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.biz-sub-banner-text strong { font-size: 13px; font-weight: 800; }
.biz-sub-banner-text span { font-size: 12.5px; color: rgba(237, 232, 255, 0.7); line-height: 1.4; }
.biz-sub-banner-link {
  flex-shrink: 0; font-size: 12px; font-weight: 700; text-decoration: none;
  padding: 8px 14px; border-radius: 9px; white-space: nowrap;
}
.biz-sub-banner-close {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.06); color: rgba(237,232,255,0.5); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.biz-sub-banner-close svg { width: 13px; height: 13px; }
 
.biz-sub-banner--upgrade { background: rgba(52,211,153,0.06); border: 0.5px solid rgba(52,211,153,0.25); }
.biz-sub-banner--upgrade .biz-sub-banner-icon { background: rgba(52,211,153,0.15); color: #34d399; }
.biz-sub-banner--upgrade .biz-sub-banner-text strong { color: #34d399; }
.biz-sub-banner--upgrade .biz-sub-banner-link { background: rgba(52,211,153,0.15); color: #34d399; }
 
.biz-sub-banner--downgrade { background: rgba(245,166,35,0.06); border: 0.5px solid rgba(245,166,35,0.25); }
.biz-sub-banner--downgrade .biz-sub-banner-icon { background: rgba(245,166,35,0.15); color: #f5a623; }
.biz-sub-banner--downgrade .biz-sub-banner-text strong { color: #f5a623; }
.biz-sub-banner--downgrade .biz-sub-banner-link { background: rgba(245,166,35,0.15); color: #f5a623; }
 
.biz-sub-banner--small.biz-sub-banner--upgrade .biz-sub-banner-icon,
.biz-sub-banner--small.biz-sub-banner--upgrade .biz-sub-banner-text strong { color: #f5a623; }
.biz-sub-banner--mid.biz-sub-banner--upgrade .biz-sub-banner-icon,
.biz-sub-banner--mid.biz-sub-banner--upgrade .biz-sub-banner-text strong { color: #a78bfa; }
 
@media (max-width: 640px) {
  .biz-sub-banner { flex-wrap: wrap; }
  .biz-sub-banner-link { order: 3; width: 100%; text-align: center; }
}

/* Confirmed real Batch 5 banner, the update notification, matching
   the exact same real structure as the subscription banner above,
   but with a genuine "Got it" button rather than a small close icon,
   matching the confirmed Monzo-style reference. */
.biz-update-banner {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 16px; margin-bottom: 20px;
  background: rgba(167,139,250,0.06); border: 0.5px solid rgba(167,139,250,0.25);
  animation: bizSubBannerIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.biz-update-banner-icon {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(167,139,250,0.15); color: var(--biz-violet);
}
.biz-update-banner-icon svg { width: 17px; height: 17px; }
.biz-update-banner-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.biz-update-banner-text strong { font-size: 13px; font-weight: 800; color: var(--biz-violet); }
.biz-update-banner-text span { font-size: 12.5px; color: rgba(237, 232, 255, 0.7); line-height: 1.4; }
.biz-update-banner-link {
  flex-shrink: 0; font-size: 12px; font-weight: 700; text-decoration: none;
  padding: 8px 14px; border-radius: 9px; white-space: nowrap;
  background: rgba(167,139,250,0.15); color: var(--biz-violet);
}
.biz-update-banner-close {
  flex-shrink: 0; font-size: 12px; font-weight: 800; white-space: nowrap;
  padding: 8px 16px; border-radius: 9px; border: none; cursor: pointer; font-family: inherit;
  background: var(--biz-violet); color: #1e0a4a;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.biz-update-banner-close:hover { transform: translateY(-1px); }
.biz-update-banner-close:active { transform: scale(0.96); }

@media (max-width: 640px) {
  .biz-update-banner { flex-wrap: wrap; }
  .biz-update-banner-link, .biz-update-banner-close { order: 3; }
}