/* ============================================================
   LUVO — Overrides de componentes (Bootstrap) usando os tokens
   de theme.css. Estética Linear/Vercel: preto absoluto, bordas
   zinc, branco como cor "primária", verde só em status/assinatura.
   ============================================================ */

/* ============================================================
   LAYOUT SHELL
   ============================================================ */
.luvo-shell { display: flex; min-height: 100vh; }

.luvo-sidebar {
  width: var(--sidebar-w);
  background: var(--bg-primary);
  border-right: 1px solid var(--border-default);
  display: flex; flex-direction: column;
  position: fixed; inset: 0 auto 0 0;
  z-index: 1040;
  transition: transform 0.25s var(--ease-out);
}
.luvo-main {
  flex: 1; margin-left: var(--sidebar-w); min-width: 0;
  display: flex; flex-direction: column;
}
.luvo-content { padding: 32px; flex: 1; width: 100%; max-width: var(--container-max); margin: 0 auto; }

/* ============================================================
   BRAND (sidebar)
   ============================================================ */
.luvo-brand {
  display: flex; align-items: center;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border-default);
  font-size: 18px;
}

/* ============================================================
   NAV
   ============================================================ */
.luvo-nav { padding: 16px 12px; overflow-y: auto; flex: 1; }
.luvo-nav .section {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-tertiary);
  padding: 20px 12px 8px;
}
.luvo-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; margin-bottom: 2px;
  border-radius: var(--radius-sm);
  color: var(--text-tertiary); font-weight: 500; font-size: 14px;
  transition: background var(--t-fast), color var(--t-fast);
}
.luvo-nav a svg { width: 17px; height: 17px; stroke-width: 1.75; }
.luvo-nav a:hover { color: var(--text-primary); background: var(--bg-secondary); }
.luvo-nav a.active { background: var(--border-default); color: var(--text-primary); box-shadow: inset 2px 0 0 var(--accent); }
.luvo-nav a .nav-badge { margin-left: auto; background: var(--accent); color: #000; font-size: 11px; font-weight: 600; font-family: var(--font-mono); min-width: 18px; height: 18px; padding: 0 5px; border-radius: var(--radius-full); display: inline-grid; place-items: center; }

/* ============================================================
   TOPBAR
   ============================================================ */
.luvo-topbar {
  height: 64px; display: flex; align-items: center; gap: 16px;
  padding: 0 32px;
  background: var(--bg-elevated);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
  position: sticky; top: 0; z-index: 1030;
}
.luvo-topbar h1 { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); }
.luvo-topbar .user { display: flex; align-items: center; gap: 10px; margin-left: auto; color: var(--text-tertiary); }
.luvo-topbar .avatar {
  width: 32px; height: 32px; border-radius: var(--radius-full);
  background: var(--bg-tertiary); border: 1px solid var(--border-strong);
  display: grid; place-items: center; color: var(--text-secondary);
  font-weight: 500; font-size: 13px; position: relative;
}
/* Indicador "online" — assinatura verde sutil */
.luvo-topbar .avatar::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 9px; height: 9px; border-radius: var(--radius-full);
  background: var(--accent); box-shadow: 0 0 5px var(--accent-glow);
  border: 2px solid var(--bg-primary);
}
.btn-burger { display: none; background: none; border: none; color: var(--text-secondary); padding: 4px; }
.btn-burger svg { width: 20px; height: 20px; }

/* ============================================================
   PAGE TITLE
   ============================================================ */
.page-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.page-title-row h4 { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-secondary);
  border: 1px solid rgba(39, 39, 42, 0.8);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.card .card-header {
  background: transparent;
  border-bottom: 1px solid var(--border-default);
  font-weight: 500; font-size: 14px; color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px;
}
.card .card-header svg { width: 16px; height: 16px; stroke-width: 1.75; color: var(--text-tertiary); }
.card .card-body { padding: 24px; }
.card-title { color: var(--text-primary); }

