/* ═══════════════════════════════════════════════════════════════
   Epargn+ — style.css
   Design system partagé entre index, login, dashboard, admin
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --primary:       #0B1566;
  --primary-dark:  #060D45;
  --primary-light: #1D2D8A;
  --accent:        #C8E000;
  --accent-hover:  #B5CD00;
  --success:       #10B981;
  --warning:       #F59E0B;
  --error:         #EF4444;
  --bg:            #F4F6FF;
  --bg-light:      #EEF2FF;
  --surface:       #ffffff;
  --text:          #111827;
  --text-secondary:#6B7280;
  --text-hint:     #9CA3AF;
  --divider:       #E5E7EB;
  --border:        #E2E6F0;
  --radius-xs:     6px;
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     16px;
  --radius-xl:     20px;
  --radius-2xl:    24px;
  --shadow-sm:     0 1px 3px rgba(11,21,102,.08);
  --shadow:        0 4px 16px rgba(11,21,102,.10);
  --shadow-lg:     0 8px 32px rgba(11,21,102,.14);
  --sidebar-w:     240px;
  --topbar-h:      60px;
  --transition:    .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════
   SHARED UTILITIES
   ════════════════════════════════════════ */

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.mb-2  { margin-bottom:  8px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap     { display: flex; align-items: center; gap: 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.text-muted   { color: var(--text-secondary); }
.accent-text  { color: var(--accent); }
.link {
  background: none; border: none; cursor: pointer;
  color: var(--primary); font-weight: 600; font-size: inherit;
  font-family: inherit; text-decoration: underline; padding: 0;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius); border: none;
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity var(--transition), transform var(--transition),
    background var(--transition), border-color var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { opacity: .88; }

.btn-accent {
  background: var(--accent); color: var(--primary);
}
.btn-accent:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg-light); border-color: var(--primary); }

