@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --purple: #7C3AED;
  --purple-light: #A855F7;
  --purple-pale: #EDE9FE;
  --purple-dark: #5B21B6;
  --purple-deep: #1E1040;
  --magenta: #EC4899;
  --magenta-light: #FDF2F8;
  --magenta-mid: #FBCFE8;
  --teal: #06B6D4;
  --teal-text: #0891B2;
  --teal-light: #ECFEFF;
  --teal-mid: #A5F3FC;
  --yellow: #EAB308;
  --yellow-light: #FEFCE8;
  --yellow-mid: #FEF08A;
  --bg: #F5F4FF;
  --sidebar-w: 256px;
  --topbar-h: 64px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / .08), 0 1px 2px -1px rgb(0 0 0 / .04);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / .08), 0 2px 4px -2px rgb(0 0 0 / .04);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .08), 0 4px 6px -4px rgb(0 0 0 / .04);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: #1F2937;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Sidebar ── */
#sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--purple-deep);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

#sidebar::-webkit-scrollbar { width: 4px; }
#sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.sidebar-logo {
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: center;
}

.sidebar-logo img {
  width: 112px;
  height: 112px;
  max-height: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  opacity: 1;
}

.sidebar-business {
  padding: 12px 16px;
  margin: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s;
}
.sidebar-business:hover { background: rgba(255,255,255,.1); }