/* Stat cards */
.stat-card { padding: 24px; }
.stat-card:hover { border-color: var(--border-stronger); }
.stat-card .stat-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  color: var(--text-tertiary);
}
.stat-card .stat-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.stat-card .stat-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary);
}
.stat-card .stat-value {
  font-size: 28px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
  margin-top: 8px; color: var(--text-primary); font-variant-numeric: tabular-nums;
}
.stat-card .stat-sub { color: var(--text-tertiary); font-size: 13px; margin-top: 4px; }

/* Os antigos modificadores coloridos viram neutros (monocromático) */
.ic-blue, .ic-green, .ic-amber, .ic-red { background: var(--bg-tertiary); color: var(--text-tertiary); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  border-radius: var(--radius-sm); font-weight: 500; font-size: 14px;
  padding: 10px 18px; border: 1px solid transparent;
  transition: all var(--t-fast); display: inline-flex; align-items: center; gap: 7px;
}
.btn svg { width: 16px; height: 16px; stroke-width: 1.75; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-sm svg { width: 14px; height: 14px; }

.btn-primary { background: var(--text-primary); border-color: var(--text-primary); color: #000; }
.btn-primary:hover { background: #E4E4E7; border-color: #E4E4E7; color: #000; }

.btn-outline-light, .btn-soft {
  background: transparent; border: 1px solid var(--border-strong); color: var(--text-secondary);
}
.btn-outline-light:hover, .btn-soft:hover {
  background: var(--bg-tertiary); border-color: var(--border-stronger); color: var(--text-primary);
}
.btn-link { color: var(--text-tertiary); padding: 0; }
.btn-link:hover { color: var(--text-primary); }

/* Variantes semânticas discretas */
.btn-danger { background: transparent; border-color: var(--border-strong); color: var(--error); }
.btn-danger:hover { background: rgba(239, 68, 68, 0.1); border-color: var(--error); color: var(--error); }

/* ============================================================
   FORMS
   ============================================================ */
.form-control, .form-select {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 11px 15px; font-size: 14px;
  transition: border-color var(--t-fast);
}
.form-control:focus, .form-select:focus {
  background: transparent;
  border-color: var(--border-stronger);   /* sem verde no focus */
  color: var(--text-primary);
  box-shadow: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23A1A1AA' stroke-width='1.75'%3e%3cpath d='M4 6l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 15px 15px;
  padding-right: 36px;
}
.form-select option { background: var(--bg-secondary); color: var(--text-primary); }
.input-group-text { background: var(--bg-tertiary); border: 1px solid var(--border-strong); color: var(--text-tertiary); border-radius: var(--radius-sm); }
.form-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 8px;
}
.form-text { color: var(--text-muted); font-size: 13px; }

/* ============================================================
   TABLES + DataTables
   ============================================================ */
.table { color: var(--text-secondary); border-color: var(--border-default); margin-bottom: 0; }
.table > :not(caption) > * > * { background: transparent; color: var(--text-secondary); border-color: var(--border-default); padding: 13px 16px; }
.table thead th {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-strong); background: var(--bg-tertiary);
}
.table tbody tr { border-bottom: 1px solid var(--border-default); }
.table-hover > tbody > tr:hover > * { background: var(--bg-secondary); color: var(--text-primary); }
.table .fw-semibold, .table a.fw-semibold { color: var(--text-primary); }

.dataTables_wrapper { color: var(--text-tertiary); font-size: 13px; }
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  background: transparent; border: 1px solid var(--border-strong);
  color: var(--text-primary); border-radius: var(--radius-sm); padding: 6px 12px;
}
.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus { border-color: var(--border-stronger); outline: none; }
.dataTables_wrapper .dataTables_paginate .paginate_button { color: var(--text-tertiary) !important; border-radius: var(--radius-sm); border: none !important; }
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--bg-tertiary) !important; color: var(--text-primary) !important;
  border: 1px solid var(--border-strong) !important;
}