.btn-ghost {
  background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-danger {
  background: #FFF1F2; color: var(--error); border: 1.5px solid #FECACA;
}
.btn-danger:hover { background: #FFE4E6; }

.btn-success {
  background: #F0FDF4; color: var(--success); border: 1.5px solid #A7F3D0;
}
.btn-success:hover { background: #D1FAE5; }

.btn-sm { padding: 7px 14px; font-size: 12px; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }

.icon-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  color: var(--text-secondary); transition: background var(--transition);
  font-size: 16px; position: relative; font-family: inherit;
}
.icon-btn:hover { background: var(--bg-light); }

/* ════════════════════════════════════════
   BADGES
   ════════════════════════════════════════ */

.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-error   { background: #FEE2E2; color: #991B1B; }
.badge-neutral { background: var(--bg-light); color: var(--text-secondary); }
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  animation: pulse 2s infinite;
}
.badge-status-done { background: #D1FAE5; color: #065F46; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}

/* ════════════════════════════════════════
   CARDS
   ════════════════════════════════════════ */

.card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1px solid var(--border);
}
.card-title {
  font-size: 15px; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; justify-content: space-between;
}

/* ════════════════════════════════════════
   FORMS (shared)
   ════════════════════════════════════════ */

.form-group  { display: flex; flex-direction: column; gap: 6px; }
.form-label  { font-size: 12px; font-weight: 700; color: var(--text-secondary); letter-spacing: .04em; }
.form-input  {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  color: var(--text); outline: none; background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-input:focus { border-color: var(--primary); background: #fff; }
.form-input::placeholder { color: var(--text-hint); }
.form-select {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  color: var(--text); outline: none; background: var(--bg); width: 100%;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ════════════════════════════════════════
   MODALS
   ════════════════════════════════════════ */

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(11,21,102,.45); backdrop-filter: blur(4px);
  z-index: 1000; display: none;
  align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }

@media (min-width: 600px) {
  .modal-overlay { align-items: center; }
}

.modal {
  background: #fff; border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  padding: 28px 24px 40px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  animation: slideUp .25s ease;
  position: relative;
}
@media (min-width: 600px) {
  .modal { border-radius: var(--radius-2xl); padding: 32px 32px 36px; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-title { font-size: 20px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.modal-sub   { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-light); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: background var(--transition);
}
.modal-close:hover { background: var(--divider); }

/* ════════════════════════════════════════
   TOGGLE SWITCH
   ════════════════════════════════════════ */

.toggle {
  position: relative; width: 44px; height: 24px;
  display: inline-flex; flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle .slider {
  position: absolute; inset: 0;
  background: var(--divider); border-radius: 100px; cursor: pointer;
  transition: background var(--transition);
}
.toggle .slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle input:checked + .slider { background: var(--success); }
.toggle input:checked + .slider::before { transform: translateX(20px); }

/* ════════════════════════════════════════
   TOAST
   ════════════════════════════════════════ */

.toast-container {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
.toast-container > div {
  background: var(--primary); color: #fff;
  padding: 12px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: fadeIn .2s ease;
  pointer-events: none;
}
.toast-container > div.success { background: var(--success); }
.toast-container > div.error   { background: var(--error); }
.toast-container > div.warning { background: var(--warning); color: #fff; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════════════════
   USER AVATAR
   ════════════════════════════════════════ */

.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-light); color: #fff;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   TRANSACTION ITEMS
   ════════════════════════════════════════ */

.txn-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--divider);
}
.txn-item:last-child { border-bottom: none; }
.txn-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--bg-light); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.txn-info  { flex: 1; min-width: 0; }
.txn-label { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.txn-date  { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }
.txn-amount { font-size: 14px; font-weight: 800; flex-shrink: 0; }
.txn-credit { color: var(--success); }
.txn-debit  { color: var(--error); }

/* Filter buttons for transactions */
.txn-period-btn, .txn-type-btn {
  padding: 6px 14px; border-radius: 100px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: inherit; color: var(--text-secondary);
  transition: all var(--transition);
}
.txn-period-btn.active, .txn-type-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ════════════════════════════════════════
   STAT CARDS
   ════════════════════════════════════════ */

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.stat-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 18px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.stat-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--bg-light);
}
.stat-card-info { display: flex; flex-direction: column; gap: 2px; }
.stat-card-value { font-size: 22px; font-weight: 900; color: var(--primary); line-height: 1.1; }
.stat-card-label { font-size: 11px; color: var(--text-secondary); font-weight: 600; letter-spacing: .04em; }
.kpi-trend { font-size: 11px; font-weight: 700; }
.kpi-trend.up   { color: var(--success); }
.kpi-trend.down { color: var(--error); }

/* ════════════════════════════════════════
   TABLE
   ════════════════════════════════════════ */

.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 480px; }
.table-wrap th {
  font-size: 11px; font-weight: 700; color: var(--text-secondary);
  letter-spacing: .06em; text-align: left; padding: 12px 16px;
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.table-wrap td {
  font-size: 13px; color: var(--text); padding: 12px 16px;
  border-bottom: 1px solid var(--divider); vertical-align: middle;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: var(--bg-light); }
.search-input {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 9px 14px; font-size: 13px; font-family: inherit;
  background: #fff; outline: none; width: 100%; max-width: 280px;
}
.search-input:focus { border-color: var(--primary); }

/* ════════════════════════════════════════
   NOTIFICATION DOT
   ════════════════════════════════════════ */

.notif-dot {
  position: absolute; top: 4px; right: 4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--error); border: 1.5px solid #fff;
}
.notif-dot-indicator {
  width: 8px; height: 8px; border-radius: 50%; background: var(--error); display: inline-block;
}

/* Notification items */
.notif-item {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--divider); align-items: flex-start;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: #F8FAFF; margin: 0 -12px; padding: 14px 12px; border-radius: var(--radius); }
.notif-icon-wrap {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--bg-light); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.notif-body { flex: 1; min-width: 0; }
.notif-time { font-size: 11px; color: var(--text-hint); margin-top: 4px; }

/* ════════════════════════════════════════
   DASHBOARD LAYOUT
   ════════════════════════════════════════ */

.dash-layout {
  display: flex; min-height: 100vh; background: var(--bg);
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w); background: var(--primary);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 300; overflow-y: auto; overflow-x: hidden;
  transition: transform .3s ease;
}
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 299;
}

.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 20px 20px; font-size: 20px; font-weight: 900; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08); flex-shrink: 0;
}
.logo-img { width: 32px; height: 32px; border-radius: 8px; }

