/* ═══════════════════════════════════════════════════════════════════
   BASE.CSS V8 — Layout, typo, navigation, footer, responsive
   Charte : fond noir uniforme, accent vert néon, h2 CAPS, Inter
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding-inline: .75rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-heading);
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
/* Section h2 → CAPS aérés (règle maquette) */
h2 { text-transform: uppercase; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
ul, ol { list-style: none; }


/* ── Skip link ─────────────────────────────────────────────────── */

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--color-primary); color: #000;
    padding: .5rem 1rem; border-radius: var(--radius);
    z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 1rem; }


/* ── Container ─────────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ── Buttons ───────────────────────────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.5rem;
    font-size: .95rem; font-weight: 600;
    font-family: inherit;
    border: none; border-radius: 999px;
    cursor: pointer; transition: all var(--transition);
    text-decoration: none; line-height: 1.2;
}
.btn-primary {
    background: var(--color-primary); color: #0A0A0A;
}
.btn-primary:hover {
    background: var(--color-primary-light);
    color: #0A0A0A;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}
.btn-secondary,
.btn-outline {
    background: transparent; color: var(--color-text);
    border: 1.5px solid var(--color-text);
}
.btn-secondary:hover,
.btn-outline:hover { background: var(--color-text); color: #0A0A0A; }
.btn-dark {
    background: #0A0A0A; color: var(--color-text);
}
.btn-dark:hover { background: #000; color: var(--color-text); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* Arrow embedded in primary CTA */
.btn-primary .btn-arrow,
.btn .btn-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.1em; height: 1.1em; flex-shrink: 0;
    transition: transform var(--transition);
}
.btn:hover .btn-arrow { transform: translateX(3px); }


/* ── Header / Navigation ──────────────────────────────────────── */

.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(14, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 4.5rem;
    gap: 1rem;
}

.logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.logo-img { height: 1.85rem; width: auto; }
.logo-text {
    font-family: var(--font-heading); font-weight: 800;
    font-size: 1.4rem; color: var(--color-text);
    letter-spacing: -0.02em;
}

.main-nav { display: flex; align-items: center; gap: .75rem; flex: 1; justify-content: flex-end; }
.nav-list { display: flex; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; }
.nav-item > a {
    display: block; padding: .5rem .55rem;
    font-size: .875rem; font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.nav-item > a:hover { color: var(--color-primary); }

.nav-cta {
    white-space: nowrap;
    background: var(--color-primary);
    color: #0A0A0A !important;
    font-weight: 600;
    font-size: .875rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    margin-left: 0;
    display: inline-flex; align-items: center; gap: .4rem;
    transition: all var(--transition);
}
.nav-cta:hover {
    background: var(--color-primary-light);
    color: #0A0A0A !important;
    box-shadow: var(--shadow-glow);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
    content: '▾'; margin-left: .35rem; font-size: .7em; opacity: .6;
}
.dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 260px; padding: .5rem 0;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-list { list-style: none; padding: 0; margin: 0; }
.dropdown-list li a {
    display: block; padding: .65rem 1.25rem;
    font-size: .875rem; color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition);
}
.dropdown-list li a:hover {
    background: rgba(39, 199, 90, 0.08);
    color: var(--color-primary);
}

/* Language switcher */
.lang-switcher { position: relative; margin-right: .25rem; }
.lang-current {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .45rem .75rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text); font-weight: 500; font-size: .85rem;
    cursor: pointer; transition: all var(--transition);
    line-height: 1;
}
.lang-current:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.lang-current .flag-icon {
    border-radius: 2px; flex-shrink: 0;
}
.lang-current .caret {
    color: var(--color-text-muted); transition: transform var(--transition);
}
.lang-switcher.has-dropdown:hover .lang-current .caret,
.lang-switcher.has-dropdown:focus-within .lang-current .caret {
    transform: rotate(180deg);
}
.lang-dropdown { right: 0; left: auto; min-width: 180px; }
.lang-dropdown .dropdown-list li a {
    display: flex !important; align-items: center; gap: .75rem;
    padding: .65rem 1rem !important;
}
.lang-dropdown .flag-icon { border-radius: 2px; flex-shrink: 0; }
.lang-dropdown a[aria-current="page"] {
    color: var(--color-primary) !important;
    background: rgba(39, 199, 90, 0.06);
}