/* ============================================================
   TABS
   ============================================================ */
.nav-tabs { border-bottom: 1px solid var(--border-default); gap: 4px; }
.nav-tabs .nav-link {
  color: var(--text-tertiary); border: none; border-bottom: 1px solid transparent;
  border-radius: 0; padding: 10px 14px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 7px; background: transparent;
}
.nav-tabs .nav-link svg { width: 15px; height: 15px; stroke-width: 1.75; }
.nav-tabs .nav-link:hover { color: var(--text-secondary); border-color: transparent; }
.nav-tabs .nav-link.active { color: var(--text-primary); background: transparent; border-bottom: 1px solid var(--text-primary); }

/* ============================================================
   BADGES — pílulas sutis (sem fundo colorido sólido)
   ============================================================ */
.badge {
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: var(--radius-full);
  background: var(--bg-tertiary); border: 1px solid var(--border-strong);
  color: var(--text-secondary); display: inline-flex; align-items: center; gap: 5px;
}
/* Variantes: usam cor no texto, fundo permanece neutro */
.badge.text-bg-secondary { background: var(--bg-tertiary); color: var(--text-tertiary); }
.badge.text-bg-success   { background: var(--bg-tertiary); color: var(--accent); }
.badge.text-bg-info      { background: var(--bg-tertiary); color: var(--info); }
.badge.text-bg-primary   { background: var(--bg-tertiary); color: var(--text-primary); }
.badge.text-bg-warning   { background: var(--bg-tertiary); color: var(--warning); }
.badge.text-bg-danger    { background: var(--bg-tertiary); color: var(--error); }
/* Pontinho antes do texto, reforçando a assinatura */
.badge.text-bg-success::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 5px var(--accent-glow); }
.badge.text-bg-warning::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--warning); }
.badge.text-bg-danger::before  { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--error); }
.badge.text-bg-info::before    { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--info); }

/* Cores utilitárias semânticas (texto) */
.text-success { color: var(--accent) !important; }
.text-danger  { color: var(--error) !important; }
.text-warning { color: var(--warning) !important; }
.text-muted, .text-secondary { color: var(--text-tertiary) !important; }

/* ============================================================
   PROGRESS
   ============================================================ */
.progress { background: var(--bg-tertiary); border: 1px solid var(--border-default); border-radius: var(--radius-full); height: 8px; overflow: hidden; }
.progress-bar { background: var(--text-primary); color: #000; font-size: 0; }
.progress-bar.bg-success { background: var(--accent); }
.progress-bar.bg-danger { background: var(--error); }

/* ============================================================
   TIMER
   ============================================================ */
.timer-display { font-family: var(--font-mono); font-size: 44px; font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; color: var(--text-primary); }
.timer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); display: inline-block; animation: softPulse 2.4s ease-in-out infinite; }

/* ============================================================
   DROPDOWN / MODAL / LIST
   ============================================================ */
.dropdown-menu { background: var(--bg-secondary); border: 1px solid var(--border-strong); border-radius: var(--radius-md); padding: 6px; box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.6); }
.dropdown-item { color: var(--text-secondary); border-radius: var(--radius-sm); padding: 8px 12px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.dropdown-item svg { width: 15px; height: 15px; stroke-width: 1.75; }
.dropdown-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.dropdown-divider { border-color: var(--border-default); }

.modal-backdrop.show { opacity: 1; background: rgba(0,0,0,0.6); }
.modal-backdrop { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.modal-content { background: var(--bg-secondary); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); color: var(--text-secondary); box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.6); }
.modal-header, .modal-footer { border-color: var(--border-default); padding: 20px 24px; }
.modal-body { padding: 24px; }
.modal-title { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); }
.btn-close { filter: invert(1) grayscale(1) brightness(1.6); opacity: 0.5; }
.btn-close:hover { opacity: 1; }