.sidebar-nav { flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 2px; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius);
  border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.65); width: 100%; text-align: left;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-item:hover  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }
.nav-item.active { background: rgba(200,224,0,.15); color: #fff; }
.nav-item.active .nav-icon { opacity: 1; }

.nav-icon  { font-size: 16px; opacity: .8; flex-shrink: 0; }
.nav-badge {
  margin-left: auto; background: var(--error); color: #fff;
  font-size: 10px; font-weight: 800; padding: 2px 7px;
  border-radius: 100px; flex-shrink: 0;
}
.nav-section-title {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.35);
  letter-spacing: .1em; padding: 14px 12px 6px;
}

.sidebar-footer { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,.08); }
.user-pill { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: var(--radius); }
.user-info  { flex: 1; min-width: 0; }
.user-name  { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role  { font-size: 11px; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── MAIN ── */
.dash-main {
  flex: 1; display: flex; flex-direction: column;
  margin-left: var(--sidebar-w);
  min-width: 0;
}
.dash-topbar {
  height: var(--topbar-h); background: #fff;
  border-bottom: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; position: sticky; top: 0; z-index: 100;
  gap: 16px;
}
.topbar-title { font-size: 18px; font-weight: 800; color: var(--primary); }
.topbar-right { display: flex; align-items: center; gap: 8px; }

.dash-content { flex: 1; padding: 24px; max-width: 720px; width: 100%; margin: 0 auto; }

/* ════════════════════════════════════════
   BALANCE CARD
   ════════════════════════════════════════ */

.balance-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl); padding: 28px;
  color: #fff; position: relative; overflow: hidden;
}
.balance-card::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  right: -40px; top: -60px; pointer-events: none;
}
.balance-card::after {
  content: ''; position: absolute;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(200,224,0,.08);
  right: 60px; bottom: -20px; pointer-events: none;
}
.balance-label {
  font-size: 11px; opacity: .6; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 4px;
}
.balance-amount {
  font-size: 40px; font-weight: 900; line-height: 1;
}
.balance-currency {
  font-size: 14px; opacity: .5;
}
.balance-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.balance-action-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer; border: none;
  font-family: inherit; transition: opacity var(--transition), transform var(--transition);
}
.balance-action-btn:active { transform: scale(.97); }
.btn-dep {
  background: var(--accent); color: var(--primary);
}
.btn-dep:hover { opacity: .9; }

/* ════════════════════════════════════════
   BOTTOM NAV (mobile)
   ════════════════════════════════════════ */

.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--divider);
  z-index: 200; padding: 6px 0 env(safe-area-inset-bottom, 0);
  justify-content: space-around; align-items: center;
}
.bnav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  flex: 1; padding: 6px 4px; background: none; border: none;
  cursor: pointer; font-family: inherit; font-size: 10px; font-weight: 600;
  color: var(--text-secondary); transition: color var(--transition);
}
.bnav-item.active { color: var(--primary); }
.bnav-item span:first-child { font-size: 20px; }
.bnav-fab {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(11,21,102,.35);
  margin-bottom: 4px; flex-shrink: 0;
}

/* ════════════════════════════════════════
   CIRCULAR GAUGE
   ════════════════════════════════════════ */

.circ-gauge-wrap {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
}
.circ-gauge-text {
  position: absolute; text-align: center;
  font-size: 20px; font-weight: 900; color: var(--primary);
  line-height: 1;
}

