/* ============================================================
   PRECISE PLUG-IN — FRONTEND STYLES
   Design tokens via CSS variables. Agency accent colour is
   injected inline by PHP using the wlt_settings option.
   ============================================================ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent-30); border-radius: 4px; }

/* ── TOKENS ── */
:root {
  /* Accent is overridden inline by PHP with the agency colour */
  --accent:        #D4177A;
  --accent-bright: #F020A0;
  --accent-deep:   #9E0F5A;
  --accent-10:     rgba(212,23,122,0.10);
  --accent-15:     rgba(212,23,122,0.15);
  --accent-20:     rgba(212,23,122,0.20);
  --accent-30:     rgba(212,23,122,0.30);

  /* Surfaces */
  --bg:      #0E0008;
  --surf:    #1A0011;
  --surf2:   #230018;
  --surf3:   #2E0020;

  /* Borders */
  --border:  rgba(255,255,255,0.07);
  --border-a:rgba(212,23,122,0.25);

  /* Text */
  --text:  rgba(255,255,255,0.88);
  --dim:   rgba(255,255,255,0.45);
  --muted: rgba(255,255,255,0.22);
  --white: #ffffff;

  /* Semantic */
  --green:  #22c55e;
  --amber:  #f59e0b;
  --red:    #ef4444;
  --blue:   #3b82f6;

  /* Layout */
  --sidebar-w: 190px;
  --topbar-h:  56px;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── BASE ── */
html, body {
  height: 100%;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

/* ── SCENE BACKGROUND ── */
.wlt-scene {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 120% 80% at 80% 50%, #3A0028 0%, #160010 45%, #080005 100%);
}
.wlt-scene::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 600px at 85% 25%, rgba(212,23,122,0.18) 0%, transparent 65%),
    radial-gradient(circle 300px at 20% 80%,  rgba(168,17,94,0.10)  0%, transparent 60%);
}
.wlt-noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ── APP SHELL ── */
.wlt-app {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  grid-template-rows: var(--topbar-h) 1fr;
  height: 100vh;
  overflow: hidden;
}

/* ── TOPBAR ── */
.wlt-topbar {
  grid-column: 1 / -1;
  display: flex; align-items: center;
  padding: 0 20px 0 0;
  background: rgba(14,0,8,0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  gap: 12px; z-index: 100;
}
.wlt-topbar-logo {
  width: var(--sidebar-w);
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px; flex-shrink: 0;
}
.wlt-logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px var(--accent-30);
  flex-shrink: 0;
}
.wlt-logo-mark img { width: 22px; height: 22px; object-fit: contain; }
.wlt-logo-mark-text {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--white); letter-spacing: -0.2px;
}
.wlt-logo-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  letter-spacing: -0.2px; line-height: 1.2;
  color: var(--white);
}
.wlt-logo-name span { color: var(--accent-bright); }

.wlt-topbar-search { flex: 1; max-width: 300px; position: relative; }
.wlt-topbar-search input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 12px 7px 34px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--white); outline: none;
  transition: border-color .2s;
}
.wlt-topbar-search input::placeholder { color: var(--muted); }
.wlt-topbar-search input:focus { border-color: var(--border-a); }
.wlt-topbar-search .wlt-search-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--muted);
}

.wlt-topbar-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.wlt-notif-bell {
  position: relative; width: 36px; height: 36px;
  border-radius: 10px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s; text-decoration: none;
}
.wlt-notif-bell:hover { border-color: var(--border-a); }
.wlt-notif-bell i { font-size: 14px; color: var(--dim); }
.wlt-notif-pip {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 6px var(--accent-bright);
  border: 1.5px solid var(--bg);
}

.wlt-topbar-user {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 10px; border-radius: 10px;
  background: var(--accent-10); border: 1px solid var(--border-a);
  cursor: pointer; transition: background .15s; text-decoration: none;
}
.wlt-topbar-user:hover { background: var(--accent-20); }
.wlt-topbar-user span { font-size: 13px; font-weight: 500; color: var(--white); }
.wlt-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--white);
}

/* ── SIDEBAR ── */
.wlt-sidebar {
  background: rgba(14,0,8,0.62);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto; overflow-x: hidden;
}
.wlt-nav-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding: 8px 8px 4px; margin-top: 6px;
}
.wlt-nav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 10px;
  cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s;
  color: var(--dim); font-size: 12.5px; font-weight: 400;
  border: 1px solid transparent; user-select: none; white-space: nowrap;
}
.wlt-nav-item i { width: 15px; text-align: center; flex-shrink: 0; font-size: 13px; }
.wlt-nav-item:hover { background: var(--accent-10); color: var(--white); }
.wlt-nav-item.active {
  background: var(--accent-10); color: var(--white);
  border-color: var(--border-a); font-weight: 500;
}
.wlt-nav-item.active i { color: var(--accent); }
.wlt-nav-bottom {
  margin-top: auto;
  border-top: 1px solid var(--border); padding-top: 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.wlt-nav-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 5px var(--accent-bright);
  margin-left: auto; flex-shrink: 0;
}
.wlt-nav-count {
  margin-left: auto; background: var(--accent);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 999px; flex-shrink: 0;
}
.wlt-nav-logout { color: rgba(239,68,68,0.6) !important; }
.wlt-nav-logout:hover { background: rgba(239,68,68,0.08) !important; color: var(--red) !important; }