.list-group-item { background: transparent; border-color: var(--border-default); color: var(--text-secondary); padding: 14px 0; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { border-radius: var(--radius-md); border: 1px solid var(--border-strong); font-size: 14px; padding: 12px 16px; background: var(--bg-secondary); color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.alert svg { width: 16px; height: 16px; stroke-width: 1.75; flex: 0 0 auto; }
.alert-success { border-color: rgba(0,255,136,0.25); color: var(--text-secondary); }
.alert-success svg { color: var(--accent); }
.alert-danger { border-color: rgba(239,68,68,0.3); }
.alert-danger svg { color: var(--error); }

/* ============================================================
   MISC
   ============================================================ */
hr { border-color: var(--border-default); opacity: 1; }
.empty-state { text-align: center; color: var(--text-muted); padding: 48px 16px; }
.empty-state svg { width: 28px; height: 28px; stroke-width: 1.5; opacity: 0.6; display: block; margin: 0 auto 12px; }
.kv { font-family: var(--font-mono); color: var(--text-tertiary); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.kv + div { font-weight: 500; color: var(--text-primary); }
.font-monospace { font-family: var(--font-mono) !important; }

.luvo-toast { font-size: 13px; }

/* ============================================================
   CENTRAL DE CONVERSAS (WhatsApp)
   ============================================================ */
.chat-wrap {
  display: grid; grid-template-columns: 340px 1fr;
  height: calc(100vh - 158px); min-height: 480px;
  background: var(--bg-secondary); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); overflow: hidden;
}

/* ---- Lista (esquerda) ---- */
.chat-list { display: flex; flex-direction: column; border-right: 1px solid var(--border-default); min-width: 0; min-height: 0; }
.chat-list-head { display: flex; align-items: center; gap: 8px; padding: 12px; border-bottom: 1px solid var(--border-default); }
.chat-search { position: relative; flex: 1; }
.chat-search svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--text-muted); }
.chat-search input { width: 100%; background: var(--bg-tertiary); border: 1px solid var(--border-strong); color: var(--text-primary); border-radius: var(--radius-sm); padding: 8px 12px 8px 34px; font-size: 13px; }
.chat-search input:focus { outline: none; border-color: var(--border-stronger); }
.chat-list-body { overflow-y: auto; flex: 1; min-height: 0; }

