@import url(core.css);
@import url(politique-de-confidentialite.css);
@import url(devis.css);
@import url(forge.css);
@import url(portfolio.css);
@import url(toast.css);
@import url(grid.min.css);
@import url(light.css);
@import url(dys.css);
@import url(socials.css);
@import url(produits.css);
@import url(qui-suis-je.css);
@import url(animaux.css);
@import url(tarifs.css);
@font-face {
    font-family: "Mercia Script";
    src: url("../fonts/Mercia Script.otf") format("opentype");
    font-weight: normal; font-style: normal;
}

:root {
    /* ===== LOALIA ===== */

    --c-bg: #241812;
    --c-bg2: #302119;
    --c-bg-box: #3d2d24;
    --c-surface: #4a382e;
    --c-surface-soft: #efe3d2;
    --c-card: rgba(74, 56, 46, 0.72);
    --c-dark: #2a1d16;
    --c-dark-2: #3a2a21;

    --c-main: #dec8aa;
    --c-second: #c6aa86;
    --c-footer: #20150f;
    --c-fourth: #a99375;

    --c-txt: #fff8ef;
    --c-txt-muted: #ead9c6;
    --c-txt-soft: #c9b8a5;

    --c-border: #e2caa8;
    --c-border-soft: rgba(226, 202, 168, 0.24);
    --c-shadow: rgba(12, 7, 4, 0.34);

    --c-btn: #dec8aa;
    --c-btn-txt: #261912;
    --c-btn-hover: #f0dec5;
    --c-btn-active: #b8956e;
    --c-btn-focus: #f0dec5;

    --c-conscent: #89b38d;
    --c-conscent-hover: #6e9872;

    scrollbar-width: thin !important;
    scrollbar-color: var(--c-main) transparent !important;
    scroll-behavior: smooth !important;
}

.attention {
    background-color: #ec9742;
    color: black;
    border: 1px solid var(--c-border);
    box-shadow: 0 4px 6px var(--c-shadow);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: fixed; top: 80px; left: 35%;
    transform: translateX(-50%);
    z-index: 1000;
}

button {background-color: var(--c-btn);color: var(--c-btn-txt);}
button:hover{background-color: var(--c-btn-hover);}
button:active{background-color: var(--c-btn-active);}
button:focus-visible, button:focus, input:focus-visible, input:focus{outline: 2px solid var(--c-btn-focus);}

html, body {margin: 0;padding: 0;scroll-padding-top: 150px;font-family: 'Roboto', sans-serif; }
a, button, input {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-decoration: none !important;
}
.insecable{
    white-space: nowrap;
    overflow: hidden;      
    text-overflow: ellipsis;
}
section {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    opacity: 0;transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section.visible {opacity: 1;transform: translateY(0);}
* {
    transition: all 0.5s ease-out;  
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
/* General Styles */
body {
    margin: 0; color: var(--c-txt);
    background-color: var(--c-bg-box);
    overflow-x: hidden;
    font-size: 20px;
}
 /* Header */
header {
    display: flex; position: fixed; top: 0;
    width: 100%;                   /* fallback */
    width: -webkit-fill-available; /* Chrome, Safari */
    width: -moz-available;         /* Firefox */
    width: stretch;                /* Nouveau standard, encore peu supporté */
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    padding: 10px 25px;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
}
header.scrolled {
    background-color: var(--c-bg-box);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
#nav-links {
    display: flex;gap: 20px;
    background-color: var(--c-dark-2);
    padding: 10px;border-radius: 15px;
}
#hamburger {
    display: none;font-size: 24px;
    cursor: pointer;
    background-color: var(--c-dark-2);
    padding: 10px;border-radius: 15px;
}
.logo {
    font-size: 24px; font-weight: bold;
    color: var(--c-txt); display: flex; gap: 5px;
    align-items: center; text-decoration: none;

    background-color: var(--c-dark-2);
    padding: 10px;
    border-radius: 15px;
}
.logo-nav{height: 35px; width: auto;display: flex;}
.logo span {font-weight: 300;color: var(--c-txt);margin-left: 5px;}
nav {display: flex; gap: 20px; }
nav a {
    text-decoration: none;
    color: var(--c-txt); font-weight: bold;
    transition: color 0.3s ease;
}
nav a:hover { color: var(--c-main);}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* menu caché */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
}

