/* =========================================================
   Simora Travel — landing page
   Brand: Blue #3e5aa7  •  Orange #f15d2d
   ========================================================= */

:root {
  --blue: #3e5aa7;
  --blue-dark: #2f4682;
  --blue-tint: #eef1f8;
  --orange: #f15d2d;
  --orange-dark: #d94a1c;

  --ink: #1c2033;
  --muted: #5b6178;
  --line: #e7e9f0;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --surface: #ffffff;
  --blue-accent: #3e5aa7;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -20px rgba(62, 90, 167, 0.35);
  --shadow-sm: 0 8px 24px -14px rgba(28, 32, 51, 0.25);

  --max: 1140px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* The [hidden] attribute must win over any component's display rule
   (e.g. .newsletter-success { display: flex }). */
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Decorative background ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.blob--blue {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(62,90,167,0.55), transparent 70%);
  top: -160px; right: -120px;
}
.blob--orange {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(241,93,45,0.45), transparent 70%);
  bottom: -180px; left: -140px;
}
.plane {
  position: absolute;
  top: 22%;
  left: 8%;
  font-size: 2rem;
  color: var(--blue);
  opacity: 0.12;
  transform: rotate(18deg);
}

/* ---------- Header ---------- */
.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 52px; width: auto; }
.brand .logo-white { display: none; }

.header-social {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 500;
}
.header-social a { color: var(--muted); transition: color 0.2s; }
.header-social a:hover { color: var(--blue); }
.header-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.header-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ---------- Layout sections ---------- */
main { }
section { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 90px;
  max-width: 820px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  margin: 0 auto 34px;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(241, 93, 45, 0.7);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--blue-accent);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--blue-accent); transform: translateY(-2px); }

.hero-badge {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--blue-tint);
  padding: 9px 18px;
  border-radius: 999px;
}
.hero-badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(241, 93, 45, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(241, 93, 45, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(241, 93, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 93, 45, 0); }
}

/* ---------- Offerings ---------- */
.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 90px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  border-radius: 14px;
  background: var(--blue-tint);
  margin-bottom: 18px;
}
.card h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ---------- Follow ---------- */
.follow {
  text-align: center;
  background: var(--blue);
  color: #fff;
  max-width: var(--max);
  border-radius: 26px;
  padding: 64px 28px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.follow::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,93,45,0.4), transparent 70%);
  top: -120px; right: -100px;
}
.follow-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0 0 14px;
  position: relative;
}
.follow-text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 30px;
  position: relative;
}
.social-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.social-list a {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.social-list a:hover { background: #fff; color: var(--blue); transform: translateY(-2px); }

/* ---------- Newsletter (Listmonk) ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.newsletter {
  position: relative;
  max-width: 540px;
  margin: 0 auto 30px;
}
.newsletter-row {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px;
}
.newsletter-row + .newsletter-row { margin-top: 10px; }
/* Row without a trailing button — keep the text optically centred in the pill */
.newsletter-row--solo { padding: 6px 6px 6px 0; }
.newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  background: transparent;
  border: 0;
  outline: none;
  padding: 12px 18px;
}
.newsletter-input::placeholder { color: rgba(255, 255, 255, 0.7); }
.newsletter-input:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}
.newsletter-btn {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}
.newsletter-success {
  max-width: 540px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 18px 22px;
  outline: none;
}
.newsletter-success p { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }
.newsletter-success p strong { color: #fff; }
.newsletter-success-ico {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #2ecc71;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 520px) {
  .newsletter-success { flex-direction: column; text-align: center; }
}
.newsletter-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
/* GDPR consent checkbox */
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.newsletter-consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.newsletter-consent a:hover { color: var(--orange); }
.newsletter-consent input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Cloudflare Turnstile widget */
.newsletter-captcha {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.newsletter-captcha:empty { margin-top: 0; }

/* Honeypot — off-screen (not display:none, so bots still fill it) */
.newsletter-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.newsletter-error {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffe0d3;
  background: rgba(241, 93, 45, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.newsletter-input:focus-visible,
.newsletter-btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 999px;
}
.newsletter-row:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
}

.follow-or {
  position: relative;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 22px;
}

@media (max-width: 520px) {
  .newsletter-row { flex-direction: column; border-radius: 20px; padding: 10px; }
  .newsletter-row--solo { padding: 10px; }
  .newsletter-input { text-align: center; }
  .newsletter-btn { width: 100%; padding: 13px 26px; }
}

/* ---------- Legal pages (privacy policy, terms) ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.legal-header { margin-bottom: 40px; }
.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 14px;
}
.legal-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.legal-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.legal h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 44px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.legal h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 26px 0 10px;
}
.legal p, .legal li { color: var(--muted); }
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a:not(.btn) {
  color: var(--blue-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:not(.btn):hover { color: var(--orange); }

/* Identity / contact call-out box */
.legal-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 0 0 18px;
}
.legal-box p:last-child { margin-bottom: 0; }

/* Definition-style table for data categories */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--muted);
}
.legal-table th {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}
.legal-table-wrap { overflow-x: auto; margin-bottom: 20px; }