.sidebar-business-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-business-sub {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.sidebar-nav {
  flex: 1;
  padding: 8px 8px;
}

.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 8px 12px 4px;
  margin-top: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  cursor: pointer;
  position: relative;
}
.nav-item:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.nav-item.active {
  background: rgba(124,58,237,.4);
  color: #fff;
  font-weight: 600;
}
.nav-item.active .nav-icon { color: #A78BFA; }
.nav-icon { width: 18px; height: 18px; flex-shrink: 0; }

.nav-badge {
  margin-left: auto;
  background: var(--magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
}
.nav-badge.green { background: var(--teal); }
.nav-badge.new {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
}

.sidebar-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 8px;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}
.sidebar-user:hover { background: rgba(255,255,255,.07); }

.user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.user-name { font-size: 13px; font-weight: 600; color: #fff; }
.user-role { font-size: 11px; color: rgba(255,255,255,.45); }

/* ── Main layout ── */
#main, .layout-main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Topbar ── */
.topbar {
  height: var(--topbar-h);
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-icon { display: none; }

.topbar-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  flex: 1;
}
.topbar-subtitle {
  font-size: 13px;
  color: #6B7280;
  font-weight: 400;
  margin-left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(124,58,237,.35); }

.btn-secondary {
  background: #fff;
  color: #374151;
  border: 1.5px solid #E5E7EB;
}
.btn-secondary:hover { background: #F9FAFB; border-color: #D1D5DB; }

.btn-orange {
  background: var(--magenta);
  color: #fff;
}
.btn-orange:hover { background: #BE185D; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(236,72,153,.35); }

.btn-ghost {
  background: transparent;
  color: #6B7280;
  border: none;
}
.btn-ghost:hover { background: #F3F4F6; color: #374151; }

.btn-sm { padding: 5px 12px; font-size: 12.5px; }
.btn-lg { padding: 11px 24px; font-size: 15px; }
.btn-icon { padding: 8px; }

/* ── Content ── */
.content {
  padding: 24px;
  flex: 1;
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.05);
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.card-body { padding: 20px; }

/* ── Stat cards ── */
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}
.stat-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.stat-change.up { color: var(--teal-text); }
.stat-change.down { color: #EF4444; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
}
.badge-purple { background: var(--purple-pale); color: var(--purple-dark); }
.badge-magenta { background: var(--magenta-light); color: #9D174D; }
.badge-teal { background: var(--teal-light); color: #0E7490; }
.badge-yellow { background: var(--yellow-light); color: #92400E; }
.badge-gray { background: #F3F4F6; color: #6B7280; }
.badge-red { background: #FEF2F2; color: #DC2626; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th {
  padding: 10px 16px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9CA3AF;
  background: #FAFAFA;
  border-bottom: 1px solid #F3F4F6;
  text-align: left;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid #F9FAFB;
  transition: background .1s;
}
tbody tr:hover { background: #F5F4FF; }
tbody tr:last-child { border-bottom: none; }
tbody td {
  padding: 12px 16px;
  color: #374151;
  font-size: 13.5px;
}
.td-primary { font-weight: 600; color: #111827; }

/* ── Avatar ── */
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  color: #111827;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.form-textarea { resize: vertical; min-height: 80px; }

/* ── Calendar ── */
.cal-grid {
  display: grid;
  grid-template-columns: 56px repeat(6, 1fr);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.cal-header-cell {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 2px solid #E5E7EB;
  border-right: 1px solid #F3F4F6;
  background: #FAFAFA;
}
.cal-header-cell:last-child { border-right: none; }
.cal-day-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9CA3AF;
}
.cal-day-num {
  font-size: 20px;
  font-weight: 800;
  color: #1F2937;
  margin-top: 2px;
}
.cal-day-num.today {
  background: var(--purple);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 0;
  font-size: 16px;
}

.cal-time-col {
  border-right: 1px solid #E5E7EB;
  background: #FAFAFA;
}
.cal-time-slot {
  height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4px 6px 0 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 10.5px;
  font-weight: 600;
  color: #9CA3AF;
}

.cal-day-col {
  position: relative;
  border-right: 1px solid #F3F4F6;
}
.cal-day-col:last-child { border-right: none; }
.cal-slot {
  height: 56px;
  border-bottom: 1px solid #F9FAFB;
}
.cal-slot:nth-child(even) { background: rgba(0,0,0,.008); }

.cal-event {
  position: absolute;
  left: 3px; right: 3px;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 11px;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  transition: filter .15s, transform .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  z-index: 2;
}
.cal-event:hover { filter: brightness(.93); transform: translateY(-1px); z-index: 10; }
.cal-event-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-event-sub { font-size: 10px; font-weight: 500; opacity: .75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.cal-event.hair { background: #EDE9FE; color: #5B21B6; border-left: 3px solid var(--purple); }
.cal-event.nails { background: #FDF2F8; color: #9D174D; border-left: 3px solid var(--magenta); }
.cal-event.color { background: #ECFEFF; color: #0E7490; border-left: 3px solid var(--teal); }

/* ── Stripe connect ── */
.stripe-status-connected {
  background: linear-gradient(135deg, #ECFEFF, #CFFAFE);
  border: 1.5px solid #67E8F9;
  border-radius: var(--radius);
  padding: 20px;
}
.stripe-status-pending {
  background: linear-gradient(135deg, #FEFCE8, #FEF9C3);
  border: 1.5px solid #FEF08A;
  border-radius: var(--radius);
  padding: 20px;
}

/* ── Progress bar ── */
.progress-bar {
  height: 6px;
  background: #F3F4F6;
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* ── Pill tabs ── */
.pill-tabs {
  display: flex;
  background: #F3F4F6;
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}
.pill-tab {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all .15s;
  border: none;
  background: none;
  font-family: inherit;
}
.pill-tab.active {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* ── Staff chips ── */
.staff-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 4px;
  background: #F5F4FF;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-dark);
}

/* ── Empty state ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}
.empty-state-icon {
  width: 64px; height: 64px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 28px;
}
.empty-state h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.empty-state p { font-size: 13.5px; color: #6B7280; max-width: 320px; }

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s;
  pointer-events: none;
}
#toast.show { opacity: 1; transform: translateY(0); }

/* ── Grid utilities ── */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.ml-auto { margin-left: auto; }
.w-full { width: 100%; }
.text-sm { font-size: 12.5px; }
.text-xs { font-size: 11px; }
.text-muted { color: #6B7280; }
.text-bold { font-weight: 700; }
.text-right { text-align: right; }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: var(--radius); }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.hidden { display: none; }

/* ── Shopify badge ── */
.shopify-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: #E3FBE3;
  color: #0E7490;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

/* ── Booking row ── */
.booking-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
}
.booking-row:last-child { border-bottom: none; }
.booking-time {
  min-width: 48px;
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  text-align: right;
}

/* ── Login ── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  background: var(--bg);
}
.login-panel {
  width: 460px;
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.login-hero {
  flex: 1;
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2D1B69 40%, #4C1D95 70%, #1E3A5F 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.login-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.login-hero::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,.2) 0%, transparent 70%);
  bottom: -50px; left: -50px;
}

/* ── Notification dot ── */
.notif-dot {
  width: 8px; height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  position: absolute;
  top: 6px; right: 6px;
}

/* ── Product card ── */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #F3F4F6;
  overflow: hidden;
  transition: all .2s;
  box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--purple-pale); }
.product-img {
  height: 140px;
  background: linear-gradient(135deg, #F5F4FF, #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.product-info { padding: 14px; }
.product-name { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.product-brand { font-size: 12px; color: #9CA3AF; margin-bottom: 8px; }
.product-price { font-size: 17px; font-weight: 800; color: var(--purple); }
.product-stock { font-size: 11.5px; font-weight: 600; margin-top: 4px; }

/* ── Campaign card ── */
.campaign-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #F3F4F6;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: all .2s;
}
.campaign-card:hover { border-color: var(--purple-pale); box-shadow: var(--shadow-md); }

/* ── Integration card ── */
.integration-card {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid #F3F4F6;
  padding: 24px;
  text-align: center;
  transition: all .2s;
}
.integration-card.connected { border-color: #67E8F9; background: #ECFEFF; }
.integration-card.pending { border-color: #FEF08A; background: #FEFCE8; }

/* ── Responsive tweaks ── */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  #sidebar { transform: translateX(-100%); }
  #main, .layout-main { margin-left: 0; }
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn .3s ease forwards; }

@keyframes pulse-purple {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,.4); }
  50% { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
}
.pulse { animation: pulse-purple 2s infinite; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

/* ── Chart container ── */
.chart-container { position: relative; }

/* ── Notification bell ── */
.notif-btn {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s; flex-shrink: 0;
}
.notif-btn:hover { background: #F5F4FF; border-color: var(--purple-pale); color: var(--purple); }
.notif-badge {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--magenta); color: #fff;
  border-radius: 50%; font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* ── Topbar user pill ── */
.topbar-user {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  cursor: pointer; transition: all .15s;
}
.topbar-user:hover { border-color: var(--purple-pale); background: #F5F4FF; }
.topbar-user-name { font-size: 13px; font-weight: 700; color: #374151; }

/* ── Stat card accent border ── */
.stat-card-purple { border-top: 3px solid var(--purple); }
.stat-card-magenta { border-top: 3px solid var(--magenta); }
.stat-card-teal  { border-top: 3px solid var(--teal); }
.stat-card-yellow { border-top: 3px solid var(--yellow); }

/* ── Section divider with label ── */
.section-label {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: #9CA3AF; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: #F3F4F6;
}

/* ── Hover lift ── */
.hover-lift { transition: transform .2s, box-shadow .2s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── Number highlight ── */
.num-highlight {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* ── Sidebar active glow ── */
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 60%;
  background: #A78BFA;
  border-radius: 0 3px 3px 0;
}

/* ── Card hover purple border ── */
.card:hover { border-color: rgba(124,58,237,.12); }

/* ── Revenue green pulse ── */
@keyframes rev-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .6; }
}
.rev-live { animation: rev-pulse 2.5s ease-in-out infinite; }

/* ── New booking CTA gradient ── */
.btn-gradient {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff; border: none;
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #6D28D9, #9333EA);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(124,58,237,.45);
}

/* ── Booking page responsive ── */
@media (max-width: 700px) {
  .book-layout { grid-template-columns: 1fr !important; }
  .book-layout > div:last-child { display: none; }
}