/* ── MAIN CONTENT ── */
.wlt-main {
  overflow-y: auto; padding: 22px;
}

/* ── PAGE HEADER ── */
.wlt-page-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.wlt-page-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 800; letter-spacing: -0.5px;
}
.wlt-page-sub { font-size: 13px; color: var(--dim); margin-top: 3px; }

/* ── CARDS ── */
.wlt-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.wlt-card::before {
  content: '';
  position: absolute; top: -1px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-30), transparent);
}
.wlt-card-pad { padding: 20px; }
.wlt-card:hover { border-color: rgba(255,255,255,0.1); }

/* ── BUTTONS ── */
.wlt-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border: none; border-radius: 10px;
  background: linear-gradient(130deg, var(--accent-bright), var(--accent-deep));
  color: #fff; font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-30);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap; text-decoration: none;
}
.wlt-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-30);
  color: #fff;
}
.wlt-btn-ghost {
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 10px; background: transparent;
  color: var(--dim); font-family: var(--font-body); font-size: 13px;
  cursor: pointer; transition: all .15s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.wlt-btn-ghost:hover { border-color: var(--border-a); color: var(--white); }
.wlt-btn-sm {
  padding: 5px 12px; border: 1px solid var(--border);
  border-radius: 8px; background: rgba(255,255,255,0.05);
  color: var(--dim); font-size: 12px; cursor: pointer; transition: all .15s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.wlt-btn-sm:hover { border-color: var(--border-a); color: var(--white); }
.wlt-btn-danger {
  padding: 5px 12px; border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px; background: rgba(239,68,68,0.08);
  color: var(--red); font-size: 12px; cursor: pointer; transition: all .15s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.wlt-btn-danger:hover { background: rgba(239,68,68,0.15); }
.wlt-btn-approve {
  padding: 5px 12px; border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px; background: rgba(34,197,94,0.10);
  color: var(--green); font-size: 12px; font-weight: 600; cursor: pointer;
}
.wlt-btn-amber {
  padding: 8px 16px; border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px; background: rgba(245,158,11,0.1);
  color: var(--amber); font-family: var(--font-display);
  font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.wlt-btn-upload {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1px solid var(--border-a);
  border-radius: 9px; background: var(--accent-10);
  color: var(--accent); font-size: 12px; font-weight: 600; cursor: pointer;
}

/* ── BADGES ── */
.wlt-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.wlt-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.wlt-badge-pending  { background: rgba(245,158,11,0.15); color: var(--amber); }
.wlt-badge-live     { background: rgba(34,197,94,0.15);  color: var(--green); }
.wlt-badge-draft    { background: rgba(255,255,255,0.08); color: var(--dim); }
.wlt-badge-published{ background: rgba(59,130,246,0.15); color: var(--blue); }
.wlt-badge-paused   { background: rgba(239,68,68,0.15);  color: var(--red); }
.wlt-badge-waiting  { background: rgba(245,158,11,0.15); color: var(--amber); }
.wlt-ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-10); border: 1px solid var(--border-a);
  font-size: 11px; font-weight: 600; color: var(--accent);
}
.wlt-ai-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright); box-shadow: 0 0 6px var(--accent-bright);
  animation: wlt-blink 1.5s ease-in-out infinite;
}
@keyframes wlt-blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ── TOOLBAR ── */
.wlt-toolbar {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.wlt-search-wrap { position: relative; flex: 1; min-width: 180px; }
.wlt-search-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px 8px 34px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--white); outline: none; transition: border-color .2s;
}
.wlt-search-wrap input::placeholder { color: var(--muted); }
.wlt-search-wrap input:focus { border-color: var(--border-a); }
.wlt-search-wrap i {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 13px;
}
.wlt-filter-select {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--dim); outline: none; cursor: pointer;
}
.wlt-date-input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 7px 12px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--white); outline: none;
}

/* ── MODAL ── */
.wlt-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); z-index: 200;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.wlt-modal-overlay.open { display: flex; }
.wlt-modal {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  position: relative;
}
.wlt-modal::before {
  content: '';
  position: absolute; top: -1px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.wlt-modal-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 20px; gap: 12px;
}
.wlt-modal-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
}
.wlt-modal-close {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 14px; flex-shrink: 0; transition: all .15s;
  background: none; font-family: inherit;
}
.wlt-modal-close:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.3); color: var(--red);
}
.wlt-modal-fields { display: flex; flex-direction: column; gap: 14px; }
.wlt-modal-field { display: flex; flex-direction: column; gap: 6px; }
.wlt-modal-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--dim);
}
.wlt-modal-input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.wlt-modal-input::placeholder { color: var(--muted); }
.wlt-modal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-10);
}
.wlt-modal-input.ta { resize: vertical; min-height: 90px; }
.wlt-modal-footer { margin-top: 20px; display: flex; gap: 10px; }

/* ── TOGGLE ── */
.wlt-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px;
}
.wlt-toggle {
  width: 36px; height: 20px; border-radius: 999px;
  background: var(--surf3); border: 1px solid var(--border);
  cursor: pointer; position: relative; transition: background .2s; flex-shrink: 0;
}
.wlt-toggle.on { background: var(--accent); border-color: var(--accent); }
.wlt-toggle::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; transition: transform .2s;
}
.wlt-toggle.on::after { transform: translateX(16px); }

