/* ===============================================================
   Solde. — copilote financier personnel
   Identité : registre comptable moderne.
   Palette : papier froid / encre / sapin / menthe / corail / ambre
   Typo : Bricolage Grotesque (display), Figtree (texte),
          IBM Plex Mono (tous les montants — signature du produit)
   =============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --papier: #F4F6F2;
  --surface: #FFFFFF;
  --encre: #16211B;
  --encre-2: #47554E;
  --trait: #E2E7E0;
  --sapin: #175348;
  --sapin-fonce: #0E3B33;
  --menthe: #1F9D6F;
  --menthe-pale: #E4F4EC;
  --corail: #DE4F35;
  --corail-pale: #FBEAE6;
  --ambre: #DA9A2B;
  --ambre-pale: #FBF2DF;
  --r: 14px;
}

body[data-theme="sombre"] {
  --papier: #101814;
  --surface: #17231E;
  --encre: #F1F7F3;
  --encre-2: #A8BBB2;
  --trait: #2D4038;
  --sapin: #2BA77A;
  --sapin-fonce: #0A2C26;
  --menthe: #37C891;
  --menthe-pale: #173C2F;
  --corail-pale: #472219;
  --ambre-pale: #3F3219;
}
body[data-theme="menthe"] {
  --papier: #EEF8F1;
  --surface: #FFFFFF;
  --encre: #123026;
  --encre-2: #45665B;
  --trait: #CAE2D6;
  --sapin: #177456;
  --sapin-fonce: #0D3F31;
  --menthe: #21A875;
  --menthe-pale: #DDF5E8;
  --corail: #D94F3D;
  --corail-pale: #FBE8E4;
  --ambre: #C88A19;
  --ambre-pale: #FFF0CD;
}
body[data-theme="ocean"] {
  --papier: #EFF6F8;
  --surface: #FFFFFF;
  --encre: #10242A;
  --encre-2: #445E66;
  --trait: #D5E3E7;
  --sapin: #12606E;
  --sapin-fonce: #073844;
  --menthe: #168B7A;
  --menthe-pale: #DDF1EE;
  --corail: #D9573D;
  --corail-pale: #FBE9E4;
  --ambre: #C9901E;
  --ambre-pale: #FFF2D6;
}
body[data-theme="contraste"] {
  --papier: #F8F8F5;
  --surface: #FFFFFF;
  --encre: #0A0F0D;
  --encre-2: #303A35;
  --trait: #BFC8C1;
  --sapin: #003D34;
  --sapin-fonce: #001F1A;
  --menthe: #008D5F;
  --menthe-pale: #D8F2E4;
  --corail: #B82F1F;
  --corail-pale: #F7DED9;
  --ambre: #A66C00;
  --ambre-pale: #F8E6BF;
}

html, body { height: 100%; }
body {
  background: var(--papier);
  color: var(--encre);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: .95rem;
}
h1,h2,h3,h4,h5,.display-font {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--encre);
}

/* --- montants : signature produit ------------------------------ */
.amount {
  font-family: 'IBM Plex Mono', monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
}
.amount.pos { color: var(--menthe); }
.amount.neg { color: var(--corail); }
.amount-xl { font-size: 2.4rem; font-weight: 600; letter-spacing: -.02em; }

/* --- eyebrow / étiquettes -------------------------------------- */
.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--encre-2);
}

/* --- layout appli ---------------------------------------------- */
.app { display: flex; min-height: 100vh; }
.app-main { flex: 1; min-width: 0; padding: 28px 32px 56px; }
@media (max-width: 991px){ .app-main { padding: 18px 14px 90px; } }

/* --- sidebar ---------------------------------------------------- */
.sidebar {
  width: 248px; flex-shrink: 0;
  background: var(--sapin-fonce);
  color: #DCE9E3;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.sidebar .brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.45rem; color: #fff;
  padding: 22px 22px 14px; letter-spacing: -.02em;
}
.sidebar .brand .dot { color: var(--menthe); }
.sidebar nav { flex: 1; overflow-y: auto; padding: 6px 12px; }
.sidebar a.nav-item-link {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 12px; margin-bottom: 2px;
  border-radius: 10px; color: #BFD2CA; text-decoration: none;
  font-weight: 500; font-size: .92rem;
  transition: background .15s, color .15s;
}
.sidebar a.nav-item-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.sidebar a.nav-item-link.active { background: var(--menthe); color: #06251B; font-weight: 600; }
.sidebar .side-solde {
  margin: 12px; padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
}
.sidebar .side-solde .lbl { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #9DB8AE; }
.sidebar .side-solde .val { font-family: 'IBM Plex Mono', monospace; font-size: 1.15rem; color: #fff; }
.sidebar .side-user {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.09);
}
.sidebar .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--menthe); color: #06251B;
  display: grid; place-items: center; font-weight: 700; font-size: .85rem;
}
@media (max-width: 991px){
  .app { flex-direction: column; }
  .sidebar { position: fixed; z-index: 1045; left: -260px; transition: left .2s; height: 100dvh; }
  .sidebar.open { left: 0; }
  .backdrop { position: fixed; inset: 0; background: rgba(10,20,16,.45); z-index: 1040; display: none; }
  .backdrop.show { display: block; }
}
.mobile-topbar { display: none; }
@media (max-width: 991px){
  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    flex: 0 0 auto;
    padding: 12px 14px;
    background: var(--sapin-fonce);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1030;
  }
}