/* items */
.dropdown-content a {
    display: block;
    padding: 12px 14px;
    color: #333;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* hover */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Footer */
footer {
    text-align: center;padding: 1rem;
    background-color: var(--c-bg2);
    box-shadow: 0 -4px 6px rgb(0 0 0 / 16%)
}
.footer-article {
    padding-bottom: 2rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.footer-txt{color: var(--c-txt);font-size: small;}
.container-footer{padding-left: 5%;padding-right: 5%;}
.container-w{
    margin: 0 15%;
    padding: 50px 0;
    text-align: center;
}
footer p {font-size: 14px;color: var(--c-txt); text-align: justify}
.row-b{
    display: flex;
    flex-wrap: wrap;
    align-items: anchor-center;
    align-items: center; 
    justify-content: space-between;
    gap: 1rem; margin: auto;
}
p {font-size: 18px;line-height: 1.6; margin-bottom: 1rem;}
h3 {
    font-size: 24px;line-height: 1.3;
    margin-top: 1.5rem;margin-bottom: 1rem;
    font-weight: 600;
}
.center{text-align: center;justify-content: center;}
.btn-social {
    display: flex;align-items: center;
    justify-content: center;border-radius: 50%;
    width: 100px; height: 100px; 
    background: linear-gradient(145deg, #121212, #1a1a1a);
    box-shadow: 
        12px 12px 24px #0e0e0e,
        -12px -12px 24px #181818,
        inset 4px 4px 8px rgba(0, 0, 0, 0.6),
        inset -4px -4px 8px rgba(255, 255, 255, 0.1);
    padding: 0; margin: auto;
    text-decoration: none;
    cursor: pointer
}
.btn-social img, .btn-social svg, .btn-social i, .btn-social object {
    width: 50%;height: auto;
    max-width: 90px;font-size: 50px;
    line-height: 1;text-decoration: none;
    margin: auto;
}
.img-solo{
    width: 90%;height: auto;
    font-size: 50px;max-width: 270px;
    line-height: 1;text-decoration: none;
    margin: auto;
    filter: drop-shadow(5px 5px 10px #000000);
    border-radius: 8px;
}
.btn-social:hover{background: var(--c-dark-2);color: var(--c-txt);cursor: pointer}
hr {
    border: none;
    height: 2px; width: 80%;
    margin: 1.5rem auto;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0), 
        var(--c-second), 
        rgba(0,0,0,0)
    );
    border-radius: 4px;
    opacity: .35;
}
.btn-text{ color: var(--c-txt); text-decoration: none; font-weight: bold; }
.btnfooter {
    width: fit-content; 
    border: 1px solid transparent;
    transition-duration: 0.3s;
    color: var(--c-txt);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bolder;
    font-size: medium;
}
.btnfooter:hover{
    width: fit-content;
    border: 1px solid var(--c-fourth);
    transition-duration: 0.3s;
    background-color: var(--c-second);
    transform: scale(1.02);
    color: #0e0e0e;
}
.button-container {
    display: flex;justify-content: center;
    align-items: center;height: 100px;
}
.btn-soft {
    transition: background-color 0.3s, color 0.3s;
    display: flex; align-items: center;
    color: var(--c-txt); justify-content: center;
    width: auto; cursor: pointer;
}
.btn-soft i {font-size: 20px;transition: none;}
.btn-soft:hover {color: var(--c-footer);}
/* Menu contenant les boutons */
.settings-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    background-color: var(--c-bg, var(--c-dark-2)); /* optionnel */
    padding: 10px;
    border-radius: 12px;
    z-index: 999;
    backdrop-filter: blur(8px);
}
/* Adapter le bouton pour avoir taille fixe carrée (facultatif) */
.settings-menu .btn-soft {
    width: 42px;
    height: 42px;
    background-color: var(--c-card, var(--c-dark-2));
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.settings-menu .btn-soft:hover {
    background-color: var(--c-footer); 
    color: var(--c-dark-2)
}
/* Icône centrée */
.settings-menu .btn-soft i {
    font-size: 20px;
    line-height: 1;
}
/* Label du bouton dyslexie = full bouton cliquable */
.toggle-dys-btn {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.toggle-dys-btn i {transition: transform 0.3s ease, opacity 0.3s ease;}
.toggle-dys-btn:active i {transform: rotate(20deg);opacity: 0.8;}
a {color: var(--c-second);}
.debug{
    position: fixed;
    bottom: 10px; left: 10px;
    background: #e53935;
    color: white; padding: 8px 14px;
    font-size: 13px; font-family: monospace;
    border-radius: 6px; z-index: 9999;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
#discord-btn {
    background-color: #5865F2;
    color: white;
    cursor: pointer;
}
#discord-btn:hover {background-color: #4752c4;}
#discord-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Quand visible (ajoutée dynamiquement via JS) */
#discord-widget.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Responsive */
@media (max-width: 768px) {
    .settings-menu {
        bottom: 10px;
        right: 10px;
        gap: 8px;
        padding: 8px;
    }
    .settings-menu .btn-soft {width: 38px;height: 38px;}
    #nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--c-bg);
        position: absolute;
        top: 70px; right: 20px;
        padding: 20px; border-radius: 10px;
    }
    #nav-links.show { display: flex; }
    #hamburger { display: block; }
    .no-see{display: none;}
}
body {font-family: "Inter", sans-serif;}
h1, h2, h3, h4, h5, h6 {
    font-family: "Mercia Script", sans-serif !important;
}
#sw-update-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}
.sw-update-visible #sw-update-banner {opacity: 1;pointer-events: auto;}
#sw-update-banner button {
    background: var(--c-second);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--c-txt);
    cursor: pointer;
    font-weight: bold;
}