/* ── KPI GRID ── */
.wlt-kpi-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-bottom: 16px;
}
.wlt-kpi-card { padding: 18px 20px; }
.wlt-kpi-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 8px;
}
.wlt-kpi-val {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800; letter-spacing: -1px; line-height: 1;
}
.wlt-kpi-icon {
  position: absolute; top: 14px; right: 16px;
  font-size: 18px; opacity: 0.5;
}
.wlt-kpi-change {
  font-size: 11px; font-weight: 600; margin-top: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px;
}
.wlt-kpi-change.up   { background: rgba(34,197,94,0.12);  color: var(--green); }
.wlt-kpi-change.down { background: rgba(239,68,68,0.12);  color: var(--red); }

/* ── CHART CARDS ── */
.wlt-chart-row { display: grid; gap: 14px; margin-bottom: 14px; }
.wlt-chart-row.col2 { grid-template-columns: 1.6fr 1fr; }
.wlt-chart-row.col3 { grid-template-columns: 1fr 1fr 1fr; }
.wlt-chart-card { padding: 20px; }
.wlt-chart-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 4px;
}
.wlt-chart-sub { font-size: 12px; color: var(--dim); margin-bottom: 14px; }

/* Horizontal bar */
.wlt-hbar-list { display: flex; flex-direction: column; gap: 10px; }
.wlt-hbar-row  { display: flex; flex-direction: column; gap: 4px; }
.wlt-hbar-meta { display: flex; justify-content: space-between; font-size: 12px; }
.wlt-hbar-name { color: var(--dim); }
.wlt-hbar-val  { font-weight: 600; }
.wlt-hbar-track {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 999px; overflow: hidden;
}
.wlt-hbar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent-deep));
}

/* Section dividers */
.wlt-section-divider {
  display: flex; align-items: center; gap: 10px; margin: 18px 0 14px;
}
.wlt-section-line { flex: 1; height: 1px; background: var(--border); }
.wlt-source-ga   { background: rgba(234,88,12,0.15);  color: #ea580c; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }
.wlt-source-gads { background: rgba(59,130,246,0.15); color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }

/* Campaigns table */
.wlt-ads-table { width: 100%; border-collapse: collapse; }
.wlt-ads-table th {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  padding: 9px 12px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.wlt-ads-table td {
  padding: 10px 12px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wlt-ads-table tr:last-child td { border-bottom: none; }
.wlt-ads-table tr:hover td { background: rgba(255,255,255,0.02); }
.wlt-trend-up   { color: var(--green); font-weight: 600; }
.wlt-trend-down { color: var(--red);   font-weight: 600; }
.wlt-trend-neu  { color: var(--dim); }

.wlt-disconnect-btn {
  padding: 7px 14px; border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px; background: rgba(239,68,68,0.08);
  color: var(--red); font-size: 12px; font-weight: 600; cursor: pointer;
}

/* ── TABLES (general) ── */
.wlt-table-wrap { overflow-x: auto; }
.wlt-table { width: 100%; border-collapse: collapse; }
.wlt-table thead tr { border-bottom: 1px solid var(--border); }
.wlt-table th {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  padding: 10px 14px; text-align: left; white-space: nowrap;
}
.wlt-table td {
  padding: 12px 14px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wlt-table tr:last-child td { border-bottom: none; }
.wlt-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── BLOG ── */
.wlt-collapsible-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; user-select: none;
  border-radius: 16px; transition: background .15s;
}
.wlt-collapsible-header:hover { background: rgba(255,255,255,0.02); }
.wlt-collapsible-body {
  overflow: hidden; max-height: 0;
  transition: max-height .35s cubic-bezier(0.4,0,0.2,1);
}
.wlt-collapsible-body.open { max-height: 500px; }
.wlt-collapsible-inner { padding: 0 20px 20px; }
.wlt-collapsible-chevron {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); transition: transform .3s;
}
.wlt-collapsible-chevron.open { transform: rotate(180deg); }

.wlt-blog-subtabs {
  display: flex; gap: 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.wlt-blog-subtab {
  padding: 9px 16px; font-size: 13px; font-weight: 500;
  color: var(--dim); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .15s;
}
.wlt-blog-subtab:hover { color: var(--white); }
.wlt-blog-subtab.active { color: var(--white); border-bottom-color: var(--accent); }
.wlt-blog-subtab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; margin-left: 6px;
}

.wlt-approval-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.wlt-approval-card {
  padding: 18px; display: flex; flex-direction: column;
  gap: 12px; transition: border-color .2s;
}
.wlt-approval-card:hover { border-color: var(--border-a); }
.wlt-approval-top { display: flex; align-items: flex-start; gap: 12px; }
.wlt-approval-img {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surf3); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.wlt-approval-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  line-height: 1.3; margin-bottom: 2px;
}
.wlt-approval-cat { font-size: 11px; color: var(--muted); }
.wlt-approval-excerpt {
  font-size: 12px; color: var(--dim); line-height: 1.65;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.wlt-approval-actions { display: flex; gap: 6px; }

.wlt-blog-list { display: flex; flex-direction: column; gap: 8px; }
.wlt-blog-row {
  padding: 14px 18px; display: flex; align-items: center;
  gap: 14px; transition: border-color .2s;
}
.wlt-blog-row:hover { border-color: var(--border-a); }
.wlt-blog-thumb {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--surf3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.wlt-blog-info { flex: 1; min-width: 0; }
.wlt-blog-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wlt-blog-meta { font-size: 11px; color: var(--dim); margin-top: 2px; }
.wlt-blog-actions { display: flex; gap: 6px; flex-shrink: 0; }

/* Blog settings form */
.wlt-settings-grid {
  display: grid; grid-template-columns: auto 1fr 1fr;
  gap: 12px; align-items: end; margin-bottom: 14px;
}
.wlt-field-group { display: flex; flex-direction: column; gap: 6px; }
.wlt-field-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--dim);
}
.wlt-field-input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 12px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--white); outline: none; width: 100%;
}
.wlt-field-input:focus { border-color: var(--accent); }
.wlt-posts-per-row { display: flex; gap: 8px; }
.wlt-posts-per-row input { width: 64px; }