.conv-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--border-default); cursor: pointer; transition: background var(--t-fast); }
.conv-item:hover { background: var(--bg-tertiary); }
.conv-item.active { background: var(--bg-tertiary); box-shadow: inset 2px 0 0 var(--accent); }
.conv-avatar { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--bg-tertiary); border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--text-secondary); font-weight: 500; font-size: 15px; flex: 0 0 auto; }
.conv-item.active .conv-avatar { background: var(--bg-primary); }
.conv-body { min-width: 0; flex: 1; }
.conv-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.conv-name { color: var(--text-primary); font-weight: 500; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-time { color: var(--text-muted); font-size: 11px; font-family: var(--font-mono); flex: 0 0 auto; }
.conv-bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 2px; }
.conv-preview { color: var(--text-tertiary); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.conv-badge { background: var(--accent); color: #000; font-size: 11px; font-weight: 600; min-width: 18px; height: 18px; padding: 0 5px; border-radius: var(--radius-full); display: grid; place-items: center; flex: 0 0 auto; }

/* ---- Painel (direita) ---- */
.chat-panel { display: flex; flex-direction: column; min-width: 0; min-height: 0; background: var(--bg-primary); }
.chat-empty { flex: 1; display: grid; place-items: center; }
.chat-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 18px; border-bottom: 1px solid var(--border-default); background: var(--bg-secondary); }
.chat-title { color: var(--text-primary); font-weight: 600; font-size: 15px; }
.chat-sub { color: var(--text-tertiary); font-size: 12px; display: flex; align-items: center; gap: 6px; }

.chat-body { flex: 1; min-height: 0; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.chat-composer { flex: 0 0 auto; }
.chat-day { text-align: center; margin: 12px 0; }
.chat-day span { background: var(--bg-tertiary); border: 1px solid var(--border-default); color: var(--text-tertiary); font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--radius-full); }
.chat-system { align-self: center; max-width: 80%; text-align: center; color: var(--text-tertiary); font-size: 12px; background: var(--bg-secondary); border: 1px solid var(--border-default); border-radius: var(--radius-full); padding: 5px 14px; margin: 4px 0; display: inline-flex; align-items: center; gap: 7px; }
.chat-system svg { width: 13px; height: 13px; color: var(--accent); }
.chat-system-time { color: var(--text-muted); font-family: var(--font-mono); font-size: 10px; }

.chat-msg { display: flex; margin: 2px 0; }
.chat-msg.out { justify-content: flex-end; }
.chat-msg.in  { justify-content: flex-start; }
.bubble { max-width: 64%; padding: 8px 12px; border-radius: 12px; font-size: 14px; line-height: 1.45; position: relative; }
.chat-msg.in .bubble  { background: var(--bg-secondary); border: 1px solid var(--border-default); border-top-left-radius: 4px; color: var(--text-secondary); }
.chat-msg.out .bubble { background: var(--bg-tertiary); border: 1px solid var(--border-strong); border-top-right-radius: 4px; color: var(--text-primary); }
.bubble-text { white-space: pre-wrap; word-break: break-word; }
.bubble-img { max-width: 240px; max-height: 240px; border-radius: 8px; display: block; margin-bottom: 4px; }
.bubble-doc { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--bg-primary); border: 1px solid var(--border-default); border-radius: 8px; color: var(--text-secondary); margin-bottom: 4px; }
.bubble-doc svg { width: 18px; height: 18px; color: var(--text-tertiary); }
.bubble-meta { display: flex; align-items: center; justify-content: flex-end; gap: 5px; margin-top: 3px; color: var(--text-muted); font-size: 10px; font-family: var(--font-mono); }
.bubble-status { width: 13px; height: 13px; }
.bubble-status.st-read { color: var(--accent); }
.bubble-status.st-fail { color: var(--error); }
.bubble-error { color: var(--error); font-size: 11px; margin-top: 4px; }

/* ---- Composer ---- */
.chat-composer { display: flex; align-items: flex-end; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--border-default); background: var(--bg-secondary); }
.composer-attach { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--radius-sm); color: var(--text-tertiary); cursor: pointer; flex: 0 0 auto; border: 1px solid transparent; }
.composer-attach:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.composer-attach svg { width: 18px; height: 18px; }
.composer-input { flex: 1; background: var(--bg-tertiary); border: 1px solid var(--border-strong); border-radius: 10px; padding: 6px 12px; }
.composer-file { display: inline-block; font-size: 11px; font-family: var(--font-mono); color: var(--accent); margin-bottom: 4px; }
.composer-input textarea { width: 100%; background: transparent; border: none; color: var(--text-primary); font-size: 14px; resize: none; outline: none; max-height: 120px; line-height: 1.4; padding: 5px 0; font-family: var(--font-sans); }
.composer-input textarea::placeholder { color: var(--text-muted); }
.composer-send { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--text-primary); color: #000; border: none; display: grid; place-items: center; flex: 0 0 auto; transition: background var(--t-fast); }
.composer-send:hover:not(:disabled) { background: #E4E4E7; }
.composer-send:disabled { opacity: 0.4; cursor: not-allowed; }
.composer-send svg { width: 17px; height: 17px; }

@media (max-width: 767.98px) {
  .chat-wrap { grid-template-columns: 1fr; }
  .chat-list { display: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 991.98px) {
  .luvo-sidebar { transform: translateX(-100%); }
  .luvo-sidebar.open { transform: translateX(0); }
  .luvo-main { margin-left: 0; }
  .luvo-content { padding: 20px; }
  .luvo-topbar { padding: 0 20px; }
  .btn-burger { display: inline-flex; }
}