/* Placeholder the owner must fill in before publishing */
.todo {
  display: inline-block;
  background: rgba(241, 93, 45, 0.15);
  border: 1px dashed var(--orange);
  border-radius: 6px;
  padding: 1px 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92em;
}

.legal-back {
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
  color: var(--blue-accent);
}
.legal-back:hover { color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: #14172a;
  color: #aeb4ca;
  margin-top: 20px;
  padding: 4px 24px 34px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--orange)) 1;
}
.site-footer > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 56px 0 40px;
}
.footer-brand { max-width: 380px; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-tagline {
  color: #8a91ab;
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-email:hover {
  background: rgba(241, 93, 45, 0.15);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.footer-email-ico { color: var(--orange); font-size: 1.05rem; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.footer-social a {
  color: #aeb4ca;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--orange); }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
}

/* The legal line and the pill row need ~1160px side by side, but the container
   is capped at --max (1140px) — so they always wrap onto two rows, at every
   desktop width. Centering keeps both rows balanced instead of leaving the
   second one flush left with a gap on the right. */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0 20px;
}
.footer-legal {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.88rem;
  color: #7c839d;
}
.footer-legal strong { color: #d6dae8; font-weight: 600; }
.footer-legal span { position: relative; }
.footer-legal span::before {
  content: "•";
  margin-right: 20px;
  color: #4a5070;
}
.footer-anpc { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.footer-anpc a {
  color: #8a91ab;
  font-size: 0.82rem;
  padding: 6px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-anpc a:hover { color: #fff; border-color: var(--orange); }

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 6px;
}
.footer-badges a {
  display: inline-flex;
  border-radius: 8px;
  transition: transform 0.2s, filter 0.2s;
}
.footer-badges a:hover { transform: translateY(-2px); filter: brightness(1.04); }
.footer-badges img { height: 60px; width: auto; display: block; }

.footer-copy {
  margin: 0 auto;
  padding-top: 8px;
  font-size: 0.82rem;
  color: #656b85;
  text-align: center;
}

/* ---------- Focus states ---------- */
a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .offerings { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .footer-top { flex-direction: column; gap: 30px; align-items: center; text-align: center; }
  .footer-brand { max-width: none; display: flex; flex-direction: column; align-items: center; }
  .footer-social { flex-direction: row; flex-wrap: wrap; justify-content: center; text-align: center; gap: 10px 20px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 620px) {
  .header-social { gap: 14px; }
  .header-social a:not(.header-cta) { display: none; }
  .hero { padding-top: 40px; padding-bottom: 60px; }
  .follow { border-radius: 20px; padding: 48px 22px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* =========================================================
   DARK MODE
   • Default: follows OS / browser preference automatically.
   • Manual toggle: [data-theme] on <html> (set by the button),
     which always wins over the OS preference.
   ========================================================= */

/* Shared dark palette — applied when the user picks dark,
   or (no explicit choice) when the OS prefers dark. */
:root[data-theme="dark"] {
  --ink: #e9ebf5;
  --muted: #a1a7c0;
  --line: rgba(255, 255, 255, 0.10);
  --bg: #0f1120;
  --bg-soft: #14162a;
  --surface: #191c31;
  --blue-tint: #1e2440;
  --blue-accent: #94a6db;
  --shadow: 0 18px 45px -20px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 8px 24px -14px rgba(0, 0, 0, 0.55);
}
@media (prefers-color-scheme: dark) {
  /* No-JS fallback: honour the OS unless the user forced light. */
  :root:not([data-theme="light"]):not([data-theme="dark"]) {
    --ink: #e9ebf5;
    --muted: #a1a7c0;
    --line: rgba(255, 255, 255, 0.10);
    --bg: #0f1120;
    --bg-soft: #14162a;
    --surface: #191c31;
    --blue-tint: #1e2440;
    --blue-accent: #94a6db;
    --shadow: 0 18px 45px -20px rgba(0, 0, 0, 0.6);
    --shadow-sm: 0 8px 24px -14px rgba(0, 0, 0, 0.55);
  }
}

/* Component refinements for the dark theme */
:root[data-theme="dark"] .brand .logo-color { display: none; }
:root[data-theme="dark"] .brand .logo-white { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) .brand .logo-color { display: none; }
  :root:not([data-theme="light"]):not([data-theme="dark"]) .brand .logo-white { display: block; }
}
:root[data-theme="dark"] .blob--blue   { opacity: 0.35; }
:root[data-theme="dark"] .blob--orange { opacity: 0.30; }
:root[data-theme="dark"] .plane        { color: var(--blue-accent); opacity: 0.15; }
:root[data-theme="dark"] .header-cta        { background: var(--blue); }
:root[data-theme="dark"] .header-cta:hover  { background: #4a68bb; }
:root[data-theme="dark"] .header-social a:hover { color: var(--blue-accent); }
:root[data-theme="dark"] .follow { background: linear-gradient(135deg, #2f4682, #253866); }
:root[data-theme="dark"] .site-footer { background: #0b0d18; }

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--blue-accent);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}
.theme-toggle:hover { border-color: var(--blue-accent); transform: translateY(-1px); }
.theme-toggle svg { width: 20px; height: 20px; display: block; }
/* Light theme shows the moon (→ go dark); dark theme shows the sun (→ go light) */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle .icon-moon { display: none; }
}