/* ── SOCIAL ── */
.wlt-platform-pills { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.wlt-platform-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  cursor: pointer; font-size: 12px; font-weight: 500;
  color: var(--dim); transition: all .2s; user-select: none;
}
.wlt-platform-pill:hover { border-color: var(--border-a); color: var(--white); }
.wlt-platform-pill.active { border-color: var(--accent); background: var(--accent-10); color: var(--white); }
.wlt-pill-icon {
  width: 18px; height: 18px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.wlt-pill-ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.wlt-pill-fb { background: #1877F2; }
.wlt-pill-tw { background: #000; border: 1px solid rgba(255,255,255,0.15); }
.wlt-pill-li { background: #0A66C2; }

.wlt-social-empty {
  display: flex; flex-direction: column; align-items: center;
  padding: 64px 24px; text-align: center; gap: 14px;
}
.wlt-social-empty-icon {
  width: 68px; height: 68px; border-radius: 20px;
  background: var(--accent-10); border: 1px solid var(--border-a);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.wlt-social-empty-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
}
.wlt-social-empty-sub { font-size: 13px; color: var(--dim); max-width: 280px; line-height: 1.7; }

/* ── WOOCOMMERCE TABS ── */
.wlt-woo-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 4px;
}
.wlt-woo-tab {
  padding: 9px; text-align: center; border-radius: 9px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  cursor: pointer; color: var(--dim); transition: all .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.wlt-woo-tab.active {
  background: linear-gradient(130deg, var(--accent-bright), var(--accent-deep));
  color: #fff; box-shadow: 0 2px 12px var(--accent-30);
}
.wlt-tab-content { display: none; }
.wlt-tab-content.active { display: block; }

/* Products grid */
.wlt-product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.wlt-product-card {
  padding: 0; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.wlt-product-card:hover { border-color: var(--border-a); transform: translateY(-2px); }
.wlt-product-img {
  width: 100%; height: 130px; border-radius: 15px 15px 0 0;
  background: var(--surf3); display: flex; align-items: center;
  justify-content: center; font-size: 36px; position: relative; overflow: hidden;
}
.wlt-product-body {
  padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.wlt-product-name {
  font-family: var(--font-display); font-size: 13px; font-weight: 700; line-height: 1.3;
}
.wlt-product-price { font-size: 17px; font-weight: 700; color: var(--accent); font-family: var(--font-display); }
.wlt-product-stock { font-size: 11px; color: var(--dim); }
.wlt-product-actions { display: flex; gap: 6px; margin-top: auto; }

/* ── PROJECT TRACKER ── */
.wlt-alert-banner {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; border-radius: 14px;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  margin-bottom: 20px;
}
.wlt-alert-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.wlt-alert-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  margin-bottom: 3px;
}
.wlt-alert-title.amber { color: var(--amber); }
.wlt-alert-body { font-size: 12px; color: var(--dim); line-height: 1.6; }

.wlt-timeline {
  display: flex; align-items: flex-start;
  gap: 0; margin-bottom: 24px; position: relative; padding: 0 10px;
}
.wlt-timeline-step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; position: relative;
}
.wlt-timeline-step::before {
  content: ''; position: absolute; top: 18px;
  left: calc(-50%); right: calc(50%);
  height: 2px; background: var(--border); z-index: 0;
}
.wlt-timeline-step:first-child::before { display: none; }
.wlt-timeline-step.done::before { background: var(--green); }
.wlt-timeline-step.active-step::before { background: linear-gradient(90deg, var(--green), var(--accent)); }
.wlt-timeline-dot {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 1; flex-shrink: 0;
  border: 2px solid var(--border); background: var(--surf3); transition: all .2s;
}
.wlt-timeline-step.done      .wlt-timeline-dot { background: rgba(34,197,94,0.15); border-color: var(--green); }
.wlt-timeline-step.active-step .wlt-timeline-dot { background: var(--accent-10); border-color: var(--accent); box-shadow: 0 0 16px var(--accent-30); }
.wlt-timeline-step.waiting   .wlt-timeline-dot { background: rgba(245,158,11,0.12); border-color: var(--amber); animation: wlt-pulse-amber 2s ease-in-out infinite; }
@keyframes wlt-pulse-amber { 0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,0.4);}50%{box-shadow:0 0 0 8px rgba(245,158,11,0);} }
.wlt-timeline-label { font-size: 11px; font-weight: 600; margin-top: 8px; text-align: center; color: var(--muted); }
.wlt-timeline-step.done       .wlt-timeline-label { color: var(--green); }
.wlt-timeline-step.active-step .wlt-timeline-label { color: var(--white); }
.wlt-timeline-step.waiting    .wlt-timeline-label { color: var(--amber); }

.wlt-cr-list { display: flex; flex-direction: column; gap: 10px; }
.wlt-cr-item {
  padding: 14px 18px; display: flex; align-items: center;
  gap: 14px; transition: border-color .15s;
}
.wlt-cr-item:hover { border-color: var(--border-a); }
.wlt-cr-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.wlt-cr-icon.needed   { background: rgba(245,158,11,0.12); }
.wlt-cr-icon.uploaded { background: rgba(34,197,94,0.12); }
.wlt-cr-icon.reviewed { background: rgba(59,130,246,0.12); }
.wlt-cr-info { flex: 1; }
.wlt-cr-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.wlt-cr-note  { font-size: 12px; color: var(--dim); margin-top: 2px; line-height: 1.5; }
.wlt-cr-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── INVOICES ── */
.wlt-invoice-list { display: flex; flex-direction: column; gap: 8px; }
.wlt-invoice-row {
  padding: 14px 18px; display: flex; align-items: center;
  gap: 14px; transition: border-color .15s; cursor: pointer;
}
.wlt-invoice-row:hover { border-color: var(--border-a); }
.wlt-inv-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-10); border: 1px solid var(--border-a);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.wlt-inv-info { flex: 1; }
.wlt-inv-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.wlt-inv-date { font-size: 12px; color: var(--dim); margin-top: 2px; }
.wlt-inv-amount { font-family: var(--font-display); font-size: 16px; font-weight: 800; flex-shrink: 0; }

/* ── SUPPORT ── */
.wlt-ticket-list { display: flex; flex-direction: column; gap: 8px; }
.wlt-ticket-row {
  padding: 16px 18px; display: flex; align-items: flex-start;
  gap: 14px; transition: border-color .15s; cursor: pointer;
}
.wlt-ticket-row:hover { border-color: var(--border-a); }
.wlt-ticket-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.wlt-ticket-icon.open       { background: rgba(245,158,11,0.12); }
.wlt-ticket-icon.closed     { background: rgba(34,197,94,0.12); }
.wlt-ticket-icon.inprogress { background: rgba(59,130,246,0.12); }
.wlt-ticket-info { flex: 1; }
.wlt-ticket-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.wlt-ticket-meta  { font-size: 12px; color: var(--dim); }
.wlt-ticket-response {
  font-size: 12px; color: var(--text); margin-top: 6px;
  padding: 8px 12px; background: rgba(255,255,255,0.04);
  border-radius: 8px; border-left: 2px solid var(--accent); line-height: 1.6;
}

/* ── BRAND VAULT ── */
.wlt-vault-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.wlt-vault-card {
  padding: 0; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s; cursor: pointer;
}
.wlt-vault-card:hover { border-color: var(--border-a); transform: translateY(-2px); }
.wlt-vault-preview {
  width: 100%; height: 110px; border-radius: 15px 15px 0 0;
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  position: relative; overflow: hidden;
}
.wlt-vault-preview.logo-bg  { background: linear-gradient(135deg, var(--surf3), var(--surf2)); }
.wlt-vault-preview.color-bg { background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep)); }
.wlt-vault-preview.guide-bg { background: linear-gradient(135deg, #0a0020, var(--surf3)); }
.wlt-vault-body { padding: 12px 14px; }
.wlt-vault-name { font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.wlt-vault-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.wlt-dl-btn {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; opacity: 0; transition: opacity .15s; text-decoration: none; color: #fff;
}
.wlt-vault-card:hover .wlt-dl-btn { opacity: 1; }

.wlt-color-swatches { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.wlt-swatch {
  width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1); transition: transform .15s;
}
.wlt-swatch:hover { transform: scale(1.1); }
.wlt-swatch-label { font-size: 9px; text-align: center; color: var(--muted); margin-top: 4px; }

/* ── MONTHLY REPORT ── */
.wlt-report-hero {
  padding: 28px; display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, var(--accent-10), rgba(168,17,94,0.05));
  border-radius: 16px; margin-bottom: 16px; border: 1px solid var(--border-a);
}
.wlt-report-badge {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 0 24px var(--accent-30); flex-shrink: 0;
}
.wlt-report-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
}
.wlt-report-sub { font-size: 13px; color: var(--dim); margin-top: 4px; line-height: 1.6; }
.wlt-report-highlights {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px;
}
.wlt-highlight-card { padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.wlt-highlight-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.wlt-highlight-val  { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.wlt-highlight-label{ font-size: 11px; color: var(--dim); margin-top: 1px; }
.wlt-highlight-change { font-size: 11px; font-weight: 600; margin-top: 4px; }
.wlt-summary-card { padding: 22px; }
.wlt-summary-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.wlt-summary-body { font-size: 13px; color: var(--dim); line-height: 1.85; }
.wlt-summary-body strong { color: var(--text); font-weight: 600; }
.wlt-summary-body .wlt-hl { color: var(--accent); font-weight: 600; }

/* ── NOTIFICATIONS ── */
.wlt-notif-list { display: flex; flex-direction: column; gap: 6px; }
.wlt-notif-item {
  padding: 14px 18px; display: flex; align-items: flex-start;
  gap: 14px; transition: border-color .15s; cursor: pointer;
}
.wlt-notif-item:hover { border-color: var(--border-a); }
.wlt-notif-item.unread { background: rgba(212,23,122,0.04); }
.wlt-notif-dot-wrap { padding-top: 4px; }
.wlt-notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-bright); box-shadow: 0 0 6px var(--accent-bright);
}
.wlt-notif-dot.read { background: var(--muted); box-shadow: none; }
.wlt-notif-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.wlt-notif-info { flex: 1; }
.wlt-notif-title { font-size: 13px; font-weight: 500; line-height: 1.4; margin-bottom: 3px; }
.wlt-notif-item.unread .wlt-notif-title { font-weight: 600; color: var(--white); }
.wlt-notif-time { font-size: 11px; color: var(--muted); }

/* ── PROFILE ── */
.wlt-profile-avatar-lg {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  box-shadow: 0 0 24px var(--accent-30); color: #fff;
}

/* ── EMPTY STATE ── */
.wlt-empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; padding: 52px; text-align: center;
}
.wlt-empty-icon { font-size: 38px; opacity: 0.4; }
.wlt-empty-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--dim); }
.wlt-empty-sub { font-size: 13px; color: var(--muted); }