@media (max-width: 900px) {
    .lang-switcher { margin: 1.5rem 0; align-self: stretch; }
    .lang-current { width: 100%; justify-content: center; padding: .75rem 1rem; font-size: 1rem; }
    .lang-dropdown {
        position: static !important; opacity: 1 !important; visibility: visible !important;
        transform: none !important; box-shadow: none !important;
        background: transparent !important; border: none !important;
        margin-top: .5rem; padding: 0 !important; display: none;
    }
    .lang-switcher.has-dropdown:hover .lang-dropdown,
    .lang-switcher.has-dropdown:focus-within .lang-dropdown { display: block; }
}

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 2.5rem; height: 2.5rem;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.hamburger span {
    display: block; width: 1.5rem; height: 2px;
    background: var(--color-text); transition: all .3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ── Breadcrumb ────────────────────────────────────────────────── */

.breadcrumb { padding: 1rem 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; font-size: .85rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .5rem; color: var(--color-text-faint); }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: var(--color-text); }


/* ── Page title ────────────────────────────────────────────────── */

.page-h1 {
    margin: 3rem auto 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
}


/* ── Sections — all on uniform black background ─────────────── */

.section { padding: var(--section-py) 0; background: var(--color-bg); }
.section-heading { text-align: center; margin-bottom: 1rem; }
.section-subtitle {
    text-align: center; color: var(--color-text-muted);
    margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto;
}


/* ── Rich text — éditorial sombre ───────────────────────────── */

.rich-text { color: var(--color-text-muted); line-height: 1.75; font-size: 1rem; }
.rich-text p { margin-bottom: 1.25rem; }
.rich-text ul, .rich-text ol { margin: 1.25rem 0; padding-left: 0; }
.rich-text ul { list-style: none; }
.rich-text ul li {
    position: relative; padding-left: 2rem; margin-bottom: .75rem;
    color: var(--color-text-muted);
}
.rich-text ul li::before {
    content: ''; position: absolute; left: 0; top: .35em;
    width: 1.25rem; height: 1.25rem;
    background: var(--color-primary);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.rich-text ol { list-style: decimal; padding-left: 1.5rem; }
.rich-text ol li { margin-bottom: .75rem; padding-left: 0; }
.rich-text ol li::before { display: none; }
.rich-text strong { font-weight: 700; color: var(--color-text); }
.rich-text em { color: var(--color-text); font-style: italic; }
.rich-text a {
    color: var(--color-primary); text-decoration: none;
    border-bottom: 1px solid rgba(39, 199, 90, 0.4);
    transition: all var(--transition);
}
.rich-text a:hover { color: var(--color-primary-light); border-bottom-color: var(--color-primary-light); }

/* Buttons inside rich-text */
.rich-text a.btn,
.rich-text a.btn-primary {
    color: #0A0A0A; border-bottom: none; display: inline-flex;
}
.rich-text a.btn:hover,
.rich-text a.btn-primary:hover { color: #0A0A0A; border-bottom: none; }
.rich-text a.btn-outline,
.rich-text a.btn-dark { color: var(--color-text); border-bottom: none; }

.rich-text h2 {
    margin: 3rem 0 1.25rem; color: var(--color-text);
    text-transform: uppercase; letter-spacing: 0.02em;
    font-size: clamp(1.4rem, 2.4vw, 1.875rem);
}
.rich-text h3 {
    margin: 2rem 0 .75rem; color: var(--color-text);
    font-size: 1.15rem; font-weight: 700;
}
.rich-text blockquote {
    border-left: 0;
    padding: 1.5rem 0 .5rem;
    margin: 2rem auto;
    max-width: 760px;
    text-align: center;
    background: transparent;
    font-size: 1.05rem; font-style: italic; color: var(--color-text);
    line-height: 1.6;
}

/* ── Tables — minimaliste sombre ─────────────────────────────── */
.rich-text table,
table.comparison-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    margin: 2rem 0;
    background: var(--color-surface);
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--color-border);
}
.rich-text thead th,
table.comparison-table thead th {
    background: rgba(39, 199, 90, 0.06);
    color: var(--color-primary);
    font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    font-size: .8rem; padding: 1rem 1.25rem; text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.rich-text tbody td,
table.comparison-table tbody td {
    padding: 1rem 1.25rem; color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}
.rich-text tbody tr:last-child td,
table.comparison-table tbody tr:last-child td { border-bottom: none; }
.rich-text tbody tr:hover,
table.comparison-table tbody tr:hover { background: rgba(39, 199, 90, 0.03); }

.rich-text img {
    max-width: 100%; height: auto; border-radius: var(--radius-lg);
    margin: 2rem 0; box-shadow: var(--shadow-lg);
}


/* ── Callout blocks (:::callout-info, :::cta, etc.) ─────────────── */

.callout {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.75rem 0;
    border-left: 3px solid var(--color-border-strong);
    background: var(--color-surface);
}
.callout > *:first-child { margin-top: 0; }
.callout > *:last-child  { margin-bottom: 0; }

.callout-info {
    border-left-color: var(--color-primary);
    background: rgba(39, 199, 90, 0.05);
}
.callout-info strong { color: var(--color-primary); }

.callout-warning {
    border-left-color: #FFB400;
    background: rgba(255, 180, 0, 0.05);
}

.callout-cta,
.callout-cta-final {
    border-left: none;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    text-align: center;
    padding: 2rem 2.5rem;
}
.callout-cta em,
.callout-cta-final em {
    display: inline-block;
    margin-top: 1rem;
    padding: .65rem 1.5rem;
    background: var(--color-primary);
    color: #0A0A0A;
    font-style: normal;
    font-weight: 700;
    border-radius: var(--radius);
    font-size: .95rem;
    cursor: pointer;
}


/* ── Flash toasts (fixed, top-right) ───────────────────────────── */

.flash-toast-stack {
    position: fixed;
    top: 5rem;
    right: max(1rem, env(safe-area-inset-right, 0px));
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: min(420px, calc(100vw - 2rem));
    pointer-events: none;
}

.flash-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-block, 12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.45;
    animation: flash-toast-in 280ms ease-out;
}

