@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ══════════════════════════════════════════
   CSS VARIABLES — Dark (default) + Light
   ══════════════════════════════════════════ */
:root {
  --bg:      #090e1a;   /* matched to sidebar rgba(9,14,26,0.97) */
  --bg2:     #111e33;
  --surface: #162035;
  --surface2:#1d2a42;
  --border:  #243048;
  --accent:  #1aad54;
  --accent2: #2ecc8a;
  --text:    #f0f4ff;
  --muted:   #7a8aaa;
  --danger:  #ef4444;
  --success: #1aad54;
  --radius:  10px;
  --font:    'Plus Jakarta Sans', sans-serif;
  --mono:    'DM Mono', monospace;
}

body.light {
  --bg:      #f4f6fa;
  --bg2:     #eaecf2;
  --surface: #ffffff;
  --surface2:#f0f2f8;
  --border:  #d4d8e8;
  --accent:  #1aad54;
  --accent2: #17964a;
  --text:    #0b1322;
  --muted:   #5a6480;
  --danger:  #dc2626;
  --success: #1aad54;
}

/* ══════════════════════════════════════════
   RESET
   ══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
.wizard-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

/* ══════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════ */
.sidebar {
  background: rgba(9,14,26,0.97);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 36px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar-logo-link {
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  transition: opacity 0.15s;
}
.sidebar-logo-link:hover { opacity: 0.85; }

.sidebar-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.6px;
  line-height: 1;
}
.sidebar-logo span { color: var(--accent); }

.sidebar-hmrc { margin-bottom: 36px; }

.hmrc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 12px;
}

.hmrc-crown { font-size: 14px; opacity: 0.7; }

.hmrc-title {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
  line-height: 1.3;
  font-family: var(--font);
}

.hmrc-sub {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 1px;
}

/* ══ Steps nav ══ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  transition: all 0.15s;
  cursor: default;
  position: relative;
}

.step.active {
  background: rgba(26,173,84,0.08);
  color: #fff;
}

.step.done { color: rgba(255,255,255,0.65); }

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 44px;
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  transition: background 0.15s;
}

.step.done:not(:last-child)::after { background: var(--accent); }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.15s;
  z-index: 1;
}

.step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(26,173,84,0.15);
}

.step.done .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-size: 12px;
}

/* ══ Sidebar footer ══ */
.sidebar-footer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-family: var(--mono);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  line-height: 1.8;
}
.sidebar-footer a { color: rgba(255,255,255,0.3); text-decoration: none; }
.sidebar-footer a:hover { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════ */
.main {
  padding: 56px 60px;
  max-width: 820px;
  width: 100%;
  background: var(--bg);
}

.page-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.15;
  color: var(--text);
}

.page-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   FORMS — всички input типове включително tel
   ══════════════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.form-grid.single  { grid-template-columns: 1fr; }
.form-grid.triple  { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="search"],
textarea,
select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 15px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
  /* Fix autofill / browser overrides */
  -webkit-text-fill-color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,173,84,0.12);
}

input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.2); }

/* Override browser autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--surface) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
}

select option { background: var(--surface); color: var(--text); }

/* ══ Phone row (flag picker + input) ══ */
.phone-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.phone-picker-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.phone-picker-btn:hover { border-color: var(--accent); }

.phone-row input[type="tel"] {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: none;
}
.phone-row input[type="tel"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,173,84,0.12);
}

/* ══ Input prefix (£ symbol etc) ══ */
.input-prefix {
  position: relative;
  display: flex;
  align-items: center;
}
.input-prefix > span {
  position: absolute;
  left: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}
.input-prefix input { padding-left: 30px; }

/* ══ Checkbox / consent box ══ */
.consent-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  cursor: pointer;
}
.consent-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 2px;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 0;
  -webkit-text-fill-color: unset;
}
.consent-row a { color: var(--accent); text-decoration: underline; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.btn {
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #159444;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,173,84,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--muted); }

.btn-success {
  background: var(--accent2);
  color: var(--bg);
  font-weight: 700;
}
.btn-success:hover {
  background: #25b87a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,204,138,0.3);
}

/* ══════════════════════════════════════════
   SUMMARY BOX
   ══════════════════════════════════════════ */
.summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }

.summary-row.total {
  font-weight: 700;
  font-size: 16px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  border-bottom: none;
  color: var(--accent2);
}

.summary-label { color: var(--muted); }
.summary-value { font-family: var(--mono); font-weight: 500; color: var(--text); }

/* ══════════════════════════════════════════
   ALERTS
   ══════════════════════════════════════════ */
.alert {
  padding: 13px 17px;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

.alert-info {
  background: rgba(26,173,84,0.08);
  border: 1px solid rgba(26,173,84,0.25);
  color: #6ee7b7;
}

.alert-warn {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  color: #fcd34d;
}

/* ══════════════════════════════════════════
   PRICE CARD
   ══════════════════════════════════════════ */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-amount {
  font-size: 52px;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--text);
  letter-spacing: -2px;
}
.price-amount span { font-size: 18px; color: var(--muted); letter-spacing: 0; }

/* ══════════════════════════════════════════
   SUCCESS PAGE
   ══════════════════════════════════════════ */
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(26,173,84,0.12);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 28px;
  animation: pop 0.4s ease;
  color: var(--accent);
}