/* --- cartes ------------------------------------------------------ */
.card {
  border: 1px solid var(--trait);
  border-radius: var(--r);
  box-shadow: 0 1px 2px rgba(22,33,27,.04);
  background: var(--surface);
  color: var(--encre);
}
.card-header { background: transparent; border-bottom: 1px solid var(--trait); font-weight: 600; }
.kpi { position: relative; overflow: hidden; }
.kpi::before {
  content:""; position: absolute; top:0; left:0; right:0; height: 3px;
  background: var(--kpi-bar, var(--sapin));
}

/* --- boutons ----------------------------------------------------- */
.btn { border-radius: 10px; font-weight: 600; }
.btn-sapin { background: var(--sapin); color: #fff; border: none; }
.btn-sapin:hover { background: var(--sapin-fonce); color:#fff; }
.btn-outline-sapin { border: 1.5px solid var(--sapin); color: var(--sapin); background: transparent; }
.btn-outline-sapin:hover { background: var(--sapin); color: #fff; }
.btn-menthe { background: var(--menthe); border:none; color:#06251B; }
.btn-menthe:hover { background:#178B60; color:#fff; }

/* --- paiement Stripe -------------------------------------------- */
.stripe-payment-panel {
  border: 1px solid rgba(23, 83, 72, .22);
  background:
    linear-gradient(135deg, rgba(228, 244, 236, .92), rgba(255, 255, 255, .98));
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.stripe-secure-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.stripe-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--sapin);
}
.stripe-mark {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 28px;
  border-radius: 8px;
  background: var(--sapin-fonce);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 0 0 2px rgba(31,157,111,.14);
}
.stripe-lock {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--trait);
  color: var(--sapin);
  font-size: .9rem;
}
.stripe-checks {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--encre-2);
  font-size: .86rem;
}
.stripe-checks li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.stripe-checks li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--menthe);
  font-weight: 800;
}
.stripe-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--trait);
}
.stripe-total-row:last-child {
  border-bottom: 0;
}
.stripe-total-row.total {
  color: var(--encre);
  font-weight: 800;
}

/* --- champs mot de passe ---------------------------------------- */
.password-field {
  position: relative;
}
.password-field .form-control {
  padding-right: 46px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid var(--trait);
  border-radius: 9px;
  background: var(--surface);
  color: var(--sapin);
  display: inline-grid;
  place-items: center;
  line-height: 1;
  cursor: pointer;
}
.password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.password-toggle:hover {
  border-color: var(--sapin);
  background: var(--menthe-pale);
}
.password-toggle[aria-pressed="true"] {
  color: var(--corail);
}

/* --- tableaux ---------------------------------------------------- */
.table { --bs-table-hover-bg: #F7FAF6; }
body[data-theme="sombre"] .table {
  --bs-table-bg: var(--surface);
  --bs-table-color: var(--encre);
  --bs-table-hover-bg: #203128;
  --bs-table-border-color: var(--trait);
}
.table thead th {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--encre-2); font-weight: 600; border-bottom: 2px solid var(--trait);
}
.table td { vertical-align: middle; }

