/* ──────────────────────────────────────────────────────────────
   Κάρτα Φροντίδας · PWA Styles
   Fullscreen mobile-first; no device frames.
   ────────────────────────────────────────────────────────────── */

:root {
  --green-900: #1a5428;
  --green-800: #1e6330;
  --green-700: #2d7a3e;
  --green-600: #3a8f4e;
  --green-500: #4a9e62;
  --green-400: #66b47b;
  --green-300: #7ec497;
  --green-200: #a9d8b8;
  --green-100: #c6e8ce;
  --green-50:  #edf7ef;

  --neutral-900: #1a1a1a;
  --neutral-800: #2c2c2c;
  --neutral-700: #404040;
  --neutral-600: #555;
  --neutral-500: #6b6b6b;
  --neutral-400: #8f8f8f;
  --neutral-300: #b5b5b5;
  --neutral-200: #e4e4e4;
  --neutral-100: #f2f2f2;

  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-mono:    'SF Mono', Menlo, 'Courier New', monospace;

  --shadow-sm: 0 1px 4px rgba(26,84,40,0.06);
  --shadow-md: 0 2px 12px rgba(26,84,40,0.08);
  --shadow-lg: 0 8px 28px rgba(26,84,40,0.16);

  /* Safe area insets (iOS notch / Android gesture bar) */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
}

* { box-sizing: border-box; }
html, body, #app {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--green-50);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: contain;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}
a { color: inherit; text-decoration: none; }

/* ── Screen container ─────────────────────────────────── */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding-top: var(--safe-top);
  padding-bottom: var(--safe-bottom);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  appearance: none;
  border: none;
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100%;
  transition: transform 120ms ease, box-shadow 180ms ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,84,40,0.25);
}
.btn-primary:active { background: var(--green-800); }
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border: 1.5px solid var(--green-200);
}

/* ── Splash ───────────────────────────────────────────── */
.splash {
  background: linear-gradient(160deg, var(--green-50) 0%, #fff 60%);
  align-items: center;
  justify-content: center;
}
.splash-logo {
  width: min(55vw, 240px);
  height: auto;
  animation: splash-in 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.splash-tag {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-800);
  animation: splash-in 700ms 120ms backwards cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes splash-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* ── Welcome ──────────────────────────────────────────── */
.welcome {
  padding: max(48px, calc(var(--safe-top) + 32px)) 28px calc(28px + var(--safe-bottom));
  background: linear-gradient(180deg, var(--green-50) 0%, #fff 55%);
  overflow-y: auto;
}
.welcome-art {
  display: flex; justify-content: center; align-items: center;
  margin: 8px 0 4px;
}
.welcome-art img { width: 130px; }
.welcome-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-align: center;
  margin: 12px 0 12px;
}
.welcome-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--neutral-600);
  text-align: center;
  margin-bottom: 24px;
  padding: 0 6px;
}
.feature-list {
  display: flex; flex-direction: column;
  gap: 14px;
  margin: 6px 0 26px;
}
.feature-row {
  display: flex; gap: 14px; align-items: center;
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-text { font-size: 14px; line-height: 1.4; color: var(--neutral-700); }
.feature-text b { color: var(--green-900); font-weight: 700; }
.welcome-footer {
  text-align: center;
  font-size: 11px;
  color: var(--neutral-400);
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* ── Method picker ────────────────────────────────────── */
.method, .type, .camera, .settings {
  background: var(--green-50);
  overflow-y: auto;
}
.method, .type, .settings {
  padding: max(28px, calc(var(--safe-top) + 16px)) 22px calc(28px + var(--safe-bottom));
}
.screen-hdr {
  display: flex; align-items: center;
  margin-bottom: 22px;
}
.back-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.screen-title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.screen-sub {
  font-size: 14.5px;
  color: var(--neutral-600);
  line-height: 1.5;
  margin: 0 0 22px;
}

.method-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  text-align: left;
  margin-bottom: 14px;
  transition: transform 120ms;
}
.method-card:active { transform: scale(0.985); }
.method-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.method-card-body { flex: 1; min-width: 0; }
.method-card-title { font-weight: 700; font-size: 15.5px; color: var(--neutral-800); }
.method-card-sub   { font-size: 13px; color: var(--neutral-500); margin-top: 3px; }

/* ── Type-in numpad ───────────────────────────────────── */
.numpad-display {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.numpad-display-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  margin-bottom: 8px;
}
.numpad-display-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--green-900);
  min-height: 30px;
  display: flex; align-items: center;
}
.numpad-display-num .placeholder { color: var(--neutral-300); letter-spacing: 0.2em; }
.numpad-display-num .cursor {
  display: inline-block;
  width: 2px; height: 22px;
  background: var(--green-700);
  margin-left: 2px;
  animation: cursor 1s infinite;
}
@keyframes cursor { 50% { opacity: 0; } }

.numpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.numpad-key {
  appearance: none;
  border: none;
  background: #fff;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 600;
  color: var(--green-900);
  height: 60px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  transition: transform 80ms ease, background 100ms ease;
}
.numpad-key:active { background: var(--green-100); transform: scale(0.96); }
.numpad-key.action { font-size: 14px; color: var(--green-700); font-weight: 700; }

/* ── Camera (faux) ────────────────────────────────────── */
.camera {
  background: #0d1f12;
  color: #fff;
  display: flex; flex-direction: column;
  padding: 0;
  padding-bottom: var(--safe-bottom);
}
.cam-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: calc(var(--safe-top) + 12px) 18px 12px;
}
.cam-hdr .back-btn { background: rgba(255,255,255,0.12); color: #fff; box-shadow: none; }
.cam-title { font-weight: 700; font-size: 16px; letter-spacing: 0.02em; }
.cam-stage {
  flex: 1;
  position: relative;
  background: #0d1f12;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cam-frame {
  width: min(78%, 320px);
  aspect-ratio: 1.586 / 1;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(135deg, #2d7a3e22, #1a542833);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.cam-frame::before, .cam-frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 3px solid #7ec497;
}
.cam-frame::before {
  top: -2px; left: -2px;
  border-right: none; border-bottom: none;
  border-top-left-radius: 8px;
}
.cam-frame::after {
  bottom: -2px; right: -2px;
  border-left: none; border-top: none;
  border-bottom-right-radius: 8px;
}
.cam-frame .corner-tr, .cam-frame .corner-bl {
  position: absolute;
  width: 24px; height: 24px;
  border: 3px solid #7ec497;
}
.cam-frame .corner-tr {
  top: -2px; right: -2px;
  border-left: none; border-bottom: none;
  border-top-right-radius: 8px;
}
.cam-frame .corner-bl {
  bottom: -2px; left: -2px;
  border-right: none; border-top: none;
  border-bottom-left-radius: 8px;
}
.cam-card-ghost {
  position: absolute; inset: 16px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  text-transform: uppercase;
  pointer-events: none;
}
.cam-card-ghost-num {
  font-family: var(--font-mono);
  letter-spacing: 0.3em;
}
.scanline {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ec497, transparent);
  box-shadow: 0 0 14px #7ec497aa;
  animation: scan 2s ease-in-out infinite;
}
@keyframes scan {
  0%   { top: 12%; }
  50%  { top: 82%; }
  100% { top: 12%; }
}
.cam-hint {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.cam-detected-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.cam-detected-card {
  background: #fff;
  color: var(--neutral-800);
  border-radius: 22px;
  padding: 24px 22px 20px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}
.cam-detected-card .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-100); color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cam-detected-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-900);
  margin: 12px 0 4px;
}
.cam-detected-label {
  font-size: 13px; color: var(--neutral-500);
  margin-bottom: 14px;
}
.cam-detected-actions { display: flex; gap: 10px; }
.cam-detected-actions .btn { padding: 12px 16px; font-size: 13.5px; }