/* ════════════════════════════════════════
   KYC SECTION
   ════════════════════════════════════════ */

.kyc-card    { padding: 20px; }
.kyc-section-label {
  font-size: 11px; font-weight: 700; color: var(--text-secondary);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px;
}
.kyc-row     { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--divider); }
.kyc-row:last-child { border-bottom: none; }
.kyc-label   { font-size: 12px; color: var(--text-secondary); min-width: 100px; flex-shrink: 0; }
.kyc-value   { font-size: 13px; font-weight: 600; color: var(--text); flex: 1; }
.kyc-sec-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px;
  background: #FEF3C7; color: #92400E;
}
.kyc-sec-badge.verified { background: #D1FAE5; color: #065F46; }
.kyc-tip {
  font-size: 12px; color: var(--text-secondary); background: var(--bg-light);
  padding: 10px 14px; border-radius: var(--radius); border-left: 3px solid var(--primary);
}

/* ════════════════════════════════════════
   OPERATOR BUTTONS (deposit picker)
   ════════════════════════════════════════ */

.operator-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 10px; border-radius: var(--radius-lg);
  border: 2px solid var(--border); background: #fff;
  cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.operator-btn:hover { border-color: var(--primary); background: var(--bg-light); }
.operator-btn.active { border-color: var(--primary); background: var(--bg-light); }
.op-logo {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.op-mtn    { background: #FFCB05; }
.op-orange { background: #FF6600; }
.op-wave   { background: #0BA6E0; }

.dep-op-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 8px; border-radius: var(--radius);
  border: 2px solid var(--border); background: #fff;
  cursor: pointer; transition: all var(--transition); font-family: inherit;
  font-size: 11px; font-weight: 700; color: var(--text-secondary);
}
.dep-op-btn:hover { border-color: var(--primary); }
.dep-op-btn.active { border-color: var(--primary); background: var(--bg-light); color: var(--primary); }

/* ════════════════════════════════════════
   DEPOSIT NOTIFICATION BAR
   ════════════════════════════════════════ */

.dep-notif-inner {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--divider);
  position: relative;
}
.dep-notif-icon { font-size: 28px; flex-shrink: 0; }
.dep-notif-body { flex: 1; min-width: 0; }
.dep-notif-title { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
.dep-notif-sub   { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
.dep-notif-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.dep-notif-bar-track { height: 6px; background: var(--divider); border-radius: 100px; overflow: hidden; margin-top: 6px; }
.dep-notif-bar-fill  { height: 100%; background: var(--primary); border-radius: 100px; transition: width .6s ease; }
.dep-notif-close {
  position: absolute; top: 10px; right: 10px;
  background: none; border: none; cursor: pointer; font-size: 16px; color: var(--text-hint);
}

/* ════════════════════════════════════════
   AI SUGGESTIONS
   ════════════════════════════════════════ */

.sugg-card  { padding: 16px; background: var(--bg-light); border-radius: var(--radius-lg); margin-bottom: 12px; }
.sugg-tag   { font-size: 10px; font-weight: 700; color: var(--primary); letter-spacing: .06em; background: var(--bg); border-radius: 100px; padding: 3px 8px; display: inline-block; margin-bottom: 6px; }
.sugg-title { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.sugg-desc  { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.sugg-action { margin-top: 10px; }

/* ════════════════════════════════════════
   TIP CARD
   ════════════════════════════════════════ */

.tip-card {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  border-radius: var(--radius-xl); padding: 22px;
  color: #fff; position: relative; overflow: hidden;
}

/* ════════════════════════════════════════
   OTP INPUT
   ════════════════════════════════════════ */

.otp-box {
  display: flex; gap: 8px; justify-content: center;
}
.otp-sep  { font-size: 20px; color: var(--text-hint); align-self: center; }
.otp-box input {
  width: 44px; height: 52px; border: 1.5px solid var(--border);
  border-radius: var(--radius); text-align: center;
  font-size: 22px; font-weight: 800; color: var(--primary);
  font-family: inherit; background: var(--bg); outline: none;
  transition: border-color var(--transition);
}
.otp-box input:focus { border-color: var(--primary); background: #fff; }

/* PIN pad */
.pin-pad {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; max-width: 280px; margin: 0 auto;
}
.pin-btn {
  padding: 16px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); background: #fff;
  font-size: 20px; font-weight: 700; color: var(--primary);
  cursor: pointer; font-family: inherit;
  transition: background var(--transition), border-color var(--transition);
}
.pin-btn:hover  { background: var(--bg-light); border-color: var(--primary); }
.pin-btn:active { transform: scale(.95); }
.pin-btn-del { background: var(--bg-light); color: var(--text-secondary); }
.pin-dots { display: flex; justify-content: center; gap: 12px; margin: 20px 0; }
.pin-dot  {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--primary); background: transparent;
  transition: background var(--transition);
}
.pin-dot.filled { background: var(--primary); }

/* ════════════════════════════════════════
   RECEIPT / WITHDRAWAL
   ════════════════════════════════════════ */

.receipt-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--divider);
}
.receipt-row:last-child { border-bottom: none; }
.receipt-label { font-size: 13px; color: var(--text-secondary); }
.receipt-value { font-size: 13px; font-weight: 700; color: var(--text); }

/* ════════════════════════════════════════
   KYC CAMERA / DOC SCAN
   ════════════════════════════════════════ */

.kyc-camera-view {
  width: 100%; aspect-ratio: 4/3; background: #000;
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.doc-scan-frame {
  position: absolute; inset: 12%; border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,.5); pointer-events: none;
}
.doc-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: #fff; border-style: solid; border-width: 0;
}
.doc-corner.tl { top: -1px;  left: -1px;  border-top-width: 3px; border-left-width: 3px; border-radius: 4px 0 0 0; }
.doc-corner.tr { top: -1px;  right: -1px; border-top-width: 3px; border-right-width: 3px; border-radius: 0 4px 0 0; }
.doc-corner.bl { bottom: -1px; left: -1px;  border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 4px; }
.doc-corner.br { bottom: -1px; right: -1px; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 4px 0; }

.face-scan-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 180px; height: 180px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.5); pointer-events: none;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.face-corners { position: absolute; inset: 50%; width: 200px; height: 200px; transform: translate(-50%, -50%); }
.fc-tl, .fc-tr, .fc-bl, .fc-br { position: absolute; width: 24px; height: 24px; border-color: #fff; border-style: solid; border-width: 0; }
.fc-tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 6px 0 0 0; }
.fc-tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 6px 0 0; }
.fc-bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 6px; }
.fc-br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 6px 0; }