@keyframes pop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

.ref-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  font-family: var(--mono);
}
.ref-box .ref-label { color: var(--muted); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.ref-box .ref-value { color: var(--accent); font-size: 15px; font-weight: 500; }

/* ══════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════ */
.legal-body { max-width: 720px; }

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.legal-section p  { color: var(--muted); font-size: 14px; margin-bottom: 10px; line-height: 1.7; }

.legal-section ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.legal-section ul li { color: var(--muted); font-size: 14px; padding-left: 18px; position: relative; line-height: 1.6; }
.legal-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 11px; }

.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

.legal-section code {
  background: var(--surface);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent2);
}

.dont-store { display: flex; flex-direction: column; gap: 7px; margin-top: 8px; }
.dont-item {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 13px;
  color: #fca5a5;
  font-family: var(--mono);
}

/* ══════════════════════════════════════════
   FLAG / COUNTRY PICKER DROPDOWN
   ══════════════════════════════════════════ */
#pickerDd, #pickerDropdown, #occDropdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
}

.picker-search {
  background: var(--surface2);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 13.5px;
  outline: none;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
}

.picker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  transition: background 0.1s;
}
.picker-item:hover { background: var(--surface2); }

#pickerCode { color: var(--text); font-size: 13px; }
#pickerFlag { filter: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .wizard-shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .main { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-title { font-size: 26px; }
}


/* ══════════════════════════════════════════
   LIGHT MODE OVERRIDES
   Всички елементи на wizard-а в светъл режим
   ══════════════════════════════════════════ */

/* ── Layout ── */
body.light .wizard-shell { background: var(--bg); }
body.light .main { background: var(--bg); }

/* ── Sidebar ── */
body.light .sidebar {
  background: #ffffff;
  border-right: 1px solid #e0e4ef;
}
body.light .sidebar-logo { color: #0b1322; }
body.light .sidebar-logo span { color: var(--accent); }
body.light .logo-tld { color: rgba(0,0,0,0.4); }

body.light .hmrc-badge {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}
body.light .hmrc-title { color: #0b1322; }
body.light .hmrc-sub   { color: var(--accent); }

/* ── Steps ── */
body.light .step { color: rgba(0,0,0,0.35); }
body.light .step.active {
  background: rgba(26,173,84,0.08);
  color: #0b1322;
}
body.light .step.done { color: #1aad54; }
body.light .step:not(:last-child)::after      { background: rgba(0,0,0,0.1); }
body.light .step.done:not(:last-child)::after { background: var(--accent); }
body.light .step-num {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
  color: #0b1322;
}
body.light .step.active .step-num,
body.light .step.done .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Sidebar footer ── */
body.light .sidebar-footer {
  color: rgba(0,0,0,0.3);
  border-top-color: #e0e4ef;
}
body.light .sidebar-footer a { color: rgba(0,0,0,0.35); }
body.light .sidebar-footer a:hover { color: rgba(0,0,0,0.65); }

/* ── Theme toggle button ── */
body.light #themeBtn {
  background: #ffffff !important;
  border: 1.5px solid #b0b8d0 !important;
  color: #3a4460 !important;
}
body.light #themeBtnLabel,
body.light #themeBtnLabel * { color: #3a4460 !important; }
body.light #themeToggleCircle {
  background: #d4d8e8 !important;
  border-color: #b0b8d0 !important;
}

/* ── Lang picker button ── */
body.light #langPickerBtn {
  background: #ffffff !important;
  border: 1.5px solid #b0b8d0 !important;
}
body.light #langPickerBtn span         { color: #0b1322 !important; }
body.light #langPickerBtn span:last-child { color: #7a8aaa !important; }

/* ── Lang dropdown + list ── */
body.light #langDropdown {
  background: #ffffff !important;
  border: 1.5px solid #c8cfe0 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}
body.light #langList > div          { color: #0b1322 !important; background: transparent !important; }
body.light #langList > div span     { color: #0b1322 !important; }
body.light #langList > div:hover    { background: #f0f2f8 !important; }
/* checkmark ✓ voor active taal */
body.light #langList > div span[style*="color:var(--accent)"],
body.light #langList > div span[style*="color: var(--accent)"] { color: #1aad54 !important; }

