/* ====================================================
   EliteLaundryTask — style.css
   Mobile-First Premium Laundry Management App
   ==================================================== */

/* ===== TOKENS ===== */
:root {
  --blue:       #0EA5E9;
  --blue-soft:  #E0F2FE;
  --blue-dark:  #0369A1;
  --navy:       #0F172A;
  --green:      #22C55E;
  --green-soft: #DCFCE7;
  --green-dark: #15803D;
  --orange:     #F97316;
  --orange-soft:#FFF7ED;
  --red:        #EF4444;
  --red-soft:   #FEF2F2;
  --purple:     #A855F7;
  --purple-soft:#F3E8FF;
  --wa:         #25D366;
  --wa-dark:    #128C7E;

  --bg:         #F1F5F9;
  --surface:    #FFFFFF;
  --border:     #E2E8F0;
  --text:       #1E293B;
  --text-2:     #64748B;
  --text-3:     #94A3B8;

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  20px;
  --radius-xl:  24px;
  --shadow:     0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);

  --nav-h:      68px;
  --header-h:   60px;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== SCROLLBAR (subtle) ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ===== APP SHELL ===== */
#app {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  min-height: 100dvh;
  background: var(--bg);
}

/* ===== TOP HEADER ===== */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 12px;
}
.header-left { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 13px;
  color: white;
  flex-shrink: 0;
}
.header-title-group { display: flex; flex-direction: column; }
.header-app-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}
.header-date { font-size: 11px; color: var(--text-2); line-height: 1.2; }

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 20px 16px calc(var(--nav-h) + 20px);
  min-height: calc(100dvh - var(--header-h));
}

/* ===== PAGES ===== */
.page { display: none; animation: fadeIn .22s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.page-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.page-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}
.btn-back {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  transition: background var(--transition);
}
.btn-back:hover { background: var(--border); }
.btn-edit-order {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  border: 1px solid transparent;
}
.stat-blue  { border-color: var(--blue-soft);   background: linear-gradient(160deg, #fff, var(--blue-soft)); }
.stat-orange{ border-color: var(--orange-soft);  background: linear-gradient(160deg, #fff, var(--orange-soft)); }
.stat-green { border-color: var(--green-soft);  background: linear-gradient(160deg, #fff, var(--green-soft)); }
.stat-purple{ border-color: var(--purple-soft); background: linear-gradient(160deg, #fff, var(--purple-soft)); }
.stat-icon { font-size: 22px; line-height: 1; }
.stat-info { display: flex; flex-direction: column; }
.stat-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.1;
  word-break: break-all;
}
.stat-lbl { font-size: 10px; color: var(--text-2); font-weight: 500; margin-top: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(14,165,233,.35);
}
.btn-primary:hover { box-shadow: 0 6px 22px rgba(14,165,233,.45); filter: brightness(1.05); }
.btn-wa {
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover { box-shadow: 0 6px 22px rgba(37,211,102,.4); }
.btn-ghost {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--border); }
.btn-danger { background: var(--red); color: white; box-shadow: 0 4px 16px rgba(239,68,68,.3); }
.btn-danger:hover { filter: brightness(1.08); }
.btn-full { width: 100%; display: flex; }
.btn-xl { padding: 16px 24px; font-size: 16px; border-radius: var(--radius-lg); margin-bottom: 20px; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.btn-icon:hover { background: var(--border); }
.notif-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--red);
  color: white;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.link-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  white-space: nowrap;
}
.link-btn:hover { text-decoration: underline; }
.mt-sm { margin-top: 10px; }

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

/* ===== ORDER CARDS ===== */
.orders-list { display: flex; flex-direction: column; gap: 10px; }
.order-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.order-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.order-card-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  flex: 1;
}
.order-card-id {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}
.order-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.meta-chip {
  font-size: 12px;
  color: var(--text-2);
  display: flex; align-items: center; gap: 3px;
}
.order-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-total {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.order-est { font-size: 11px; color: var(--text-2); }

/* ===== STATUS BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}
.badge-masuk   { background: #FEF3C7; color: #B45309; }
.badge-proses  { background: var(--blue-soft); color: var(--blue-dark); }
.badge-selesai { background: var(--green-soft); color: var(--green-dark); }
.badge-diambil { background: #F1F5F9; color: #64748B; }
.badge-count {
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
}

/* ===== SEARCH ===== */
.search-wrap {
  position: relative;
  margin-bottom: 14px;
}
.search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 13px 16px 13px 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--blue); }
.search-input::placeholder { color: var(--text-3); }

/* ===== FILTER TABS ===== */
.filter-tabs, .report-filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar, .report-filter-row::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-tab.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 2px 10px rgba(14,165,233,.3);
}

/* ===== FORM ===== */
.form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.form-card-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.form-group { margin-bottom: 14px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px; /* prevents iOS zoom */
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus { border-color: var(--blue); background: #fff; }
.form-input::placeholder { color: var(--text-3); }
.form-input.error { border-color: var(--red); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.form-error { display: block; font-size: 12px; color: var(--red); margin-top: 4px; min-height: 16px; }
.form-hint { display: block; font-size: 11px; color: var(--text-3); margin-top: 4px; }
.form-hint-block {
  font-size: 12px;
  color: var(--text-2);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.input-suffix-wrap { position: relative; }
.input-suffix-wrap .form-input { padding-right: 44px; }
.input-suffix {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 13px; font-weight: 600;
  color: var(--text-2);
  pointer-events: none;
}

.total-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  border: 1.5px solid var(--blue-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 4px;
}
.total-display span:first-child { font-size: 13px; font-weight: 600; color: var(--text-2); }
.total-val { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--blue-dark); }

.form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

/* ===== DETAIL PAGE ===== */
.struk-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.struk-header { text-align: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px dashed var(--border); }
.struk-brand { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--navy); }
.struk-id { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.struk-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  font-size: 14px;
}
.struk-row:last-child { border-bottom: none; }
.struk-row-key { color: var(--text-2); font-weight: 500; flex-shrink: 0; }
.struk-row-val { font-weight: 600; color: var(--navy); text-align: right; }
.struk-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px dashed var(--border);
}
.struk-total-lbl { font-size: 14px; font-weight: 600; color: var(--text-2); }
.struk-total-val { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--blue-dark); }

.status-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  overflow-x: auto;
  gap: 4px;
}
.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 52px;
}
.status-dot {
  width: 28px; height: 28px;
  border-radius: 99px;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: all var(--transition);
}
.status-step.done .status-dot { background: var(--blue); border-color: var(--blue); color: white; }
.status-step.current .status-dot { background: var(--orange); border-color: var(--orange); color: white; box-shadow: 0 0 0 4px rgba(249,115,22,.15); }
.status-step-lbl { font-size: 9px; color: var(--text-2); font-weight: 600; text-align: center; line-height: 1.2; }
.status-line { width: 100%; height: 2px; background: var(--border); flex: 1; margin-top: -20px; min-width: 8px; }
.status-line.done { background: var(--blue); }

.detail-actions { display: flex; flex-direction: column; gap: 10px; }
.detail-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ===== CUSTOMER CARDS ===== */
.customer-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.customer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.customer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 16px;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.customer-info { flex: 1; }
.customer-name { font-weight: 600; font-size: 15px; color: var(--navy); }
.customer-meta { font-size: 12px; color: var(--text-2); }
.customer-wa { color: var(--wa-dark); font-weight: 600; flex-shrink: 0; }

/* ===== LAYANAN LIST ===== */
.layanan-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.layanan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
}
.layanan-item-name { flex: 1; font-weight: 600; color: var(--navy); }
.layanan-item-harga { color: var(--blue-dark); font-weight: 600; font-size: 13px; }
.layanan-item-del {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--red-soft);
  color: var(--red);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.layanan-item-del:hover { background: var(--red); color: white; }