/* ===== LOALIA 2026 - premium brun / beige ===== */
:root.light {
    --c-bg: #281b14;
    --c-bg2: #34241b;
    --c-bg-box: #443126;
    --c-surface: #523e33;
    --c-surface-soft: #f1e5d5;
    --c-card: rgba(82, 62, 51, 0.72);
    --c-dark: #2d1f18;
    --c-dark-2: #3f2d23;
    --c-main: #e4cfb0;
    --c-second: #c9ad88;
    --c-footer: #21160f;
    --c-fourth: #a99478;
    --c-txt: #fff8ef;
    --c-txt-muted: #ead9c6;
    --c-txt-soft: #cbb8a2;
    --c-border: #e6cfad;
    --c-border-soft: rgba(230, 207, 173, 0.26);
    --c-shadow: rgba(12, 7, 4, 0.34);
    --c-btn: #e4cfb0;
    --c-btn-txt: #281b14;
    --c-btn-hover: #f3e0c5;
    --c-btn-active: #b8956e;
    --c-btn-focus: #f3e0c5;
}

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

* {
    letter-spacing: 0;
    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        opacity 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

body,
body.light {
    color: var(--c-txt);
    background:
        linear-gradient(180deg, rgba(36, 24, 18, 0.98) 0%, rgba(52, 36, 27, 0.98) 52%, rgba(36, 24, 18, 0.98) 100%),
        var(--c-bg);
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

p, h1, h2, h3, h4, h5, h6, label, input, textarea {
    user-select: text;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: "Lexend", "Inter", Arial, sans-serif !important;
    color: var(--c-txt);
    font-weight: 600;
    letter-spacing: 0;
}

h1 {
    font-size: 3rem;
    line-height: 1.05;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.12;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
}

p {
    color: var(--c-txt-muted);
    font-size: 1rem;
    line-height: 1.75;
}

a {
    color: var(--c-main);
}

a:hover {
    color: var(--c-btn-hover);
}

header {
    padding: 12px 24px;
    background: rgba(36, 24, 18, 0.62);
    border-bottom: 1px solid var(--c-border-soft);
    backdrop-filter: blur(14px);
}

header.scrolled {
    background-color: rgba(36, 24, 18, 0.92);
    border-bottom-color: rgba(230, 207, 173, 0.34);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.logo,
#nav-links,
#hamburger {
    background: rgba(255, 248, 239, 0.07);
    border: 1px solid var(--c-border-soft);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.logo {
    color: var(--c-txt);
    padding: 8px 12px;
    gap: 8px;
}

.logo-nav {
    height: 38px;
}

#nav-links {
    gap: 6px;
    padding: 6px;
}

nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--c-txt-muted);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 8px;
}

nav a:hover {
    color: var(--c-bg);
    background: var(--c-main);
}

#hamburger {
    color: var(--c-txt);
    padding: 8px 12px;
}