/* ── LOGIN PAGE ── */
.wlt-login-page {
  min-height: 100vh; display: grid; grid-template-columns: 1.1fr 0.9fr;
  position: relative; z-index: 2;
}
.wlt-login-brand {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 52px 60px;
}
.wlt-login-brand-body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 36px; }
.wlt-login-headline {
  font-family: var(--font-display); font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 800; line-height: 1.04; letter-spacing: -1.5px;
}
.wlt-login-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-bright), #FF80C8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wlt-login-sub { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--dim); max-width: 380px; }
.wlt-login-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.wlt-login-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border-a); color: rgba(212,23,122,0.9);
  background: var(--accent-10); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.wlt-login-tagline { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.wlt-login-tagline strong { color: rgba(255,255,255,0.4); font-weight: 500; }

.wlt-login-form-side {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 56px 40px 32px;
}
.wlt-login-card {
  width: 100%; max-width: 400px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border); border-radius: 28px;
  padding: 48px 40px;
  backdrop-filter: blur(32px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  position: relative; overflow: hidden;
}
.wlt-login-card::before {
  content: '';
  position: absolute; top: -1px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.wlt-login-eyebrow {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.wlt-login-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.wlt-login-hint { font-size: 13px; font-weight: 300; color: var(--dim); margin-bottom: 36px; line-height: 1.6; }
.wlt-login-field { margin-bottom: 18px; }
.wlt-login-field-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; display: block;
}
.wlt-login-input-wrap { position: relative; }
.wlt-login-input-wrap i {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.25); font-size: 14px;
  transition: color .25s; pointer-events: none;
}
.wlt-login-input-wrap:focus-within i { color: var(--accent); }
.wlt-login-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 13px 14px 13px 42px;
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--white); outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.wlt-login-input::placeholder { color: rgba(255,255,255,0.2); }
.wlt-login-input:focus {
  border-color: var(--accent);
  background: var(--accent-10);
  box-shadow: 0 0 0 3px var(--accent-10);
}
.wlt-login-forgot {
  display: block; text-align: right; font-size: 12px;
  color: rgba(255,255,255,0.35); text-decoration: none; margin-top: 8px; transition: color .2s;
}
.wlt-login-forgot:hover { color: rgba(212,23,122,0.9); }
.wlt-remember-row { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.wlt-check-box {
  width: 16px; height: 16px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.04);
  cursor: pointer; flex-shrink: 0; transition: all .2s; position: relative;
}
.wlt-check-box.checked { background: var(--accent); border-color: var(--accent); }
.wlt-check-box.checked::after {
  content: ''; position: absolute; top: 3px; left: 5px;
  width: 4px; height: 7px; border: 2px solid white;
  border-top: none; border-left: none; transform: rotate(45deg);
}
.wlt-remember-label { font-size: 13px; color: var(--dim); cursor: pointer; user-select: none; }
.wlt-login-btn {
  width: 100%; padding: 15px; border: none; border-radius: 14px;
  background: linear-gradient(130deg, var(--accent-bright) 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: white; font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .3s;
  box-shadow: 0 6px 30px var(--accent-30);
}
.wlt-login-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
}
.wlt-login-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 44px var(--accent-30); }
.wlt-login-btn:active { transform: translateY(0); }
.wlt-login-btn-inner { display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; }
.wlt-login-btn-arrow { transition: transform .2s; }
.wlt-login-btn:hover .wlt-login-btn-arrow { transform: translateX(3px); }
.wlt-login-footer {
  margin-top: 24px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.wlt-login-footer a { color: rgba(212,23,122,0.7); text-decoration: none; transition: color .2s; }
.wlt-login-footer a:hover { color: var(--accent-bright); }
.wlt-secured {
  display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 20px;
}
.wlt-secured-text { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.wlt-login-error {
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; color: var(--red); margin-bottom: 16px;
}

/* ── ANIMATIONS ── */
@keyframes wlt-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wlt-fade-in { animation: wlt-fade-in .25s ease both; }
@keyframes wlt-slide-left  { from{opacity:0;transform:translateX(-24px);} to{opacity:1;transform:translateX(0);} }
@keyframes wlt-slide-right { from{opacity:0;transform:translateX(24px);}  to{opacity:1;transform:translateX(0);} }
.wlt-slide-left  { animation: wlt-slide-left  .9s cubic-bezier(0.16,1,0.3,1) both; }
.wlt-slide-right { animation: wlt-slide-right .9s 0.12s cubic-bezier(0.16,1,0.3,1) both; }

/* ── SPINNER ── */
.wlt-spinner {
  border: 2px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 50%; width: 28px; height: 28px;
  animation: wlt-spin 1s linear infinite; margin: 0 auto 8px;
}
@keyframes wlt-spin { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .wlt-login-page { grid-template-columns: 1fr; }
  .wlt-login-brand { padding: 40px 32px 24px; }
  .wlt-login-form-side { padding: 24px 24px 48px; }
  .wlt-kpi-grid { grid-template-columns: repeat(2,1fr); }
  .wlt-chart-row.col2 { grid-template-columns: 1fr; }
  .wlt-settings-grid { grid-template-columns: 1fr; }
  .wlt-report-highlights { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   DARK THEME  (body.wlt-theme-dark)
════════════════════════════════════════ */
body.wlt-theme-dark {
  --accent:#4A90A4;--accent-bright:#5BA3B8;--accent-deep:#357A8F;
  --accent-10:rgba(74,144,164,0.10);--accent-15:rgba(74,144,164,0.15);
  --accent-20:rgba(74,144,164,0.20);--accent-30:rgba(74,144,164,0.25);
  --bg:#0C0C0E;--surf:#141416;--surf2:#1C1C1F;--surf3:#242428;
  --border:rgba(255,255,255,0.07);--border-a:rgba(74,144,164,0.22);
  --text:rgba(255,255,255,0.88);--dim:rgba(255,255,255,0.45);--muted:rgba(255,255,255,0.22);--white:#fff;
  --green:#22c55e;--amber:#f59e0b;--red:#ef4444;--blue:#3b82f6;
}
body.wlt-theme-dark .wlt-scene{background:#0C0C0E;}
body.wlt-theme-dark .wlt-scene::before{background:radial-gradient(circle 500px at 80% 20%,rgba(74,144,164,0.05) 0%,transparent 65%);}
body.wlt-theme-dark .wlt-noise{opacity:0.12;}
body.wlt-theme-dark .wlt-topbar{background:rgba(12,12,14,0.98);}
body.wlt-theme-dark .wlt-sidebar{background:rgba(12,12,14,0.95);}
body.wlt-theme-dark .wlt-notif-pip{border-color:#0C0C0E;}

/* ════════════════════════════════════════
   LIGHT THEME  (body.wlt-theme-light)
════════════════════════════════════════ */
body.wlt-theme-light {
  --accent:#4A5568;--accent-bright:#2D3748;--accent-deep:#1A202C;
  --accent-10:rgba(74,85,104,0.08);--accent-15:rgba(74,85,104,0.12);
  --accent-20:rgba(74,85,104,0.16);--accent-30:rgba(74,85,104,0.20);
  --bg:#F0F2F5;--surf:#FFFFFF;--surf2:#F8F9FA;--surf3:#EDF0F3;
  --border:rgba(0,0,0,0.08);--border-a:rgba(74,85,104,0.16);
  --text:rgba(10,15,25,0.82);--dim:rgba(10,15,25,0.48);--muted:rgba(10,15,25,0.3);--white:#111827;
  --green:#16a34a;--amber:#d97706;--red:#dc2626;--blue:#2563eb;
}
body.wlt-theme-light .wlt-scene{background:#F0F2F5;}
body.wlt-theme-light .wlt-scene::before{background:none;}
body.wlt-theme-light .wlt-noise{opacity:0.04;}
body.wlt-theme-light .wlt-topbar{background:rgba(255,255,255,0.97);border-bottom:1px solid rgba(0,0,0,0.08);box-shadow:0 1px 3px rgba(0,0,0,0.06);}
body.wlt-theme-light .wlt-sidebar{background:rgba(255,255,255,0.98);border-right:1px solid rgba(0,0,0,0.08);}
body.wlt-theme-light .wlt-card{background:rgba(255,255,255,0.96);border:1px solid rgba(0,0,0,0.08);box-shadow:0 1px 8px rgba(0,0,0,0.05);}
body.wlt-theme-light .wlt-card::before{display:none;}
body.wlt-theme-light .wlt-main{background:#F0F2F5;}
body.wlt-theme-light .wlt-notif-pip{border-color:#F0F2F5;}
body.wlt-theme-light .wlt-logo-name{color:#111827;}
body.wlt-theme-light .wlt-nav-label{color:rgba(0,0,0,0.28);}
body.wlt-theme-light .wlt-nav-item{color:rgba(0,0,0,0.45);}
body.wlt-theme-light .wlt-nav-item:hover{background:rgba(74,85,104,0.08);color:#111827;}
body.wlt-theme-light .wlt-nav-item.active{background:rgba(74,85,104,0.1);color:#111827;border-color:rgba(74,85,104,0.2);}
body.wlt-theme-light .wlt-nav-bottom{border-top:1px solid rgba(0,0,0,0.08);}
body.wlt-theme-light .wlt-topbar-user{background:rgba(74,85,104,0.08);border-color:rgba(74,85,104,0.18);}
body.wlt-theme-light .wlt-topbar-user span{color:#111827;}
body.wlt-theme-light .wlt-topbar-search input{background:rgba(0,0,0,0.05);border-color:rgba(0,0,0,0.1);color:#111827;}
body.wlt-theme-light .wlt-notif-bell{background:rgba(0,0,0,0.04);border-color:rgba(0,0,0,0.09);}
body.wlt-theme-light .wlt-modal{background:#FFFFFF;}
body.wlt-theme-light .wlt-modal::before{display:none;}
body.wlt-theme-light .wlt-modal-input{background:#F8F9FA;border-color:rgba(0,0,0,0.09);color:#111827;}
body.wlt-theme-light .wlt-modal-label{color:rgba(0,0,0,0.45);}
body.wlt-theme-light .wlt-filter-select{background:#F0F2F5;border-color:rgba(0,0,0,0.09);color:rgba(0,0,0,0.55);}
body.wlt-theme-light .wlt-search-wrap input{background:#F0F2F5;border-color:rgba(0,0,0,0.09);color:#111827;}
body.wlt-theme-light .wlt-date-input{background:#F0F2F5;border-color:rgba(0,0,0,0.09);color:#111827;}
body.wlt-theme-light .wlt-toggle-row{background:#F8F9FA;border-color:rgba(0,0,0,0.08);}
body.wlt-theme-light .wlt-toggle{background:#CBD5E0;border-color:rgba(0,0,0,0.1);}
body.wlt-theme-light .wlt-page-title{color:#0F1520;}
body.wlt-theme-light .wlt-page-sub{color:rgba(0,0,0,0.45);}
body.wlt-theme-light .wlt-kpi-label{color:rgba(0,0,0,0.42);}
body.wlt-theme-light .wlt-chart-sub{color:rgba(0,0,0,0.42);}
body.wlt-theme-light .wlt-hbar-name{color:rgba(0,0,0,0.45);}
body.wlt-theme-light .wlt-hbar-track{background:rgba(0,0,0,0.07);}
body.wlt-theme-light .wlt-section-line{background:rgba(0,0,0,0.08);}
body.wlt-theme-light .wlt-table th{color:rgba(0,0,0,0.32);border-bottom-color:rgba(0,0,0,0.07);}
body.wlt-theme-light .wlt-table td{border-bottom-color:rgba(0,0,0,0.05);color:rgba(0,0,0,0.75);}
body.wlt-theme-light .wlt-woo-tabs{background:rgba(0,0,0,0.05);}
body.wlt-theme-light .wlt-woo-tab{color:rgba(0,0,0,0.38);}
body.wlt-theme-light .wlt-blog-subtabs{border-bottom-color:rgba(0,0,0,0.08);}
body.wlt-theme-light .wlt-blog-subtab{color:rgba(0,0,0,0.38);}
body.wlt-theme-light .wlt-blog-subtab.active{color:#111827;border-bottom-color:#2D3748;}
body.wlt-theme-light .wlt-blog-subtab-badge{background:#2D3748;}
body.wlt-theme-light .wlt-platform-pill{background:rgba(0,0,0,0.04);border-color:rgba(0,0,0,0.09);color:rgba(0,0,0,0.45);}
body.wlt-theme-light .wlt-platform-pill.active{background:#2D3748;border-color:#2D3748;color:#fff;}
body.wlt-theme-light .wlt-approval-excerpt{border-top-color:rgba(0,0,0,0.07);}
body.wlt-theme-light .wlt-ticket-response{background:#F8F9FA;border-left-color:#4A5568;color:rgba(0,0,0,0.65);}
body.wlt-theme-light .wlt-report-hero{background:linear-gradient(135deg,#EDF0F3,#F8F9FA);border-color:rgba(0,0,0,0.1);}
body.wlt-theme-light .wlt-btn-ghost{border-color:rgba(0,0,0,0.1);color:rgba(0,0,0,0.48);}
body.wlt-theme-light .wlt-btn-sm{background:#F0F2F5;border-color:rgba(0,0,0,0.09);color:rgba(0,0,0,0.5);}
body.wlt-theme-light .wlt-disconnect-btn{background:rgba(220,38,38,0.06);border-color:rgba(220,38,38,0.2);}
body.wlt-theme-light .wlt-login-page .wlt-scene{background:#F0F2F5;}
body.wlt-theme-light .wlt-login-card{background:rgba(255,255,255,0.95);border-color:rgba(0,0,0,0.1);}
body.wlt-theme-light .wlt-login-card::before{display:none;}
body.wlt-theme-light .wlt-login-input{background:rgba(0,0,0,0.04);border-color:rgba(0,0,0,0.1);color:#111827;}
body.wlt-theme-light .wlt-swatch-label{color:rgba(0,0,0,0.4);}
body.wlt-theme-light .wlt-empty-title{color:rgba(0,0,0,0.38);}
body.wlt-theme-light .wlt-empty-sub{color:rgba(0,0,0,0.28);}
body.wlt-theme-light .wlt-collapsible-header:hover{background:rgba(0,0,0,0.02);}
body.wlt-theme-light .wlt-inv-icon{background:#F0F2F5;border-color:rgba(0,0,0,0.09);}
body.wlt-theme-light .wlt-timeline-dot{background:#EDF0F3;border-color:rgba(0,0,0,0.12);}
body.wlt-theme-light .wlt-timeline-label{color:rgba(0,0,0,0.32);}
body.wlt-theme-light .wlt-cr-note{color:rgba(0,0,0,0.45);}