.flash-toast-icon {
    flex-shrink: 0;
    display: flex;
    margin-top: .1rem;
}

.flash-toast-text {
    flex: 1 1 auto;
    min-width: 0;
}

.flash-toast-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin: -.15rem -.25rem 0 0;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    opacity: .75;
    transition: opacity var(--transition), background var(--transition);
}

.flash-toast-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.12);
}

.flash-toast-success {
    background: var(--color-primary);
    color: #0E0F0F;
}

.flash-toast-error {
    background: #dc2626;
    color: #fff;
}

.flash-toast-error .flash-toast-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.flash-toast.is-leaving {
    animation: flash-toast-out 220ms ease-in forwards;
}

@keyframes flash-toast-in {
    from { opacity: 0; transform: translateY(-12px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes flash-toast-out {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(-8px) scale(.97); }
}

@media (max-width: 600px) {
    .flash-toast-stack {
        top: 4.5rem;
        left: 1rem;
        right: 1rem;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flash-toast { animation: none; }
    .flash-toast.is-leaving { animation: none; opacity: 0; }
}


/* ── Footer — noir uniforme ─────────────────────────────────── */

.site-footer {
    background: var(--color-bg);
    color: var(--color-text-muted);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-border);
}
.site-footer a { color: var(--color-text-muted); text-decoration: none; transition: color var(--transition); }
.site-footer a:hover { color: var(--color-primary); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.footer-brand { max-width: 300px; }
.footer-column { min-width: 0; }

.footer-logo {
    font-family: var(--font-heading); font-weight: 800;
    font-size: 1.4rem; color: var(--color-text);
    display: block; margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo-img {
    height: 2.25rem;
    width: auto;
    display: block;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; color: var(--color-text-muted); }

.social-links { display: flex; gap: .75rem; }
.social-links a {
    text-transform: capitalize; font-size: .85rem;
    padding: .35rem .75rem; border-radius: 999px;
    border: 1px solid var(--color-border);
}
.social-links a:hover { border-color: var(--color-primary); color: var(--color-primary); }

.footer-column h4 {
    color: var(--color-text); font-size: .8rem; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 1.25rem; font-weight: 700;
}
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: .65rem; }
.footer-column ul li a { font-size: .9rem; }

.footer-contact {
    display: flex; flex-wrap: wrap; gap: 2rem;
    padding: 1.5rem 0; border-top: 1px solid var(--color-border);
    font-size: .9rem;
}

.footer-filiales {
    padding: 2.5rem 0; border-top: 1px solid var(--color-border);
    margin-top: 1rem;
}
.footer-filiales-label {
    text-align: center; font-size: .75rem; text-transform: uppercase;
    letter-spacing: .1em; color: var(--color-text-faint); margin-bottom: 1.5rem;
}
.footer-filiales-list {
    display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem;
    align-items: center; justify-content: center;
    list-style: none; padding: 0; margin: 0;
}
.footer-filiales-list a {
    display: inline-flex; align-items: center; padding: .5rem .75rem;
    color: var(--color-text-muted); font-weight: 600; font-size: .9rem;
    text-transform: lowercase; letter-spacing: .02em;
    border-radius: var(--radius);
    transition: all var(--transition); opacity: .65;
}
.footer-filiales-list a:hover {
    color: var(--color-primary); opacity: 1;
    background: rgba(39, 199, 90, 0.06);
}
.footer-filiales-list img {
    height: 28px; width: auto; max-width: 130px;
    object-fit: contain;
    filter: invert(1) brightness(1.1);
    transition: filter var(--transition);
}
.footer-filiales-list a:hover img {
    filter: invert(58%) sepia(60%) saturate(1500%) hue-rotate(85deg) brightness(95%);
}

.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--color-border);
    font-size: .8rem; color: var(--color-text-faint); text-align: center;
}


/* ── Scroll reveal ───────────────────────────────────────────── */

.section { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
.section.scroll-hidden { opacity: 0; transform: translateY(24px); }
.section.revealed { opacity: 1; transform: translateY(0); }

/* Header shrink */
.site-header { transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4); }
.site-header.scrolled .header-inner { height: 3.75rem; transition: height .25s ease; }


/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .nav-item > a { padding: .5rem .65rem; font-size: .85rem; }
    .nav-cta { padding: .55rem 1rem; font-size: .85rem; }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 900px) {
    .hamburger { display: flex; z-index: 1100; }
    .main-nav {
        position: fixed; top: 4.5rem; left: 0; right: 0;
        height: calc(100vh - 4.5rem);
        max-height: calc(100vh - 4.5rem);
        background: var(--color-bg); padding: 2rem 1.5rem 4rem;
        transform: translateX(100%); transition: transform .3s ease;
        overflow-y: auto;
        flex: 0 0 auto !important;
        flex-direction: column !important; align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        border-top: 1px solid var(--color-border);
        z-index: 999;
        display: flex !important;
        width: 100% !important;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column !important; align-items: stretch; gap: 0; }
    .nav-item > a {
        padding: 1rem 0; font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
    }
    .nav-cta { margin: 2rem 0 0; text-align: center; padding: 1rem 1.5rem; font-size: 1rem; justify-content: center; }
    .dropdown {
        position: static; box-shadow: none; opacity: 1; visibility: visible;
        transform: none; padding: .5rem 0 .5rem 1rem;
        background: transparent; border: none;
    }
    .has-dropdown > a::after { transform: rotate(0); }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact { flex-direction: column; gap: .75rem; }
    .section { padding: 4rem 0; }
    .hero-inner { grid-template-columns: 1fr !important; min-height: auto !important; padding: 2.5rem 0 !important; gap: 2rem !important; }
    .text-image-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

@media (max-width: 480px) {
    body { font-size: .9375rem; }
    .container { padding: 0 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .logo-img { height: 1.85rem; }
    .header-inner { height: 4rem; gap: 1rem; }
}


/* ── Reduced motion ────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