.settings-menu {
    background: rgba(36, 24, 18, 0.78);
    border: 1px solid var(--c-border-soft);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.settings-menu .btn-soft {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 248, 239, 0.08);
    border: 1px solid transparent;
    color: var(--c-txt);
    border-radius: 8px;
}

.settings-menu .btn-soft:hover {
    background-color: var(--c-main);
    color: var(--c-bg);
}

.container-w {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
    text-align: center;
}

.container-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0;
}

.row-b {
    align-items: center;
    justify-content: center;
}

section {
    background: transparent;
}

.landingEly {
    min-height: 35dvh;
    height: auto;
    padding: 110px 20px 64px;
    isolation: isolate;
}

.video-container {
    filter: none;
}

.video {
    filter: saturate(0.82) brightness(0.68);
}

.landingEly::before {
    background:
        linear-gradient(180deg, rgba(36, 24, 18, 0.42), rgba(36, 24, 18, 0.82)),
        rgba(36, 24, 18, 0.34);
}

.landingEly-content {
    width: min(900px, 100%);
    margin: 0 auto;
}

.logo-main {
    width: min(470px, 82vw);
    height: auto;
    max-height: 470px;
    padding: 10px;
    border-radius: 8px;
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34));
}

.landingBis {
    background: var(--c-surface-soft);
    color: var(--c-bg);
    border-top: 1px solid rgba(255, 248, 239, 0.42);
    border-bottom: 1px solid rgba(255, 248, 239, 0.42);
}

.landingBis p {
    color: #3a281f;
    max-width: 830px;
    margin: 0 auto 1rem;
    font-size: 1.08rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--c-main);
    background: rgba(228, 207, 176, 0.11);
    border: 1px solid var(--c-border-soft);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn,
button,
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-height: 44px;
    padding: 12px 18px;
    background: var(--c-btn);
    color: var(--c-btn-txt);
    border: 1px solid rgba(255, 248, 239, 0.18);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    font-weight: 700;
}

.btn:hover,
button:hover,
.about-btn:hover {
    background: var(--c-btn-hover);
    color: var(--c-btn-txt);
    transform: translateY(-2px);
}

.devis button[type="submit"],
.shop-stripe button,
#stripe-acompte {
    width: 100%;
}

input,
textarea,
select {
    background: rgba(255, 248, 239, 0.08);
    color: var(--c-txt);
    border: 1px solid var(--c-border-soft);
    border-radius: 8px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 248, 239, 0.62);
}

.section-prod,
.ventes,
.animal-accessories {
    background:
        linear-gradient(180deg, rgba(74, 56, 46, 0.72), rgba(48, 33, 25, 0.92)),
        var(--c-bg2);
    border-top: 1px solid var(--c-border-soft);
    border-bottom: 1px solid var(--c-border-soft);
}

.testimonial-gallery,
.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.img-produit,
.img-solo,
.img-tarifs {
    border-radius: 8px;
    border: 1px solid rgba(230, 207, 173, 0.32);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    filter: none;
}

.img-produit {
    width: min(100%, 285px);
    height: 360px;
    margin: 0;
}

.img-solo {
    width: min(100%, 280px);
    height: 340px;
    object-fit: cover;
    margin: 0;
}

.img-tarifs {
    width: min(100%, 520px);
    background: var(--c-surface-soft);
}

.img-produit:hover,
.img-solo:hover,
.img-tarifs:hover {
    transform: translateY(-4px);
}