.cam-controls {
  display: flex; align-items: center; justify-content: space-around;
  padding: 22px 24px calc(24px + var(--safe-bottom));
}
.cam-side-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cam-shutter {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid rgba(255,255,255,0.4);
  outline: 2px solid #fff;
  outline-offset: -10px;
}
.cam-shutter:active { transform: scale(0.94); }

/* ── Main barcode screen (Calm variant) ───────────────── */
.main {
  background: var(--green-50);
  padding: calc(var(--safe-top) + 18px) 0 calc(20px + var(--safe-bottom));
  position: relative;
  overflow-y: auto;
}
.main::before {
  /* Decorative lotus watermark */
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: url('assets/logo.png') no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.main::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: url('assets/logo.png') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}

.main-topbar {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 0 22px 14px;
  position: relative; z-index: 2;
}
.main-topbar-greet {
  font-size: 12px;
  color: var(--neutral-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-topbar-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--green-900);
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1.1;
}
.settings-fab {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.barcode-card {
  background: #fff;
  margin: 14px 22px 18px;
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-md);
  position: relative; z-index: 2;
  text-align: center;
}
.barcode-card-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  margin-bottom: 14px;
}
.barcode-canvas-wrap {
  display: flex; justify-content: center;
  background: #fff;
  padding: 4px 0;
}
.barcode-canvas-wrap svg {
  width: 100%; max-width: 280px;
  height: auto;
}
.barcode-number {
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--neutral-800);
  margin-top: 12px;
  font-weight: 600;
}
.barcode-instr {
  font-size: 12.5px;
  color: var(--neutral-500);
  margin-top: 10px;
}

.brightness-pill {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 22px 16px;
  box-shadow: var(--shadow-sm);
  width: calc(100% - 44px);
  text-align: left;
  position: relative; z-index: 2;
  transition: background 180ms;
}
.brightness-pill.active {
  background: var(--green-800);
  color: #fff;
}
.brightness-pill .b-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-100); color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brightness-pill.active .b-icon { background: rgba(255,255,255,0.18); color: #fff; }
.brightness-pill .b-title { font-weight: 700; font-size: 14.5px; }
.brightness-pill .b-sub { font-size: 12px; color: var(--neutral-500); margin-top: 2px; }
.brightness-pill.active .b-sub { color: rgba(255,255,255,0.75); }

.contact-card {
  background: #fff;
  margin: 0 22px 16px;
  border-radius: 18px;
  padding: 6px 18px;
  box-shadow: var(--shadow-sm);
  position: relative; z-index: 2;
}
.contact-row {
  display: flex; gap: 12px; align-items: center;
  padding: 11px 0;
  font-size: 13.5px;
  color: var(--neutral-700);
  border-top: 1px solid var(--green-100);
}
.contact-row:first-child { border-top: none; }
.contact-row .c-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-50); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row a { color: inherit; }

/* ── Brightness overlay ──────────────────────────────── */
.brightness-overlay {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--safe-top) 24px var(--safe-bottom);
}
.brightness-overlay svg { width: 92%; max-width: 360px; height: auto; }
.brightness-overlay .b-num {
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: 0.22em;
  color: #000;
  margin-top: 16px;
  font-weight: 700;
}
.brightness-overlay .b-instr {
  position: absolute;
  top: max(28px, calc(var(--safe-top) + 16px));
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--neutral-500);
  text-transform: uppercase;
  font-weight: 700;
}
.brightness-overlay .b-close {
  position: absolute;
  top: max(20px, calc(var(--safe-top) + 12px));
  right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--neutral-200);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* ── Settings ────────────────────────────────────────── */
.settings { display: block; }
.settings-brand {
  margin-bottom: 10px;
}
.settings-brand-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.settings-brand-sub {
  font-size: 13px;
  color: var(--neutral-600);
  margin-top: 4px;
}
.settings-section {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  margin: 22px 0 10px 6px;
}
.settings-list {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.settings-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  color: var(--neutral-800);
  min-height: 64px;
  border-top: 1px solid var(--green-100);
}
.settings-row:first-child { border-top: none; }
.settings-row .s-icon {
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--green-50); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.settings-row .s-body { flex: 1; min-width: 0; padding-right: 4px; }
.settings-row .s-title { font-size: 15px; font-weight: 600; line-height: 1.3; }
.settings-row .s-sub {
  font-size: 12.5px; color: var(--neutral-500);
  margin-top: 3px; line-height: 1.35;
}
.settings-row > svg { flex-shrink: 0; color: var(--neutral-400); }