/* ── Page titles & text ── */
body.light .page-title { color: #0b1322; }
body.light .page-desc  { color: #5a6480; }
body.light .page-tag   { color: var(--accent); }
body.light h1, body.light h2, body.light h3 { color: #0b1322; }
body.light p  { color: #3a4460; }
body.light strong { color: #0b1322; }
body.light label { color: #5a6480; }
body.light .field-hint { color: #7a8aaa; }

/* ── All form inputs (including tel) ── */
body.light input[type="text"],
body.light input[type="email"],
body.light input[type="number"],
body.light input[type="tel"],
body.light input[type="password"],
body.light input[type="url"],
body.light input[type="search"],
body.light textarea,
body.light select {
  background: #ffffff !important;
  border-color: #d4d8e8 !important;
  color: #0b1322 !important;
  -webkit-text-fill-color: #0b1322 !important;
}

body.light input::placeholder,
body.light textarea::placeholder { color: rgba(0,0,0,0.28) !important; }

body.light input:-webkit-autofill,
body.light input:-webkit-autofill:hover,
body.light input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #0b1322 !important;
}

body.light select option { background: #ffffff; color: #0b1322; }

/* ── Phone picker button ── */
body.light .phone-picker-btn {
  background: #ffffff !important;
  border: 1px solid #d4d8e8 !important;
  border-right: none !important;
  color: #0b1322 !important;
}
body.light .phone-picker-btn:hover { border-color: var(--accent) !important; }
body.light #pickerCode  { color: #0b1322 !important; }
body.light #pickerFlag  { filter: drop-shadow(0 0 1px rgba(0,0,0,0.15)); }

/* ── Flag/country picker dropdown ── */
body.light #pickerDd,
body.light #pickerDropdown,
body.light #occDropdown {
  background: #ffffff !important;
  border-color: #d4d8e8 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}
body.light .picker-search {
  background: #f4f6fa !important;
  color: #0b1322 !important;
  border-bottom-color: #d4d8e8 !important;
}
body.light .picker-item          { color: #0b1322 !important; background: transparent !important; }
body.light .picker-item:hover    { background: #f0f2f8 !important; }

body.light #occDropdown div       { color: #0b1322 !important; }
body.light #occDropdown div:hover { background: #f0f2f8 !important; }

/* ── Consent / checkbox box ── */
body.light .consent-box {
  background: #ffffff;
  border-color: #d4d8e8;
}
body.light .consent-row { color: #0b1322; }
body.light .consent-row input[type="checkbox"] {
  background: #ffffff;
  border-color: #b0b8d0;
}

/* ── Summary box ── */
body.light .summary-box   { background: #ffffff; border-color: #d4d8e8; }
body.light .summary-row   { border-bottom-color: #e8eaf0; }
body.light .summary-label { color: #5a6480; }
body.light .summary-value { color: #0b1322; }
body.light .summary-row.total { color: #0e7a3a; }

/* ── Alerts ── */
body.light .alert-info {
  background: rgba(26,173,84,0.08);
  border-color: rgba(26,173,84,0.25);
  color: #0e7a3a;
}
body.light .alert-warn {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
  color: #b45309;
}

/* ── Price card ── */
body.light .price-card   { background: #ffffff; border-color: #d4d8e8; }
body.light .price-amount { color: #0b1322; }
body.light .price-amount span { color: #5a6480; }

/* ── Ref box ── */
body.light .ref-box           { background: #f8fafc; border-color: #d4d8e8; }
body.light .ref-box .ref-value { color: var(--accent); }
body.light .ref-box .ref-label { color: #5a6480; }

/* ── Buttons ── */
body.light .btn-ghost {
  background: transparent !important;
  color: #3a4460 !important;
  border: 1.5px solid #b0b8d0 !important;
}
body.light .btn-ghost:hover {
  color: #0b1322 !important;
  border-color: #7a8aaa !important;
  background: rgba(0,0,0,0.04) !important;
}
body.light .btn-success { color: #fff; }
body.light .b-outline {
  color: #0b1322 !important;
  background: rgba(0,0,0,0.04) !important;
  border: 1.5px solid rgba(0,0,0,0.18) !important;
}

/* ── Legal sections ── */
body.light .legal-section h2 { color: #0b1322; }
body.light .legal-section p  { color: #5a6480; }
body.light .legal-section ul li { color: #5a6480; }

/* ── Don't store items ── */
body.light .dont-item {
  color: #b91c1c;
  background: rgba(239,68,68,0.06);
  border-color: rgba(239,68,68,0.2);
}

/* ── Footer (wizard) ── */
body.light footer { background: #edf0f7; border-top-color: #dde1ee; }
body.light .flogo { color: #0b1322; }
body.light .flinks a  { color: rgba(0,0,0,0.35); }
body.light .flinks a:hover { color: rgba(0,0,0,0.65); }
body.light .fcopy { color: rgba(0,0,0,0.25); }

/* ── fi flag icons ── */
body.light .fi { filter: drop-shadow(0 0 1px rgba(0,0,0,0.2)); }