﻿:root {
  --navy: #0B2D4E;
  --navy-dark: #071E34;
  --navy-light: #1A4268;
  --teal: #0A8070;
  --teal-dark: #076B5C;
  --teal-light: #E6F4F1;
  --orange: #E8961E;
  --orange-light: #FEF3E2;
  --gold: #D4A017;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --red: #DC2626;
  --blue: #2563EB;
  --purple: #7C3AED;
  --green: #059669;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;

  --sidebar-w: 252px;
  --topbar-h: 64px;
  --right-w: 276px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.12);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 9999px;
  --t: 0.18s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--gray-900); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── LOGO ─────────────────────────────────────────────── */
.logo { display: inline-flex; align-items: flex-end; gap: 6px; user-select: none; }
.logo-brand { display: flex; flex-direction: column; line-height: 1; }
.logo-erezo { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -0.3px; }
.logo-plus { color: var(--orange); font-weight: 900; font-size: 22px; }
.logo-connect { font-family: var(--font-script); font-weight: 700; font-size: 15px; color: var(--navy); margin-top: -1px; }
.logo-flower { font-size: 16px; line-height: 1; margin-bottom: 3px; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 20px; border-radius: var(--r-full); font-size: 13.5px; font-weight: 600;
  transition: all var(--t); cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 12px 28px; font-size: 15px; }
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-link { color: var(--gray-600); font-size: 13.5px; font-weight: 500; padding: 9px 12px; display: inline-flex; align-items: center; }
.btn-link:hover { color: var(--teal); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); border-radius: var(--r-full); padding: 9px 20px; font-size: 13.5px; font-weight: 600; transition: all var(--t); cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ─── BADGES ────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: var(--r-full);
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
}
.badge-teal    { background: var(--teal-light); color: var(--teal-dark); }
.badge-orange  { background: var(--orange-light); color: #A05C00; }
.badge-navy    { background: var(--navy); color: #fff; }
.badge-red     { background: #FEE2E2; color: var(--red); }
.badge-green   { background: #D1FAE5; color: #065F46; }
.badge-purple  { background: #EDE9FE; color: #5B21B6; }
.badge-gold    { background: #FEF9C3; color: #78350F; }

/* ─── INPUTS ────────────────────────────────────────────── */
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .ico { position: absolute; left: 12px; color: var(--gray-400); font-size: 13px; pointer-events: none; }
.input {
  width: 100%; padding: 9px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full); font-size: 13.5px; color: var(--gray-900);
  background: var(--gray-50); outline: none; transition: border-color var(--t);
}
.input:focus { border-color: var(--teal); background: #fff; }
.input.with-ico { padding-left: 36px; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 60px 0; }
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sec-title { font-size: 17px; font-weight: 700; color: var(--navy); }
.see-all { font-size: 12.5px; color: var(--teal); font-weight: 600; display: flex; align-items: center; gap: 4px; transition: opacity var(--t); }
.see-all:hover { opacity: 0.75; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ─── AVATAR ────────────────────────────────────────────── */
.avatar { border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.av-xs  { width: 26px; height: 26px; }
.av-sm  { width: 34px; height: 34px; }
.av-md  { width: 42px; height: 42px; }
.av-lg  { width: 50px; height: 50px; }
.av-ph  {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 11px; flex-shrink: 0;
}
.av-teal   { background: var(--teal); }
.av-navy   { background: var(--navy); }
.av-orange { background: var(--orange); }
.av-purple { background: var(--purple); }
.av-green  { background: var(--green); }

/* ─── CARDS (shared) ────────────────────────────────────── */
.card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }

/* Offer card */
.offer-card { cursor: pointer; transition: transform var(--t), box-shadow var(--t); }
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.offer-img {
  height: 154px; background: linear-gradient(135deg,var(--teal-light),var(--gray-100));
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.offer-img img { width: 100%; height: 100%; object-fit: cover; }
.offer-img .badge { position: absolute; top: 10px; left: 10px; }
.offer-body { padding: 13px; }
.offer-name { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.offer-sub  { font-size: 11.5px; color: var(--gray-500); margin-bottom: 6px; }
.offer-desc { font-size: 12px; color: var(--gray-600); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.offer-foot { display: flex; align-items: center; justify-content: space-between; padding: 9px 13px; border-top: 1px solid var(--gray-100); }
.offer-author { display: flex; align-items: center; gap: 7px; }
.offer-author-name { font-size: 11.5px; font-weight: 600; color: var(--navy); }

/* Demand card */
.demand-card {
  background: #fff; border-radius: var(--r-lg); padding: 14px; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: transform var(--t), box-shadow var(--t);
  display: flex; gap: 12px; align-items: flex-start;
}
.demand-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.demand-ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px;
}
.demand-body { flex: 1; min-width: 0; }
.demand-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.demand-desc  { font-size: 12px; color: var(--gray-600); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.demand-meta  { display: flex; align-items: center; gap: 10px; }
.demand-time  { font-size: 11px; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.demand-arrow { color: var(--gray-300); font-size: 13px; flex-shrink: 0; margin-top: 2px; }

/* Stat widget */
.stat-w { background: #fff; border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px; }
.stat-ico { width: 50px; height: 50px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.ico-teal   { background: var(--teal-light); color: var(--teal); }
.ico-orange { background: var(--orange-light); color: var(--orange); }
.ico-blue   { background: #DBEAFE; color: var(--blue); }
.ico-purple { background: #EDE9FE; color: var(--purple); }
.stat-num   { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.stat-lbl   { font-size: 11.5px; color: var(--gray-500); margin-bottom: 3px; }
.stat-trend { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 3px; }
.trend-up   { color: var(--green); }
.trend-down { color: var(--red); }

/* FidelyPass widget */
.fidelypass-w {
  background: linear-gradient(140deg, #0B2D4E 0%, #1A4268 100%);
  border-radius: var(--r-lg); padding: 22px; color: #fff;
  position: relative; overflow: hidden;
}
.fidelypass-w::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.fidelypass-w::after {
  content: ''; position: absolute; bottom: -15px; right: 30px;
  width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.fp-label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gold); margin-bottom: 6px; }
.fp-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.fp-amount { font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; margin: 6px 0; }
.fp-amount span { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 400; }
.fp-desc { font-size: 11.5px; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 14px; }

/* Member item */
.member-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--gray-100); }
.member-row:last-child { border-bottom: none; }
.member-info { flex: 1; min-width: 0; }
.member-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.member-role { font-size: 11px; color: var(--gray-500); }
.member-btn { font-size: 11px; font-weight: 600; color: var(--teal); padding: 4px 10px; border-radius: var(--r-full); border: 1.5px solid var(--teal); background: transparent; cursor: pointer; transition: all var(--t); }
.member-btn:hover { background: var(--teal); color: #fff; }

/* Event item */
.event-row { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--gray-100); cursor: pointer; }
.event-row:last-child { border-bottom: none; }
.event-date { width: 42px; height: 42px; border-radius: var(--r-md); background: var(--teal-light); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.ev-day  { font-size: 15px; font-weight: 800; color: var(--teal-dark); line-height: 1; }
.ev-mon  { font-size: 9px; font-weight: 700; color: var(--teal); text-transform: uppercase; }
.event-info { flex: 1; }
.event-title { font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.event-meta  { font-size: 11px; color: var(--gray-500); }

/* Campaign card */
.campaign-card {
  background: linear-gradient(135deg, #1A6B50 0%, #0A4035 100%);
  border-radius: var(--r-lg); padding: 20px; color: #fff;
  display: flex; gap: 18px; align-items: center; position: relative; overflow: hidden;
}
.campaign-card::before { content: ''; position: absolute; right: -16px; top: -16px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.camp-emoji { font-size: 34px; flex-shrink: 0; }
.camp-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.camp-desc  { font-size: 11.5px; color: rgba(255,255,255,0.7); margin-bottom: 12px; line-height: 1.5; }
.camp-stats { display: flex; gap: 22px; }
.camp-stat-val { font-size: 20px; font-weight: 800; color: var(--gold); }
.camp-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.6); }

/* ─── LANDING HEADER ────────────────────────────────────── */
.l-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-xs); }
.l-header-inner { display: flex; align-items: center; height: 64px; gap: 0; }
.l-nav { display: flex; align-items: center; gap: 2px; flex: 1; margin-left: 28px; }
.l-nav a { padding: 6px 10px; font-size: 13px; color: var(--gray-600); font-weight: 500; border-radius: var(--r-sm); transition: color var(--t), background var(--t); white-space: nowrap; }
.l-nav a:hover, .l-nav a.active { color: var(--navy); background: var(--gray-50); }
.l-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero { background: var(--cream); padding: 56px 0 40px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-eyebrow { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal); display: block; border-radius: 2px; }
.hero-title { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.hero-desc { font-size: 14.5px; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; max-width: 440px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 32px; }
.hero-badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--gray-600); font-weight: 500; }
.hero-badge i { color: var(--teal); font-size: 14px; }
.hero-img-wrap { position: relative; height: 460px; display: flex; align-items: flex-end; justify-content: center; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(135deg, #E8F5F2 0%, #FEF3E2 100%); }
.hero-img-wrap img { height: 100%; width: 100%; object-fit: contain; object-position: bottom center; }

/* ─── SECTION STYLES ────────────────────────────────────── */
.section-alt { background: #fff; }
.section-teal { background: var(--teal); color: #fff; }
.section-navy { background: var(--navy); color: #fff; }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); border: 1px solid var(--gray-100); }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feat-ico { width: 48px; height: 48px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feat-title { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.feat-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* Pricing */
.pricing-wrap { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 560px; margin: 0 auto; }
.price-card { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 2px solid var(--gray-200); }
.price-card.featured { border-color: var(--teal); }
.price-label { font-size: 10.5px; font-weight: 700; background: var(--teal); color: #fff; padding: 3px 10px; border-radius: var(--r-full); display: inline-block; margin-bottom: 12px; }
.price-amount { font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount sub { font-size: 15px; font-weight: 500; color: var(--gray-500); vertical-align: baseline; }
.price-period { font-size: 12.5px; color: var(--gray-500); margin-bottom: 18px; margin-top: 3px; }
.price-feats { margin-bottom: 22px; }
.price-feats li { font-size: 12.5px; color: var(--gray-600); padding: 5px 0; display: flex; gap: 8px; align-items: flex-start; }
.price-feats li i { color: var(--teal); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* Stats bar */
.stats-bar { background: var(--navy); padding: 36px 0; }
.stats-bar-inner { display: flex; align-items: center; justify-content: space-around; gap: 24px; }
.stat-bar-item { text-align: center; }
.stat-bar-val { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-bar-lbl { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.stat-bar-div { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }

/* Community */
.community-wrap { display: flex; align-items: center; gap: 48px; }
.community-text { color: #fff; flex: 1; }
.comm-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.comm-sub   { font-size: 13.5px; opacity: 0.8; line-height: 1.6; }
.comm-stats { display: flex; gap: 28px; flex-shrink: 0; }
.comm-stat  { text-align: center; }
.comm-val   { font-size: 32px; font-weight: 800; color: #fff; }
.comm-lbl   { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 12px; }
.footer-title { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer .logo-erezo  { color: #fff; }
.footer .logo-connect { color: rgba(255,255,255,0.75); }

/* ─── DASHBOARD LAYOUT ──────────────────────────────────── */
.db-layout { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w); background: var(--navy); flex-shrink: 0;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
  display: flex; flex-direction: column; overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.sidebar-logo { padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-logo .logo-erezo  { color: #fff; }
.sidebar-logo .logo-connect { color: rgba(255,255,255,0.8); }
.sidebar-logo .logo-flower  { opacity: 0.9; }
.sb-nav { padding: 10px 0; flex: 1; }
.sb-sep { padding: 10px 20px 3px; font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.28); }
.sb-item {
  display: flex; align-items: center; gap: 11px; padding: 9px 20px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.62);
  cursor: pointer; transition: all var(--t); text-decoration: none;
  border-left: 3px solid transparent;
}
.sb-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
.sb-item.active { color: #fff; background: rgba(255,255,255,0.1); border-left-color: var(--teal); }
.sb-item i { width: 17px; text-align: center; font-size: 14px; flex-shrink: 0; }
.sb-badge { margin-left: auto; background: var(--teal); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: var(--r-full); }
.sidebar-footer { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 10.5px; color: rgba(255,255,255,0.28); line-height: 1.55; }

/* Dashboard main area */
.db-main { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; min-width: 0; }

/* Topbar */
.topbar {
  background: #fff; border-bottom: 1px solid var(--gray-100); height: var(--topbar-h);
  display: flex; align-items: center; padding: 0 22px; gap: 14px;
  position: sticky; top: 0; z-index: 40; box-shadow: var(--shadow-xs);
}
.topbar-search { flex: 1; max-width: 380px; }
.topbar-location {
  display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--gray-600);
  font-weight: 500; padding: 6px 12px; background: var(--gray-50); border-radius: var(--r-full); border: 1px solid var(--gray-200);
}
.topbar-location i { color: var(--teal); font-size: 12px; }
.tb-actions { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.tb-btn {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: var(--gray-50); color: var(--gray-600);
  cursor: pointer; transition: all var(--t); position: relative; border: 1px solid var(--gray-200);
  font-size: 14px;
}
.tb-btn:hover { background: var(--gray-100); color: var(--navy); }
.notif-dot { position: absolute; top: -1px; right: -1px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; border: 2px solid #fff; }
.tb-user {
  display: flex; align-items: center; gap: 9px; padding: 4px 12px 4px 4px;
  background: var(--gray-50); border-radius: var(--r-full); border: 1px solid var(--gray-200);
  cursor: pointer; transition: all var(--t);
}
.tb-user:hover { background: var(--gray-100); }
.tb-user-name { font-size: 12.5px; font-weight: 600; color: var(--navy); }
.tb-user-role { font-size: 10.5px; color: var(--gray-500); }

/* Content */
.db-content { padding: 22px; flex: 1; display: flex; gap: 20px; }
.db-center { flex: 1; min-width: 0; }
.db-right  { width: var(--right-w); flex-shrink: 0; }

.welcome-head { margin-bottom: 20px; }
.welcome-title { font-size: 21px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.welcome-sub   { font-size: 13px; color: var(--gray-500); }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; margin-bottom: 22px; }

/* Panel block */
.panel-block { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 16px; margin-bottom: 16px; }
.panel-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.panel-title a { font-size: 11.5px; color: var(--teal); font-weight: 600; }

/* ─── MISC ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-100); margin: 14px 0; }
.txt-sm  { font-size: 12px; }
.txt-xs  { font-size: 11px; }
.muted   { color: var(--gray-500); }
.bold    { font-weight: 700; }
.mt-1  { margin-top: 4px; }
.mt-2  { margin-top: 8px; }
.mt-3  { margin-top: 12px; }
.mt-4  { margin-top: 16px; }
.mb-2  { margin-bottom: 8px; }
.mb-4  { margin-bottom: 16px; }
.mb-5  { margin-bottom: 20px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.flex-col { flex-direction: column; }
.w-full { width: 100%; }

/* Offer icon placeholder */
.offer-ico-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.offer-ico-wrap i { font-size: 42px; opacity: 0.25; color: var(--navy); }

@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .db-right { display: none; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
}
@media (max-width: 680px) {
  .l-nav { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sidebar { transform: translateX(-100%); }
  .db-main { margin-left: 0; }
}

/* Premium dashboard refresh - Codex pass */
.logo-plus{color:var(--gold)}
.logo-flower-img{width:30px;height:30px;object-fit:contain;margin-left:4px;margin-bottom:2px;filter:drop-shadow(0 7px 12px rgba(212,160,23,.22))}
.sidebar{background:linear-gradient(180deg,#071e34 0%,#0b2d4e 58%,#06434a 100%)}
.sidebar-logo{padding:22px 20px 18px}.sidebar-logo .logo{align-items:center}.sidebar-logo .logo-brand{gap:1px}.sidebar-logo .logo-plus{color:var(--gold)}
.sb-item{margin:1px 10px;border-radius:10px;border-left:0;padding:10px 12px}.sb-item.active{background:rgba(255,255,255,.13);box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);border-left:0}.sb-item.active i{color:var(--gold)}
.topbar{height:72px;background:rgba(255,255,255,.92);backdrop-filter:blur(16px)}.db-content{background:linear-gradient(180deg,#f9fafb 0%,#f5f3ee 100%)}
.welcome-head{background:#fff;border:1px solid var(--gray-100);border-radius:18px;padding:18px 20px;box-shadow:var(--shadow-sm)}.welcome-title{font-family:var(--font-display);font-size:26px;letter-spacing:0}.welcome-sub{color:#315168}
.stat-w,.card,.demand-card,.panel-block{border:1px solid rgba(11,45,78,.07);box-shadow:0 14px 32px rgba(11,45,78,.06)}.stat-w{min-height:118px}.stat-ico{border-radius:16px}.stat-num{font-size:30px}.quick-actions{gap:9px}.qa-btn{box-shadow:0 8px 18px rgba(11,45,78,.05)}
.offer-img{height:168px}.offer-img img{width:100%;height:100%;object-fit:cover}.campaign-card{background:linear-gradient(135deg,#063b42 0%,#0a8070 52%,#0b2d4e 100%);box-shadow:0 18px 42px rgba(6,59,66,.22)}.camp-mark{width:74px;height:74px;border-radius:20px;background:rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;flex-shrink:0}.camp-mark img{width:58px;height:58px;object-fit:contain}.camp-title{font-family:var(--font-display);font-size:22px}.camp-stat-val{color:var(--gold)}
.fidelypass-w{background:radial-gradient(circle at 85% 8%,rgba(212,160,23,.28),transparent 24%),linear-gradient(140deg,#071e34 0%,#0b6470 100%);box-shadow:0 18px 42px rgba(11,45,78,.2)}.fp-label{display:flex;align-items:center;gap:8px}.fp-flower{width:18px;height:18px;object-fit:contain}.fp-amount{color:var(--gold)}
@media (max-width:1100px){.topbar{gap:10px}.topbar-location{display:none}.tb-user-role{display:none}.db-content{padding:18px}.grid-3{grid-template-columns:1fr}.offer-img{height:150px}}
@media (max-width:760px){:root{--topbar-h:64px}.topbar{padding:0 12px}.topbar-search{max-width:none}.tb-actions .tb-btn:nth-child(3),.tb-user>div,.tb-user>i{display:none}.quick-actions{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.qa-btn{flex:0 0 auto}.stats-grid{grid-template-columns:1fr}.db-content{display:block;padding:14px}.welcome-title{font-size:22px}.tabs{overflow-x:auto}.campaign-card{align-items:flex-start;flex-direction:column}.camp-stats{flex-wrap:wrap;gap:14px}.sidebar{display:none}.db-main{margin-left:0}}

/* ═══════════════════════════════════════════════════
   MOBILE BURGER NAV — Pass Konekt
   ═══════════════════════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: none;
  border: 1px solid rgba(11,45,78,.14);
  border-radius: 10px;
  cursor: pointer;
  color: #243a55;
  font-size: 17px;
  flex-shrink: 0;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.mobile-menu-btn:hover { background: #f2fbf9; color: #008875; border-color: rgba(0,136,117,.3); }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(7,30,52,.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 760px) {
  .mobile-menu-btn { display: flex; }
  .sidebar {
    display: flex !important;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 50;
  }
  body.sidebar-open .sidebar  { transform: translateX(0); }
  body.sidebar-open .sidebar-overlay { display: block; }
}

.urgent-panel{border:1px solid rgba(220,38,38,.12)}.urgent-row{display:flex;gap:10px;padding:10px 0;border-bottom:1px solid var(--gray-100)}.urgent-row:last-child{border-bottom:0}.urgent-dot{width:10px;height:10px;border-radius:50%;background:var(--red);box-shadow:0 0 0 5px rgba(220,38,38,.09);margin-top:5px;flex-shrink:0}.urgent-dot.gold{background:var(--gold);box-shadow:0 0 0 5px rgba(212,160,23,.13)}.urgent-title{font-size:12.5px;font-weight:700;color:var(--navy)}.urgent-meta{font-size:11px;color:var(--gray-500);line-height:1.45;margin-top:2px}


.sidebar-logo .logo-image{display:block;align-items:center}
.sidebar-logo .logo-image img{width:164px;height:auto;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(0,0,0,.18))}

.fidelypass-asset{display:block;padding:0!important;background:none!important;border:0!important;box-shadow:none!important;overflow:hidden;text-decoration:none}.fidelypass-asset::before,.fidelypass-asset::after{display:none!important}.fidelypass-asset img{width:100%;height:100%;object-fit:cover;border-radius:14px;display:block}.db-right .fidelypass-asset{margin-bottom:14px}.db-right .fidelypass-asset img{height:auto;aspect-ratio:410/186}