.face-check-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--success); color: #fff; border-radius: 50%;
  width: 64px; height: 64px; display: flex; align-items: center;
  justify-content: center; font-size: 32px;
}
.cam-chip {
  background: rgba(0,0,0,.6); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
}
.cam-ctrl-btn {
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius); color: #fff; font-size: 12px; font-weight: 700;
  padding: 8px 14px; cursor: pointer; font-family: inherit;
}
.cam-capture-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 3px solid rgba(255,255,255,.5);
  cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* ════════════════════════════════════════
   ONBOARDING SLIDES
   ════════════════════════════════════════ */

.onb-slide { padding: 32px 24px 16px; text-align: center; }
.onb-illustration { font-size: 72px; margin-bottom: 24px; }
.onb-title { font-size: 24px; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.onb-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.onb-operators { display: flex; justify-content: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.onb-op { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: var(--text-secondary); }
.onb-dots { display: flex; justify-content: center; gap: 8px; margin: 20px 0 12px; }
.onb-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--divider); transition: all var(--transition); }
.onb-dot.active { background: var(--primary); width: 20px; border-radius: 4px; }
.onb-footer { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 10px; }

/* ════════════════════════════════════════
   LOCK ICON
   ════════════════════════════════════════ */

.lock-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-light); display: flex; align-items: center;
  justify-content: center; font-size: 28px; margin: 0 auto;
}