/* --- badges ------------------------------------------------------ */
.badge-soft { border-radius: 999px; font-weight: 600; font-size: .74rem; padding: .32em .7em; }
.b-menthe { background: var(--menthe-pale); color: #146A4B; }
.b-corail { background: var(--corail-pale); color: #A33420; }
.b-ambre  { background: var(--ambre-pale);  color: #8A5E12; }
.b-neutre { background: #EDF1EC; color: var(--encre-2); }

/* --- progress ----------------------------------------------------- */
.progress { height: 8px; border-radius: 99px; background: #E8EDE7; }
.progress-bar { background: var(--sapin); border-radius: 99px; }
.progress-bar.warn { background: var(--ambre); }
.progress-bar.over { background: var(--corail); }
.progress-bar.ok { background: var(--menthe); }

/* --- dashboard cashflow ------------------------------------------ */
.cashflow-metric {
  background: #F7FAF6;
  border: 1px solid var(--trait);
  border-left: 4px solid var(--metric-color, var(--sapin));
  border-radius: 10px;
  padding: 10px 12px;
  min-height: 66px;
}
.cashflow-panel {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 4px 0 0;
}
.cashflow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--trait);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(31,157,111,.10), transparent 42%),
    #FBFCFA;
}
.cashflow-net {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  margin-top: 2px;
}
.cashflow-pill {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cashflow-pill.is-positive { background: var(--menthe-pale); color: #146A4B; }
.cashflow-pill.is-negative { background: var(--corail-pale); color: #A33420; }
.cashflow-duel {
  display: grid;
  gap: 8px;
}
.cashflow-track {
  display: flex;
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #E8EDE7;
  border: 1px solid var(--trait);
}
.cashflow-track-income { background: var(--menthe); }
.cashflow-track-expense { background: var(--corail); }
.cashflow-duel-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .82rem;
}
.cashflow-bars {
  min-height: 170px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  padding: 8px 8px 0;
  border-bottom: 1px solid var(--trait);
}
.cashflow-bar-item {
  height: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: end;
  justify-items: center;
  gap: 8px;
}
.cashflow-bar-value {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .82rem;
}
.cashflow-bar-rail {
  width: min(58px, 62%);
  height: 135px;
  display: flex;
  align-items: flex-end;
  border-radius: 12px 12px 0 0;
  background: #EEF2EC;
  overflow: hidden;
}
.cashflow-bar-fill {
  width: 100%;
  min-height: 8px;
  border-radius: 12px 12px 0 0;
}
.cashflow-bar-label {
  color: var(--encre-2);
  font-size: .76rem;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .cashflow-panel { min-height: 280px; gap: 14px; }
  .cashflow-head { padding: 12px; }
  .cashflow-bars { gap: 10px; }
  .cashflow-bar-rail { width: 70%; height: 110px; }
  .cashflow-bar-value, .cashflow-bar-label { font-size: .68rem; }
}

/* --- catégories : pastille icône ---------------------------------- */
.cat-chip {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
}
.brand-chip {
  width: 38px; height: 38px; border-radius: 11px;
  display: inline-grid; place-items: center; flex-shrink: 0;
  position: relative; overflow: hidden; background: #EDF1EC;
  border: 1px solid var(--trait);
  vertical-align: middle;
}
.brand-chip img {
  width: 100%; height: 100%; object-fit: contain;
  background: #fff; padding: 6px; position: absolute; inset: 0;
}
.brand-chip-fallback {
  font-weight: 700; font-size: .9rem; color: var(--encre-2);
}
.tx-label {
  display: inline-flex; align-items: center; gap: 10px;
  min-width: 0; max-width: 100%;
}
.tx-label b {
  overflow-wrap: anywhere;
}
.tx-label-detail {
  font-size: .76rem; margin-left: 48px;
}

/* --- formulaires --------------------------------------------------- */
.form-control, .form-select { border-radius: 10px; border-color: var(--trait); padding: .55rem .8rem; }
.form-control:focus, .form-select:focus { border-color: var(--sapin); box-shadow: 0 0 0 .2rem rgba(23,83,72,.12); }
.form-label { font-weight: 600; font-size: .85rem; }
body[data-theme="sombre"] .form-control,
body[data-theme="sombre"] .form-select {
  background: #101814;
  border-color: var(--trait);
  color: var(--encre);
}
body[data-theme="sombre"] .form-control::placeholder { color: #789086; }
body[data-theme="sombre"] .form-text,
body[data-theme="sombre"] .text-muted-2 { color: var(--encre-2) !important; }

/* --- auth ----------------------------------------------------------- */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-side {
  background: var(--sapin-fonce); color: #DCE9E3; padding: 56px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.auth-side h2 { color: #fff; font-size: 2.2rem; font-weight: 800; }
.ledger-lines { font-family:'IBM Plex Mono', monospace; font-size:.88rem; line-height: 2.1; color:#9DB8AE; border-top:1px solid rgba(255,255,255,.14); }
.ledger-lines .row-l { display:flex; justify-content: space-between; border-bottom: 1px dashed rgba(255,255,255,.14); }
.auth-form { display: grid; place-items: center; padding: 40px 20px; }
.auth-card { width: 100%; max-width: 420px; }
@media (max-width: 900px){ .auth-wrap { grid-template-columns: 1fr; } .auth-side { display:none; } }

/* --- calendrier ------------------------------------------------------ */
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; width: 100%; overflow: hidden; }
.cal-head { text-align: center; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--encre-2); font-weight: 600; padding: 6px 0;}
.cal-cell {
  background: var(--surface); border: 1px solid var(--trait); border-radius: 10px;
  min-width: 0; height: 96px; padding: 6px; font-size: .78rem; overflow: hidden;
}
.cal-cell.other { opacity: .45; }
.cal-cell.today { border-color: var(--sapin); box-shadow: inset 0 0 0 1px var(--sapin); }
.cal-num { font-weight: 700; font-size: .8rem; }
.cal-ev {
  border-radius: 6px; padding: 2px 5px; margin-top: 3px;
  font-family: 'IBM Plex Mono', monospace; font-size: clamp(.58rem, .78vw, .7rem); font-weight: 700; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: default; max-width: 100%;
}
@media (max-width: 767px){ .cal-cell { height: 64px; } .cal-ev { display:none; } .cal-dotmob{display:inline-block;width:6px;height:6px;border-radius:50%;margin:2px 1px 0;} }

/* --- assistant -------------------------------------------------------- */
.assistant-shell {
  min-height: calc(100vh - 145px);
  display: grid;
  place-items: stretch center;
  min-width: 0;
  overflow-x: hidden;
}
.assistant-thread {
  width: min(100%, 980px);
  max-width: 100%;
  min-width: 0;
  min-height: calc(100vh - 145px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.assistant-thread .chat-box {
  flex: 1;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: 18px 18px 116px;
  overflow-y: auto;
  overflow-x: hidden;
  background:
    linear-gradient(#F7FAF6 0 0) padding-box,
    linear-gradient(180deg, rgba(23,83,72,.18), rgba(31,157,111,.08)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
}
.assistant-composer {
  position: sticky;
  bottom: 18px;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  margin-top: -92px;
  pointer-events: none;
}
.assistant-composer-inner {
  width: min(100%, 820px);
  pointer-events: auto;
}
.assistant-input-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--trait);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 14px 40px rgba(22,33,27,.12);
}
.assistant-input-wrap textarea {
  min-height: 44px;
  max-height: 140px;
  resize: none;
  border: 0;
  box-shadow: none !important;
  padding: 10px 12px;
  background: transparent;
}
.assistant-send {
  min-height: 44px;
  border-radius: 13px;
  padding-inline: 18px;
}
.chat-box { height: calc(100vh - 260px); min-height: 380px; overflow-y: auto; overflow-x: hidden; }
.msg { max-width: 78%; min-width: 0; padding: 12px 16px; border-radius: 16px; margin-bottom: 12px; line-height: 1.55; overflow-wrap: anywhere; }
.msg.user { background: var(--sapin); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.msg.ia { background: var(--surface); border: 1px solid var(--trait); border-bottom-left-radius: 4px; }
.msg.ia .amount { font-size: .9em; }
.assistant-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 10px 0;
  border: 1px solid var(--trait);
  border-radius: 10px;
}
.assistant-table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  border-collapse: collapse;
  font-size: .84rem;
}
.assistant-table th,
.assistant-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--trait);
  vertical-align: top;
}
.assistant-table th {
  background: #F7FAF6;
  color: var(--encre-2);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.assistant-table td { background: #fff; }
.assistant-table tr:last-child td { border-bottom: 0; }
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.usecase-item {
  border: 1px solid var(--trait);
  border-radius: 10px;
  padding: 12px;
  background: #F7FAF6;
}
.usecase-item b {
  display: block;
  margin-bottom: 4px;
  color: var(--sapin);
}
.usecase-item span {
  display: block;
  color: var(--encre-2);
  font-size: .86rem;
  line-height: 1.35;
}
@media (max-width: 575px) {
  .usecase-grid { grid-template-columns: 1fr; }
}
.chip-q {
  border: 1.5px solid var(--trait); background: var(--surface);
  border-radius: 999px; padding: 7px 14px; font-size: .83rem; font-weight: 600;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.chip-q:hover { border-color: var(--sapin); background: var(--menthe-pale); }
.action-card { border: 1.5px dashed var(--sapin); border-radius: var(--r); background: #F2F8F4; }
.category-card { cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s; }
.category-card:hover, .category-card.selected {
  border-color: var(--sapin);
  box-shadow: 0 8px 22px rgba(22,33,27,.08);
}

/* --- divers ------------------------------------------------------------ */
a { color: var(--sapin); }
.text-muted-2 { color: var(--encre-2); }

.profile-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--trait);
  border-radius: 10px;
  background: #F7FAF6;
}
body[data-theme="sombre"] .profile-summary { background: #101814; }
.profile-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}
.profile-note {
  border: 1px solid var(--trait);
  border-radius: 10px;
  padding: 14px;
}
.icon-btn { border: 1px solid var(--trait); background: var(--surface); border-radius: 9px; width: 34px; height: 34px; display: inline-grid; place-items: center; color: var(--encre-2); }
.icon-btn:hover { border-color: var(--sapin); color: var(--sapin); }
:focus-visible { outline: 2px solid var(--sapin); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){ *{ transition: none !important; animation: none !important; } }