.toggle {
  width: 46px; height: 28px;
  background: var(--neutral-300);
  border-radius: 999px;
  position: relative;
  border: none;
  transition: background 200ms;
  flex-shrink: 0;
}
.toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.toggle.on { background: var(--green-700); }
.toggle.on::after { transform: translateX(18px); }

.legal-disclaimer {
  margin: 24px 6px 8px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--neutral-500);
  text-align: center;
}
.legal-disclaimer b { color: var(--green-800); font-weight: 600; }

/* ── Add-to-home-screen banner ────────────────────────── */
.a2hs {
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(16px + var(--safe-bottom));
  background: var(--green-900);
  color: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26,84,40,0.32);
  display: flex; gap: 12px; align-items: center;
  z-index: 900;
  animation: a2hs-in 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes a2hs-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.a2hs-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.a2hs-body { flex: 1; font-size: 13px; line-height: 1.4; }
.a2hs-body b { display: block; font-size: 13.5px; margin-bottom: 2px; }
.a2hs-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 6px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Dark theme ──────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  body.theme-auto {
    background: #0c1d12;
    color: rgba(255,255,255,0.92);
  }
}
body.theme-dark {
  background: #0c1d12;
  color: rgba(255,255,255,0.92);
}
body.theme-dark .welcome,
body.theme-dark .method,
body.theme-dark .type,
body.theme-dark .settings,
body.theme-dark .main {
  background: #0c1d12;
}
body.theme-dark .splash { background: linear-gradient(160deg, #0e2415 0%, #0d1f12 60%); }
body.theme-dark .welcome-title,
body.theme-dark .screen-title,
body.theme-dark .main-topbar-name,
body.theme-dark .settings-brand-title { color: #fff; }
body.theme-dark .welcome-sub,
body.theme-dark .screen-sub,
body.theme-dark .feature-text,
body.theme-dark .settings-row { color: rgba(255,255,255,0.85); }
body.theme-dark .feature-icon { background: rgba(126,196,151,0.18); color: var(--green-200); }
body.theme-dark .barcode-card,
body.theme-dark .brightness-pill,
body.theme-dark .contact-card,
body.theme-dark .method-card,
body.theme-dark .numpad-display,
body.theme-dark .numpad-key,
body.theme-dark .settings-list,
body.theme-dark .back-btn,
body.theme-dark .settings-fab {
  background: #142a1c;
  color: rgba(255,255,255,0.92);
}
body.theme-dark .barcode-canvas-wrap {
  background: #fff; padding: 12px 8px; border-radius: 10px;
}
body.theme-dark .barcode-number,
body.theme-dark .settings-row .s-title { color: #fff; }
body.theme-dark .barcode-instr,
body.theme-dark .barcode-card-label,
body.theme-dark .main-topbar-greet,
body.theme-dark .settings-section,
body.theme-dark .numpad-display-label { color: var(--green-300); }
body.theme-dark .feature-text b,
body.theme-dark .feature-icon { color: var(--green-200); }
body.theme-dark .contact-row { color: rgba(255,255,255,0.85); border-top-color: rgba(126,196,151,0.14); }
body.theme-dark .settings-row { border-top-color: rgba(126,196,151,0.14); }
body.theme-dark .settings-row .s-sub { color: rgba(255,255,255,0.55); }
body.theme-dark .legal-disclaimer { color: rgba(255,255,255,0.55); }
body.theme-dark .legal-disclaimer b { color: var(--green-200); }
body.theme-dark .toggle { background: #2a3d30; }
body.theme-dark .toggle.on { background: var(--green-500); }