.layanan-add-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.layanan-add-form .btn { grid-column: 1 / -1; }
.layanan-add-form select { grid-column: 1 / -1; }

/* ===== DANGER ZONE ===== */
.form-card-danger { border-color: var(--red-soft); }
.form-card-danger .form-card-title { color: var(--red); }
.danger-desc { font-size: 13px; color: var(--text-2); margin-bottom: 14px; line-height: 1.5; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.empty-icon { font-size: 48px; line-height: 1; }
.empty-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); }
.empty-desc { font-size: 14px; color: var(--text-2); max-width: 260px; line-height: 1.5; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  max-width: calc(100vw - 40px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green-dark); }
.toast.error   { background: var(--red); }
.toast.info    { background: var(--blue-dark); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeOverlay .18s ease;
}
.modal-overlay.hidden { display: none; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp .22s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.modal-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.modal-msg { font-size: 14px; color: var(--text-2); line-height: 1.5; margin-bottom: 22px; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { flex: 1; }

/* ===== ONBOARDING ===== */
.onboarding-box { text-align: left; max-width: 400px; }
.onboarding-emoji { font-size: 40px; text-align: center; margin-bottom: 12px; }
.onboarding-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
  text-align: center;
}
.onboarding-title span { color: var(--blue); }
.onboarding-sub { font-size: 14px; color: var(--text-2); text-align: center; margin-bottom: 22px; line-height: 1.5; }

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: var(--nav-h);
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--text-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}
.nav-item .nav-icon {
  width: 22px; height: 22px;
  stroke: currentColor;
  transition: all var(--transition);
}
.nav-item.active { color: var(--blue); }
.nav-item.active .nav-icon { stroke: var(--blue); }

/* ===== REPORT ===== */
.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  font-size: 13px;
}
.report-row:last-child { border-bottom: none; }

/* ===== APP VERSION ===== */
.app-version {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  padding: 20px 0 8px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 481px) {
  .toast { max-width: 440px; }
}
@media (max-width: 359px) {
  .stats-grid { gap: 6px; }
  .stat-val { font-size: 15px; }
  .stat-lbl { font-size: 9px; }
  .form-row { grid-template-columns: 1fr; }
}