.card-tarif,
.step-tarifs,
.animal-card,
.about-values .value,
.step,
.faq-item,
.window {
    background: rgba(255, 248, 239, 0.08);
    color: var(--c-txt);
    border: 1px solid var(--c-border-soft);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.steps-tarifs {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.step-tarifs {
    width: min(100%, 360px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px;
}

.step-tarifs h3,
.step-tarifs p,
.card-tarif h3 {
    color: var(--c-txt);
}

.steps-tarifs .step-tarifs .prix,
.step .number {
    background: var(--c-main);
    color: var(--c-bg);
    border: 1px solid rgba(255, 248, 239, 0.54);
}

.fancy-title {
    color: var(--c-txt);
    font-size: 2rem;
    letter-spacing: 0;
}

.fancy-title::before,
.fancy-title::after {
    color: var(--c-main);
}

.animal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    text-align: left;
}

.animal-copy {
    padding: 8px 0;
}

.animal-copy h2 {
    margin: 14px 0 14px;
}

.animal-copy p {
    max-width: 620px;
}

.animal-btn {
    margin-top: 12px;
}

.animal-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.animal-card {
    min-height: 220px;
    padding: 22px;
}

.animal-card i,
.animal-card svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: var(--c-bg);
    background: var(--c-main);
    border-radius: 50%;
    font-size: 1.25rem;
}

.animal-card h3 {
    margin: 0 0 10px;
}

.animal-card p {
    margin: 0;
    color: var(--c-txt-muted);
}

.ventes .container-w {
    margin-top: 0 !important;
}

.ventes-header h2 {
    margin-top: 0;
}

.ventes-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ventes-links .shop {
    background: rgba(255, 248, 239, 0.08);
    border: 1px solid var(--c-border-soft);
    border-radius: 8px;
}

.ventes img {
    height: 68px;
    padding: 0 1rem;
}

.consent {
    justify-content: center;
    color: var(--c-txt-muted);
}

.consent label {
    gap: 8px;
    line-height: 1.45;
}

.consent .switch {
    background-color: rgba(255, 248, 239, 0.2);
}

.consent .switch::before {
    background-color: var(--c-main);
}

footer {
    background: var(--c-footer);
    border-top: 1px solid var(--c-border-soft);
    box-shadow: none;
}

footer p,
.footer-txt {
    color: var(--c-txt-muted);
}

.btnfooter {
    color: var(--c-txt-muted);
    border-radius: 8px;
}

.btnfooter:hover {
    color: var(--c-bg);
    background-color: var(--c-main);
    border-color: var(--c-main);
    transform: translateY(-2px);
}

.btn-social {
    background: rgba(255, 248, 239, 0.08);
    border: 1px solid var(--c-border-soft);
    border-radius: 50%;
    box-shadow: none;
}

.about-wrapper {
    background: var(--c-surface-soft);
    color: var(--c-bg);
}

.about-text h2,
.about-text p,
.about-values h3,
.about-values p {
    color: var(--c-bg);
}

.about-values .value {
    background: rgba(255, 255, 255, 0.48);
    color: var(--c-bg);
    border-color: rgba(64, 42, 29, 0.14);
}

.fabrication h2,
.fabrication h3 {
    color: var(--c-txt);
}

.step p {
    color: var(--c-txt-muted);
}

.faq-title {
    color: var(--c-main) !important;
}

.faq-question {
    color: var(--c-txt);
    background: transparent;
}

.faq-question:hover {
    color: var(--c-bg);
    background: var(--c-main);
}

.faq-answer p {
    color: var(--c-txt-muted);
}

.custom-shape-divider-bottom-1763327231 .shape-fill,
.custom-shape-divider-top-1763396310 .shape-fill {
    fill: var(--c-surface-soft);
}

.custom-shape-divider-top-1763594077 .shape-fill,
.custom-shape-divider-bottom-1763594270 .shape-fill {
    fill: var(--c-bg2);
}

#sw-update-banner {
    background: var(--c-bg2);
    border: 1px solid var(--c-border-soft);
    border-radius: 8px;
}

#sw-update-banner p {
    margin: 0;
}

@media (max-width: 960px) {
    header {
        padding: 10px 14px;
    }

    #nav-links {
        top: 76px;
        right: 14px;
        width: min(280px, calc(100vw - 28px));
        background: rgba(36, 24, 18, 0.96);
        border: 1px solid var(--c-border-soft);
    }

    nav a {
        width: 100%;
        justify-content: flex-start;
    }

    .animal-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .animal-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .animal-cards {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body,
    body.light {
        font-size: 16px;
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .landingEly {
        padding: 96px 16px 48px;
        width: 100%;
    }

    .container-w {
        width: min(calc(100% - 24px), 1120px);
        padding: 54px 0;
    }

    .logo-main {
        width: min(360px, 86vw);
    }

    .img-produit,
    .img-solo {
        width: min(100%, 320px);
        height: 320px;
        margin: 0 auto;
    }

    .settings-menu {
        right: 12px;
        top: 92px;
        bottom: auto;
        padding: 7px;
    }

    .settings-menu .btn-soft {
        width: 38px;
        height: 38px;
    }

    .consent {
        align-items: flex-start;
        text-align: left;
    }
}
