/* RestauVert — Mode clair forcé. Annule toute tentative de dark mode. */
:root,
html,
html[data-theme="dark"],
html[data-theme="light"],
html[data-theme] {
  color-scheme: light !important;
}
html[data-theme="dark"] body,
html[data-theme="dark"] {
  background: #fffdf8 !important;
  color: #18291E !important;
}
/* Cacher TOUS les toggles de thème (mobile + desktop) */
.theme-toggle,
#themeToggle,
.rv-theme-toggle,
button[aria-label*="thème"],
button[aria-label*="theme"],
#rv2x-theme,
.rv2-theme-toggle,
#rv2-theme-toggle {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
}