/* ════════════════════════════════════════
   PROGRESS BARS
   ════════════════════════════════════════ */

.progress-bar-track { height: 8px; background: var(--divider); border-radius: 100px; overflow: hidden; }
.progress-bar-fill  { height: 100%; border-radius: 100px; background: var(--primary); transition: width .6s ease; }

/* ════════════════════════════════════════
   LANDING — NAVBAR
   ════════════════════════════════════════ */

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 900; color: var(--primary);
  flex-shrink: 0;
}
.logo strong { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 32px; flex: 1;
  margin-left: 16px;
}
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  width: 22px; height: 2px; background: var(--primary);
  border-radius: 2px; display: block; transition: all var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid var(--divider); background: #fff;
}
.mobile-menu a {
  padding: 14px 24px; font-size: 15px; font-weight: 600; color: var(--primary);
  border-bottom: 1px solid var(--divider);
}
.mobile-menu.open { display: flex; }

/* ════════════════════════════════════════
   LANDING — HERO
   ════════════════════════════════════════ */

.hero {
  min-height: 100vh; background: var(--primary);
  display: flex; align-items: center; padding-top: 68px;
  position: relative; overflow: hidden;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.circle { position: absolute; border-radius: 50%; opacity: .06; background: #fff; }
.c1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.c2 { width: 400px; height: 400px; bottom: -100px; left: -150px; }
.c3 { width: 200px; height: 200px; top: 40%; left: 30%; }

.hero-content {
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center; padding: 64px 24px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,224,0,.15); border: 1px solid rgba(200,224,0,.3);
  color: var(--accent); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600;
}
.trust-icon { font-size: 14px; }

/* Phone mockup */
.hero-phone { flex-shrink: 0; }
.phone-frame {
  width: 240px; background: var(--primary-dark);
  border-radius: 36px; padding: 16px; box-shadow: 0 24px 80px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.1);
}
.phone-screen { background: #0D1A7A; border-radius: 24px; overflow: hidden; }
.phone-header { background: var(--primary); padding: 16px 14px 10px; }
.phone-card {
  background: linear-gradient(135deg, #1D2D8A, #0B1566);
  padding: 18px 14px 14px; color: #fff;
}
.phone-btns { display: flex; gap: 8px; margin-top: 14px; }
.phone-btn-accent { flex: 1; background: var(--accent); color: var(--primary); border: none; border-radius: 8px; padding: 7px 0; font-size: 11px; font-weight: 800; cursor: pointer; }
.phone-btn-outline { flex: 1; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); border-radius: 8px; padding: 7px 0; font-size: 11px; font-weight: 700; cursor: pointer; }
.phone-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-project { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border-radius: 10px; padding: 8px 10px; }
.proj-bar  { width: 4px; height: 40px; border-radius: 2px; flex-shrink: 0; }
.proj-info { flex: 1; min-width: 0; }
.proj-name { font-size: 11px; color: rgba(255,255,255,.85); font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proj-progress { display: flex; align-items: center; gap: 6px; }
.proj-track { flex: 1; height: 4px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.proj-fill  { height: 100%; border-radius: 2px; }
.proj-progress span { font-size: 10px; color: rgba(255,255,255,.6); flex-shrink: 0; }

/* ════════════════════════════════════════
   LANDING — STATS BAR
   ════════════════════════════════════════ */

.stats-bar { background: var(--primary-dark); padding: 48px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; text-align: center;
}
.stat-num   { font-size: 40px; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.stat-item  {}

/* ════════════════════════════════════════
   LANDING — SECTION HEADER
   ════════════════════════════════════════ */

.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  font-size: 11px; font-weight: 700; color: var(--primary);
  letter-spacing: .1em; background: var(--bg-light);
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  color: var(--primary); margin-bottom: 16px; line-height: 1.2;
}
.section-header p { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

/* ════════════════════════════════════════
   LANDING — FEATURES
   ════════════════════════════════════════ */

.features { background: #fff; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  padding: 28px 24px; background: #fff;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.feature-card.featured { border-color: var(--primary); background: #F8FAFF; box-shadow: var(--shadow); }
.feature-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--primary);
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 100px;
  letter-spacing: .06em;
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.feature-card p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ════════════════════════════════════════
   LANDING — HOW IT WORKS
   ════════════════════════════════════════ */

.how-it-works { background: var(--bg-light); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; align-items: center;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.step-content p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--text-hint); }

/* ════════════════════════════════════════
   LANDING — PAYMENT SECTION
   ════════════════════════════════════════ */

.payment-section { background: #fff; }
.payment-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.payment-text h2 { font-size: 30px; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.payment-text p  { color: var(--text-secondary); line-height: 1.7; }
.payment-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.payment-list li { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.payment-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.operator-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--text-secondary);
  text-align: center;
}

/* ════════════════════════════════════════
   LANDING — TESTIMONIALS
   ════════════════════════════════════════ */

.testimonials { background: var(--bg-light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-xl); padding: 24px;
  border: 1.5px solid var(--border);
}
.testimonial-card.featured { border-color: var(--primary); box-shadow: var(--shadow); }
.stars { color: var(--warning); font-size: 16px; margin-bottom: 14px; }
.testimonial-card > p {
  font-size: 14px; color: var(--text); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-weight: 900; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 800; color: var(--primary); }
.author-role { font-size: 11px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   LANDING — CTA SECTION
   ════════════════════════════════════════ */

.cta-section { background: var(--primary); padding: 80px 0; text-align: center; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-inner p  { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 32px; }

/* ════════════════════════════════════════
   LANDING — FOOTER
   ════════════════════════════════════════ */

.footer { background: var(--primary-dark); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; transition: background var(--transition);
}
.social-link:hover { background: rgba(255,255,255,.2); color: #fff; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-trust { font-weight: 700; letter-spacing: .06em; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .hero-phone   { display: none; }
  .payment-inner { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; margin-left: auto; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .dash-main { margin-left: 0; }
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }
  .dash-topbar { padding: 0 16px; }
  .dash-content { padding: 16px; }

  #burgerBtn { display: flex !important; }
  .bottom-nav { display: flex; }
  .dash-content { padding-bottom: 80px; }

  .grid-2   { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero-title   { font-size: 32px; }
  .hero-cta     { flex-direction: column; align-items: flex-start; }
  .steps-grid   { grid-template-columns: 1fr; }
  .step-arrow   { transform: rotate(90deg); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .balance-amount { font-size: 30px; }
  .footer-links { grid-template-columns: 1fr; }
  .auth-card { padding: 24px 20px; border-radius: var(--radius-xl); }
}

/* ════════════════════════════════════════
   iOS / PWA FIXES
   ════════════════════════════════════════ */

/* Scroll fluide iOS sur le conteneur principal */
.dash-main {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100dvh; /* dynamic viewport height — évite les bugs iPhone barre d'adresse */
}
.dash-content {
  -webkit-overflow-scrolling: touch;
}

/* Évite que le body bloque le geste de retour iOS */
body {
  overscroll-behavior-x: none; /* désactive pull-to-refresh horizontal */
}

/* Safe area insets (notch iPhone) */
.dash-topbar {
  padding-top: max(0px, env(safe-area-inset-top));
}
.bottom-nav {
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  height: calc(64px + env(safe-area-inset-bottom));
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .dash-content { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ════════════════════════════════════════
   OPERATOR LOGO COLOURS
   ════════════════════════════════════════ */

.op-logo img { width: 100%; height: 100%; object-fit: contain; }
