/* ==========================================================
   ZANDOS — GLOBAL.CSS
   VERSION NETTOYÉE

   Composants communs :

   ✓ Top bar
   ✓ Navbar sticky
   ✓ Recherche
   ✓ Profil client
   ✓ Favoris
   ✓ Panier
   ✓ Catégories
   ✓ Menu hamburger
   ✓ Footer
   ✓ Formulaire recherche produit
   ✓ Accordéons mobile
   ✓ WhatsApp flottant
   ✓ Responsive
========================================================== */


/* ==========================================================
   1. VARIABLES
========================================================== */

:root {

    --primary:
        #F76902;

    --primary-dark:
        #E85C00;

    --primary-soft:
        #FFF4EC;


    --text:
        #111111;

    --text-secondary:
        #343434;

    --text-light:
        #6D6D6D;

    --text-muted:
        #929292;


    --white:
        #FFFFFF;

    --background:
        #FFFFFF;

    --background-soft:
        #F6F6F4;

    --background-gray:
        #EFEFEC;


    --border:
        #E7E7E3;

    --border-dark:
        #D8D8D3;


    --success:
        #15803D;

    --danger:
        #B42318;


    --radius-sm:
        8px;

    --radius:
        12px;

    --radius-lg:
        18px;


    --global-padding:
        4%;


    --shadow-navbar:
        0 7px 25px rgba(0, 0, 0, 0.05);

    --shadow-menu:
        24px 0 70px rgba(0, 0, 0, 0.18);

    --shadow-dropdown:
        0 18px 50px rgba(0, 0, 0, 0.12);

}


/* ==========================================================
   2. RESET
========================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    min-height: 100%;

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    overflow-x: hidden;

    color:
        var(--text);

    background:
        var(--background);

    font-family:
        "Inter",
        sans-serif;

    font-size:
        14px;

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;

}


body.menu-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    padding: 0;

    color: inherit;

    background: none;

    border: none;

    cursor: pointer;

}


img {

    display: block;

    max-width: 100%;

}


ul {

    list-style: none;

}


[hidden] {

    display: none !important;

}


/* ==========================================================
   3. TOP BAR PROMOTIONNELLE

   Nouveau :
   ✓ fond gris
   ✓ texte noir
   ✓ animation conservée
========================================================== */

.promo-bar {

    position: relative;

    z-index: 1001;

    display: flex;
    align-items: center;

    width: 100%;
    height: 38px;

    overflow: hidden;

    color:
        var(--text);

    background:
        #ECECE9;

    border-bottom:
        1px solid var(--border);

    transition:
        height 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;

}


.promo-bar.hide {

    height: 0;

    opacity: 0;

    transform:
        translateY(-100%);

}


.promo-slider {

    width: 100%;

    overflow: hidden;

}


.promo-track {

    display: flex;
    align-items: center;

    width:
        max-content;

    gap: 80px;

    padding-right:
        80px;

    animation:
        zandosPromoMarquee
        35s
        linear
        infinite;

}


.promo-track span {

    flex:
        0 0 auto;

    color:
        var(--text);

    font-size:
        11px;

    font-weight:
        550;

    letter-spacing:
        0.1px;

    white-space:
        nowrap;

}


.promo-bar:hover
.promo-track {

    animation-play-state:
        paused;

}


.promo-close {

    position: absolute;

    z-index: 2;

    top: 50%;
    right: 10px;

    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    color:
        var(--text);

    background:
        #ECECE9;

    border-radius:
        50%;

    font-size:
        13px;

    transform:
        translateY(-50%);

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.promo-close:hover {

    background:
        #DDDDD9;

}


@keyframes zandosPromoMarquee {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(-50%);

    }

}


/* ==========================================================
   4. NAVBAR PRINCIPALE
========================================================== */

.navbar {

    position: sticky;

    z-index: 1000;

    top: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 72px;

    padding:
        0
        var(--global-padding);

    background:
        rgba(
            255,
            255,
            255,
            0.97
        );

    border-bottom:
        1px solid transparent;

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    transition:
        height 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.navbar.scrolled {

    height: 64px;

    border-color:
        var(--border);

    box-shadow:
        var(--shadow-navbar);

}


.nav-left,
.nav-right {

    display: flex;
    align-items: center;

}


.nav-left {

    gap: 18px;

}


.nav-right {

    gap: 6px;

}


/* ==========================================================
   5. LOGO
========================================================== */

.logo {

    display: inline-flex;
    align-items: center;

    color:
        var(--text);

    font-size:
        24px;

    font-weight:
        850;

    line-height: 1;

    letter-spacing:
        -1.3px;

}


.logo img {

    width: auto;
    height: 28px;

    object-fit:
        contain;

}


/* ==========================================================
   6. MARKETPLACE / LOGISTIQUE
========================================================== */

.current-zandos-section {

    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding-left:
        15px;

    color:
        var(--text-light);

    border-left:
        1px solid var(--border-dark);

    font-size:
        12px;

    font-weight:
        600;

    white-space:
        nowrap;

}


/* ==========================================================
   7. HAMBURGER NAVBAR
========================================================== */

.menu-toggle {

    display: flex;

    flex-direction:
        column;

    justify-content:
        center;

    width: 42px;
    height: 42px;

    gap: 5px;

    border-radius:
        50%;

    transition:
        background 0.2s ease;

}


.menu-toggle:hover {

    background:
        var(--background-soft);

}


.menu-toggle span {

    display: block;

    height:
        1.5px;

    margin-left:
        8px;

    background:
        var(--text);

    border-radius:
        10px;

    transform-origin:
        center;

    transition:
        width 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;

}


.menu-toggle
span:nth-child(1),
.menu-toggle
span:nth-child(3) {

    width:
        25px;

}


.menu-toggle
span:nth-child(2) {

    width:
        17px;

}


.menu-toggle.active
span:nth-child(1) {

    transform:
        translateY(6.5px)
        rotate(45deg);

}


.menu-toggle.active
span:nth-child(2) {

    opacity: 0;

    transform:
        translateX(-8px);

}


.menu-toggle.active
span:nth-child(3) {

    transform:
        translateY(-6.5px)
        rotate(-45deg);

}


/* ==========================================================
   8. ICÔNES NAVBAR
========================================================== */

.nav-icon,
.search-toggle {

    position: relative;

    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    color:
        var(--text);

    background:
        transparent;

    border:
        1px solid transparent;

    border-radius:
        50%;

    font-size:
        18px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;

}


.nav-icon:hover,
.search-toggle:hover {

    background:
        var(--background-soft);

    border-color:
        var(--border);

    transform:
        translateY(-1px);

}


/* ==========================================================
   9. AVATAR CLIENT NAVBAR
========================================================== */

.account-nav-avatar {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    border-radius:
        50%;

}


.account-nav-avatar.client-avatar-active {

    width: 35px;
    height: 35px;

    color:
        var(--primary);

    background:
        var(--primary-soft);

    border:
        1px solid #FFE0CA;

    border-radius:
        50%;

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        0.2px;

}


/* ==========================================================
   10. COMPTEUR PANIER
========================================================== */

.cart-btn {

    position: relative;

}


#cartCount,
.nav-counter {

    position: absolute;

    top: 1px;
    right: -1px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 18px;
    height: 18px;

    padding:
        0 4px;

    color:
        var(--white);

    background:
        var(--text);

    border:
        2px solid var(--white);

    border-radius:
        20px;

    font-size:
        9px;

    font-weight:
        750;

    line-height: 1;

}


/* ==========================================================
   11. RECHERCHE DESKTOP
========================================================== */

.search-wrapper {

    position: relative;

    display: flex;
    align-items: center;

    gap: 5px;

}


.search-box-expand {

    display: flex;
    align-items: center;

}


.search-input {

    width: 0;
    height: 42px;

    opacity: 0;

    padding: 0;

    color:
        var(--text);

    background:
        var(--background-soft);

    border:
        1px solid transparent;

    border-radius:
        50px;

    outline: none;

    font-size:
        13px;

    pointer-events:
        none;

    transition:
        width 0.3s ease,
        opacity 0.2s ease,
        padding 0.3s ease,
        border-color 0.2s ease,
        background 0.2s ease;

}


.search-input::placeholder {

    color:
        var(--text-muted);

}


.search-wrapper.active
.search-input {

    width: 250px;

    opacity: 1;

    padding:
        0 17px;

    border-color:
        var(--border);

    pointer-events:
        auto;

}


.search-input:focus {

    background:
        var(--white);

    border-color:
        #BDBDB8;

}


@media (
    hover: hover
)
and (
    min-width: 701px
) {

    .search-wrapper:hover
    .search-input,
    .search-wrapper:focus-within
    .search-input {

        width: 250px;

        opacity: 1;

        padding:
            0 17px;

        border-color:
            var(--border);

        pointer-events:
            auto;

    }

}


/* ==========================================================
   12. PROFIL DROPDOWN
========================================================== */

.profile-wrapper {

    position: relative;

    display: flex;
    align-items: center;

}


.profile-wrapper::after {

    content: "";

    position: absolute;

    top: 100%;
    right: 0;

    width: 275px;
    height: 16px;

}


.profile-dropdown {

    position: absolute;

    z-index: 2200;

    top:
        calc(
            100% + 12px
        );

    right: 0;

    width: 275px;

    opacity: 0;

    visibility: hidden;

    padding:
        9px;

    color:
        var(--text);

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        15px;

    box-shadow:
        var(--shadow-dropdown);

    transform:
        translateY(7px);

    pointer-events:
        none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

}


.profile-wrapper:hover
.profile-dropdown,
.profile-wrapper:focus-within
.profile-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

    pointer-events:
        auto;

}


.profile-dropdown-header {

    margin-bottom:
        6px;

    padding:
        13px 12px 14px;

    border-bottom:
        1px solid var(--border);

}


.profile-dropdown-header
strong {

    display: block;

    margin-bottom:
        5px;

    overflow: hidden;

    color:
        var(--text);

    font-size:
        14px;

    font-weight:
        750;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;

}


.profile-dropdown-header
p {

    margin: 0;

    overflow-wrap:
        anywhere;

    color:
        var(--text-light);

    font-size:
        11px;

    line-height:
        1.5;

}


/* ==========================================================
   13. LIENS PROFIL
========================================================== */

.profile-menu-group {

    width: 100%;

}


.profile-menu-group > a {

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 43px;

    gap: 10px;

    padding:
        0 12px;

    color:
        var(--text);

    border-radius:
        9px;

    font-size:
        13px;

    font-weight:
        550;

    transition:
        padding 0.2s ease,
        background 0.2s ease;

}


.profile-menu-group > a i {

    width: 17px;

    color:
        var(--text-light);

    font-size:
        13px;

    text-align:
        center;

}


.profile-menu-group > a:hover {

    padding-left:
        16px;

    background:
        var(--background-soft);

}


/* ==========================================================
   14. DÉCONNEXION DESKTOP
========================================================== */

.profile-dropdown-logout {

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 43px;

    gap: 10px;

    padding:
        0 12px;

    margin-top:
        4px;

    color:
        var(--danger);

    background:
        transparent;

    border-top:
        1px solid var(--border);

    border-radius:
        8px;

    font-size:
        13px;

    font-weight:
        650;

    text-align:
        left;

    transition:
        background 0.2s ease,
        padding 0.2s ease;

}


.profile-dropdown-logout i {

    width: 17px;

    text-align:
        center;

}


.profile-dropdown-logout:hover {

    padding-left:
        16px;

    background:
        #FFF1F0;

}


/* ==========================================================
   15. CATÉGORIES MARKETPLACE
========================================================== */

.top-categories {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    gap: 29px;

    padding:
        14px
        var(--global-padding);

    overflow-x: auto;

    background:
        var(--white);

    border-bottom:
        1px solid var(--border);

    white-space:
        nowrap;

    scrollbar-width:
        none;

    -webkit-overflow-scrolling:
        touch;

}


.top-categories::-webkit-scrollbar {

    display: none;

}


.top-categories a {

    position: relative;

    flex:
        0 0 auto;

    color:
        var(--text);

    font-size:
        13px;

    font-weight:
        550;

    transition:
        color 0.2s ease;

}


.top-categories
a:not(.highlight)::after {

    content: "";

    position: absolute;

    right: 0;
    bottom: -5px;
    left: 0;

    height:
        1px;

    background:
        var(--text);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform 0.2s ease;

}


.top-categories
a:hover::after {

    transform:
        scaleX(1);

}


.top-categories
.highlight {

    color:
        var(--primary);

    font-size:
        12px;

    font-weight:
        750;

    text-transform:
        uppercase;

}


/* ==========================================================
   16. RECHERCHE MOBILE
========================================================== */

.mobile-tools {

    display: none;

    width: 100%;

    padding:
        10px 16px 13px;

    background:
        var(--white);

    border-bottom:
        1px solid var(--border);

}


.mobile-search-wrapper {

    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

}


.mobile-search-wrapper i {

    position: absolute;

    z-index: 2;

    left: 15px;

    color:
        var(--text-light);

    font-size:
        14px;

    pointer-events:
        none;

}


.mobile-search {

    width: 100%;
    height: 44px;

    padding:
        0 16px
        0 42px;

    color:
        var(--text);

    background:
        var(--background-soft);

    border:
        1px solid transparent;

    border-radius:
        50px;

    outline:
        none;

    font-size:
        13px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;

}


.mobile-search:focus {

    background:
        var(--white);

    border-color:
        var(--border-dark);

}


/* ==========================================================
   17. OVERLAY HAMBURGER
========================================================== */

.mobile-menu-overlay {

    position: fixed;

    z-index: 4998;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    background:
        rgba(
            17,
            17,
            17,
            0.50
        );

    backdrop-filter:
        blur(2px);

    -webkit-backdrop-filter:
        blur(2px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* ==========================================================
   18. MENU HAMBURGER PREMIUM
========================================================== */

.mobile-menu {

    position: fixed;

    z-index: 4999;

    top: 0;
    bottom: 0;
    left: 0;

    width:
        min(
            430px,
            92vw
        );

    height:
        100dvh;

    overflow-y:
        auto;

    color:
        var(--text);

    background:
        var(--white);

    border-radius:
        0 20px 20px 0;

    box-shadow:
        var(--shadow-menu);

    transform:
        translateX(-105%);

    transition:
        transform
        0.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    overscroll-behavior:
        contain;

}


.mobile-menu.active {

    transform:
        translateX(0);

}


/* ==========================================================
   19. HEADER HAMBURGER
========================================================== */

.mobile-menu-header {

    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 100%;
    height: 70px;

    padding:
        0 25px;

}


/* ==========================================================
   20. FERMER MENU
========================================================== */

.close-menu {

    position: relative;

    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        50%;

    transition:
        background 0.2s ease,
        transform 0.25s ease;

}


.close-menu:hover {

    background:
        var(--background-soft);

    transform:
        rotate(90deg);

}


.close-menu span {

    position: absolute;

    width: 21px;
    height: 1.5px;

    background:
        var(--text);

    border-radius:
        10px;

}


.close-menu
span:first-child {

    transform:
        rotate(45deg);

}


.close-menu
span:last-child {

    transform:
        rotate(-45deg);

}


/* ==========================================================
   21. CONTENU HAMBURGER

   min-height permet de pousser Assistance
   vers le bas du menu.
========================================================== */

.menu-content {

    display: flex;

    flex-direction:
        column;

    min-height:
        calc(
            100dvh - 70px
        );

    padding:
        12px 26px 30px;

}


/* ==========================================================
   22. BOUTONS INSCRIPTION / CONNEXION
========================================================== */

.mobile-auth-primary {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-bottom:
        34px;

}


.mobile-auth-btn {

    width: 100%;
    min-height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        0 15px;

    border-radius:
        10px;

    font-size:
        14px;

    font-weight:
        700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;

}


.mobile-auth-btn:hover {

    transform:
        translateY(-1px);

}


.mobile-auth-btn-primary {

    color:
        var(--white);

    background:
        var(--text);

}


.mobile-auth-btn-primary:hover {

    background:
        #292929;

}


.mobile-auth-btn-secondary {

    color:
        var(--text);

    background:
        #F0F0ED;

}


.mobile-auth-btn-secondary:hover {

    background:
        #E6E6E2;

}


/* ==========================================================
   23. TITRE HAMBURGER
========================================================== */

.menu-content > h2 {

    max-width:
        340px;

    margin-bottom:
        26px;

    color:
        var(--text);

    font-size:
        25px;

    font-weight:
        600;

    line-height:
        1.15;

    letter-spacing:
        -1px;

}


/* ==========================================================
   24. ACTIONS PRINCIPALES HAMBURGER
========================================================== */

.menu {

    width: 100%;

}


.menu__list {

    width: 100%;

    margin: 0;
    padding: 0;

    border-top:
        1px solid var(--border);

}


.menu__list li {

    border-bottom:
        1px solid var(--border);

}


.menu__list a {

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 59px;

    padding:
        0 2px;

    color:
        var(--text);

    font-size:
        15px;

    font-weight:
        600;

    transition:
        color 0.2s ease,
        padding 0.2s ease;

}


.menu__list a:hover {

    padding-left:
        7px;

    color:
        var(--primary);

}


/* ==========================================================
   25. BAS DU MENU HAMBURGER
========================================================== */

.mobile-menu-bottom {

    margin-top:
        auto;

    padding-top:
        45px;

}


.mobile-help-link {

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 50px;

    gap: 11px;

    color:
        var(--text);

    border-top:
        1px solid var(--border);

    font-size:
        13px;

    font-weight:
        600;

}


.mobile-help-link i {

    width:
        18px;

    color:
        var(--text-light);

    text-align:
        center;

}


/* ==========================================================
   26. DÉCONNEXION HAMBURGER
========================================================== */

.mobile-client-logout {

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 48px;

    gap: 11px;

    color:
        var(--danger);

    border-top:
        1px solid var(--border);

    font-size:
        13px;

    font-weight:
        650;

    text-align:
        left;

}


.mobile-client-logout i {

    width:
        18px;

    text-align:
        center;

}


.mobile-client-logout:hover {

    color:
        #8F1D15;

}


/* ==========================================================
   27. FOOTER
========================================================== */

.footer {

    width: 100%;

    color:
        var(--text);

    background:
        var(--white);

    border-top:
        1px solid var(--border);

}


/* ==========================================================
   28. FOOTER SECTION PRODUIT RECHERCHÉ
========================================================== */

.footer-container {

    display: grid;

    grid-template-columns:
        minmax(
            280px,
            0.8fr
        )
        minmax(
            390px,
            1fr
        );

    align-items:
        start;

    width: 100%;

    gap:
        clamp(
            60px,
            10vw,
            150px
        );

    padding:
        76px
        var(--global-padding)
        68px;

}


.footer-left {

    max-width:
        500px;

}


.footer-title {

    margin-bottom:
        17px;

    color:
        var(--text);

    font-size:
        clamp(
            28px,
            2.8vw,
            42px
        );

    font-weight:
        500;

    line-height:
        1.1;

    letter-spacing:
        -1.8px;

}


.footer-desc {

    max-width:
        410px;

    color:
        var(--text-light);

    font-size:
        14px;

    line-height:
        1.7;

}


/* ==========================================================
   29. FORMULAIRE FOOTER
========================================================== */

.newsletter-box {

    display: flex;

    flex-direction:
        column;

    width: 100%;

    max-width:
        560px;

    gap:
        13px;

}


.newsletter-label {

    margin-top:
        3px;

    color:
        var(--text);

    font-size:
        12px;

    font-weight:
        650;

}


.newsletter-input {

    width: 100%;

}


.newsletter-input input {

    width: 100%;
    height: 51px;

    padding:
        0 17px;

    color:
        var(--text);

    background:
        var(--white);

    border:
        1px solid var(--border-dark);

    border-radius:
        10px;

    outline: none;

    font-size:
        13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.newsletter-input
input::placeholder {

    color:
        #9A9A96;

}


.newsletter-input
input:hover {

    border-color:
        #C5C5C0;

}


.newsletter-input
input:focus {

    border-color:
        var(--text);

    box-shadow:
        0 0 0 3px
        rgba(
            17,
            17,
            17,
            0.05
        );

}


/* ==========================================================
   30. BOUTON FORMULAIRE
========================================================== */

.newsletter-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 51px;

    gap:
        9px;

    margin-top:
        5px;

    color:
        var(--white);

    background:
        var(--text);

    border:
        1px solid var(--text);

    border-radius:
        50px;

    font-size:
        13px;

    font-weight:
        650;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;

}


.newsletter-btn:hover {

    color:
        var(--text);

    background:
        var(--white);

    transform:
        translateY(-1px);

}


/* ==========================================================
   31. TEXTE CONFIDENTIALITÉ
========================================================== */

.newsletter-policy {

    color:
        var(--text-light);

    font-size:
        10px;

    line-height:
        1.65;

}


.newsletter-policy a {

    color:
        var(--text);

    text-decoration:
        underline;

    text-underline-offset:
        2px;

}


#newsletterStatus {

    min-height:
        18px;

    color:
        var(--success);

    font-size:
        12px;

    font-weight:
        600;

    line-height:
        1.5;

}


/* ==========================================================
   32. FOOTER SECONDAIRE
========================================================== */

.footer-secondary {

    width: 100%;

    padding:
        54px
        var(--global-padding)
        48px;

    background:
        var(--background-soft);

    border-top:
        1px solid var(--border);

}


.footer-links {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap:
        50px;

}


/* ==========================================================
   33. COLONNES FOOTER
========================================================== */

.column
h4.footer-toggle {

    display: flex;
    align-items: center;

    margin-bottom:
        19px;

    color:
        var(--text);

    font-size:
        13px;

    font-weight:
        750;

    cursor:
        default;

}


.column ul {

    margin: 0;
    padding: 0;

}


.column ul li {

    margin-bottom:
        11px;

}


.column ul li a {

    display:
        inline-block;

    color:
        var(--text-light);

    font-size:
        12px;

    line-height:
        1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;

}


.column ul li a:hover {

    color:
        var(--text);

    transform:
        translateX(3px);

}


/* ==========================================================
   34. RÉSEAUX SOCIAUX
========================================================== */

.social-icons {

    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top:
        16px;

}


.social-icons a {

    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    color:
        var(--text);

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        50%;

    font-size:
        14px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;

}


.social-icons a:hover {

    color:
        var(--white);

    background:
        var(--text);

    transform:
        translateY(-2px);

}


/* ==========================================================
   35. FOOTER BOTTOM
========================================================== */

.footer-bottom {

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    gap: 20px;

    padding:
        20px
        var(--global-padding);

    background:
        var(--background-soft);

    border-top:
        1px solid var(--border);

}


.footer-bottom p {

    color:
        var(--text-light);

    font-size:
        11px;

    line-height:
        1.5;

}


.back-to-top {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        40px;

    gap:
        8px;

    padding:
        0 17px;

    color:
        var(--white);

    background:
        var(--text);

    border:
        1px solid var(--text);

    border-radius:
        50px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.4px;

    text-transform:
        uppercase;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;

}


.back-to-top:hover {

    color:
        var(--text);

    background:
        var(--white);

    transform:
        translateY(-1px);

}


/* ==========================================================
   36. WHATSAPP FLOTTANT

   Conservé.
========================================================== */

.floating-whatsapp {

    position: fixed;

    z-index: 3000;

    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 52px;
    height: 52px;

    padding: 0;

    overflow:
        hidden;

    color:
        var(--white);

    background:
        var(--text);

    border-radius:
        50px;

    box-shadow:
        0 8px 25px
        rgba(
            0,
            0,
            0,
            0.18
        );

    font-size:
        21px;

    transition:
        padding 0.3s ease,
        background 0.2s ease,
        transform 0.2s ease;

}


.floating-whatsapp
.wa-label {

    max-width:
        0;

    opacity:
        0;

    overflow:
        hidden;

    color:
        var(--white);

    font-size:
        11px;

    font-weight:
        650;

    white-space:
        nowrap;

    transition:
        max-width 0.3s ease,
        opacity 0.2s ease,
        margin 0.3s ease;

}


.floating-whatsapp:hover {

    padding:
        0 18px;

    background:
        #222222;

    transform:
        translateY(-2px);

}


.floating-whatsapp:hover
.wa-label {

    max-width:
        180px;

    opacity:
        1;

    margin-left:
        9px;

}


/* ==========================================================
   37. TABLETTE
========================================================== */

@media (
    max-width: 1000px
) {

    :root {

        --global-padding:
            28px;

    }


    .navbar {

        height:
            68px;

    }


    .top-categories {

        justify-content:
            flex-start;

        gap:
            24px;

        padding-top:
            13px;

        padding-bottom:
            13px;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap:
            50px;

    }


    .footer-links {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            45px 35px;

    }

}


/* ==========================================================
   38. MOBILE
========================================================== */

@media (
    max-width: 700px
) {

    :root {

        --global-padding:
            16px;

    }


    /* TOP BAR */

    .promo-bar {

        height:
            35px;

    }


    .promo-track {

        gap:
            55px;

        padding-right:
            55px;

        animation-duration:
            28s;

    }


    .promo-track span {

        font-size:
            10px;

    }


    .promo-close {

        right:
            5px;

        width:
            25px;

        height:
            25px;

        font-size:
            11px;

    }


    /* NAVBAR */

    .navbar,
    .navbar.scrolled {

        height:
            62px;

        padding-right:
            11px;

        padding-left:
            11px;

    }


    .nav-left {

        gap:
            8px;

    }


    .nav-right {

        gap:
            0;

    }


    .logo {

        font-size:
            19px;

        letter-spacing:
            -0.8px;

    }


    .current-zandos-section {

        padding-left:
            8px;

        font-size:
            9px;

    }


    .menu-toggle,
    .nav-icon,
    .search-toggle {

        width:
            38px;

        height:
            38px;

    }


    .menu-toggle span {

        margin-left:
            7px;

    }


    .menu-toggle
    span:nth-child(1),
    .menu-toggle
    span:nth-child(3) {

        width:
            23px;

    }


    .nav-icon,
    .search-toggle {

        font-size:
            16px;

    }


    /* DROPDOWN DESKTOP */

    .profile-dropdown,
    .profile-wrapper::after {

        display:
            none;

    }


    /* RECHERCHE DESKTOP */

    .search-box-expand {

        display:
            none;

    }


    /* FAVORIS :
       on garde l'icône navbar */

    .favorites-icon {

        display:
            grid;

    }


    /* RECHERCHE MOBILE */

    .mobile-tools {

        display:
            block;

    }


    /* CATÉGORIES */

    .top-categories {

        justify-content:
            flex-start;

        gap:
            21px;

        padding:
            12px 16px;

        border-top:
            0;

    }


    .top-categories a {

        font-size:
            12px;

    }


    .top-categories
    .highlight {

        font-size:
            10px;

    }


    /* MENU */

    .mobile-menu {

        width:
            min(
                390px,
                94vw
            );

        border-radius:
            0 16px 16px 0;

    }


    .mobile-menu-header {

        height:
            62px;

        padding:
            0 18px;

    }


    .close-menu {

        width:
            38px;

        height:
            38px;

    }


    .menu-content {

        min-height:
            calc(
                100dvh - 62px
            );

        padding:
            14px
            20px
            27px;

    }


    .mobile-auth-primary {

        margin-bottom:
            30px;

    }


    .mobile-auth-btn {

        min-height:
            49px;

        font-size:
            13px;

    }


    .menu-content > h2 {

        max-width:
            300px;

        margin-bottom:
            23px;

        font-size:
            22px;

        line-height:
            1.18;

        letter-spacing:
            -0.7px;

    }


    .menu__list a {

        min-height:
            56px;

        font-size:
            14px;

    }


    .mobile-menu-bottom {

        padding-top:
            36px;

    }


    /* FOOTER */

    .footer-container {

        display:
            flex;

        flex-direction:
            column;

        gap:
            35px;

        padding:
            53px
            18px
            45px;

    }


    .footer-left {

        max-width:
            100%;

    }


    .footer-title {

        max-width:
            430px;

        margin-bottom:
            13px;

        font-size:
            28px;

        letter-spacing:
            -1.2px;

    }


    .footer-desc {

        font-size:
            13px;

    }


    .newsletter-box {

        max-width:
            100%;

    }


    .newsletter-label {

        font-size:
            12px;

    }


    .newsletter-input
    input {

        height:
            49px;

        font-size:
            13px;

    }


    .newsletter-btn {

        min-height:
            49px;

    }


    .newsletter-policy {

        font-size:
            10px;

    }


    /* FOOTER ACCORDÉON */

    .footer-secondary {

        padding:
            8px
            18px
            20px;

    }


    .footer-links {

        display:
            flex;

        flex-direction:
            column;

        gap:
            0;

    }


    .column {

        border-bottom:
            1px solid
            var(--border);

    }


    .column
    h4.footer-toggle {

        position:
            relative;

        justify-content:
            space-between;

        width:
            100%;

        margin:
            0;

        padding:
            19px 2px;

        font-size:
            13px;

        cursor:
            pointer;

    }


    .footer-toggle::after {

        content:
            "\f078";

        margin-left:
            auto;

        font-family:
            "Font Awesome 6 Free";

        font-size:
            10px;

        font-weight:
            900;

        transition:
            transform 0.3s ease;

    }


    .footer-toggle.open::after {

        transform:
            rotate(180deg);

    }


    .column ul {

        max-height:
            0;

        opacity:
            0;

        overflow:
            hidden;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            padding 0.35s ease;

    }


    .column ul.active {

        max-height:
            450px;

        opacity:
            1;

        padding:
            0 2px 18px;

    }


    .column ul li {

        margin-bottom:
            12px;

    }


    .column ul li a {

        font-size:
            12px;

    }


    .column
    .social-icons {

        display:
            none;

        margin-top:
            0;

        padding:
            0 2px 18px;

    }


    .footer-toggle.open
    ~ .social-icons {

        display:
            flex;

    }


    /* FOOTER BOTTOM */

    .footer-bottom {

        align-items:
            flex-start;

        flex-direction:
            column-reverse;

        gap:
            15px;

        padding:
            23px
            18px
            28px;

    }


    .footer-bottom p {

        font-size:
            10px;

    }


    .back-to-top {

        align-self:
            flex-end;

        font-size:
            9px;

    }


    /* WHATSAPP */

    .floating-whatsapp {

        right:
            14px;

        bottom:
            14px;

        min-width:
            48px;

        height:
            48px;

        font-size:
            19px;

    }


    .floating-whatsapp:hover {

        padding:
            0;

    }


    .floating-whatsapp:hover
    .wa-label {

        max-width:
            0;

        opacity:
            0;

        margin-left:
            0;

    }

}


/* ==========================================================
   39. PETIT MOBILE
========================================================== */

@media (
    max-width: 420px
) {

    .current-zandos-section {

        display:
            none;

    }


    .mobile-auth-primary {

        grid-template-columns:
            1fr 1fr;

        gap:
            8px;

    }


    .mobile-auth-btn {

        padding:
            0 8px;

        font-size:
            12px;

    }


    .menu-content {

        padding-right:
            17px;

        padding-left:
            17px;

    }


    .menu-content > h2 {

        font-size:
            21px;

    }

}


/* ==========================================================
   40. TRÈS PETIT MOBILE
========================================================== */

@media (
    max-width: 350px
) {

    .mobile-auth-primary {

        grid-template-columns:
            1fr;

    }


    .user-icon {

        display:
            none;

    }

}


/* ==========================================================
   41. ACCESSIBILITÉ
========================================================== */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline:
        3px solid
        rgba(
            247,
            105,
            2,
            0.28
        );

    outline-offset:
        3px;

}


/* ==========================================================
   42. RÉDUCTION DES ANIMATIONS
========================================================== */

@media (
    prefers-reduced-motion:
        reduce
) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}

/* ==========================================================
   ZANDOS — LIVE SEARCH
========================================================== */


/* ==========================================================
   DESKTOP CONTAINER
========================================================== */

#desktopSearchWrapper {

    position: relative;

}


/* ==========================================================
   PANEL
========================================================== */

.live-search-panel {

    position: absolute;

    z-index: 5000;

    top: calc(100% + 12px);

    right: 0;

    width: 390px;

    max-height: 520px;

    overflow: hidden;

    color: #111111;

    background: #ffffff;

    border: 1px solid #e5e5e2;

    border-radius: 15px;

    box-shadow:
        0 22px 65px
        rgba(
            0,
            0,
            0,
            0.14
        );

}


/* ==========================================================
   HEADER
========================================================== */

.live-search-header {

    display: flex;
    align-items: center;

    min-height: 43px;

    padding: 0 16px;

    color: #777777;

    background: #fafaf8;

    border-bottom: 1px solid #eeeeeb;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 0.8px;

    text-transform: uppercase;

}


/* ==========================================================
   LIST
========================================================== */

.live-search-list {

    max-height: 455px;

    overflow-y: auto;

    overscroll-behavior: contain;

}


/* ==========================================================
   RESULT
========================================================== */

.live-search-result {

    display: flex;
    align-items: center;

    width: 100%;

    min-height: 82px;

    gap: 13px;

    padding: 10px 13px;

    color: #111111;

    background: #ffffff;

    border-bottom: 1px solid #eeeeeb;

    transition:
        background 0.18s ease;

}


.live-search-result:last-child {

    border-bottom: 0;

}


.live-search-result:hover {

    background: #f7f7f5;

}


/* ==========================================================
   IMAGE
========================================================== */

.live-search-image {

    flex: 0 0 52px;

    width: 52px;
    height: 62px;

    overflow: hidden;

    background: #f3f3f1;

    border-radius: 8px;

}


.live-search-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* ==========================================================
   INFO
========================================================== */

.live-search-info {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.live-search-brand {

    color: #858585;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;

}


.live-search-info strong {

    max-width: 285px;

    overflow: hidden;

    color: #111111;

    font-size: 12px;

    font-weight: 650;

    line-height: 1.4;

    text-overflow: ellipsis;

    white-space: nowrap;

}


.live-search-info small {

    color: #111111;

    font-size: 11px;

    font-weight: 700;

}


/* ==========================================================
   LOADING
========================================================== */

.live-search-loading {

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 95px;

    gap: 9px;

    color: #777777;

    font-size: 12px;

}


/* ==========================================================
   EMPTY
========================================================== */

.live-search-empty {

    display: flex;
    align-items: center;

    min-height: 100px;

    gap: 14px;

    padding: 18px;

}


.live-search-empty > i {

    display: grid;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    place-items: center;

    color: #777777;

    background: #f3f3f1;

    border-radius: 50%;

    font-size: 13px;

}


.live-search-empty div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.live-search-empty strong {

    color: #111111;

    font-size: 12px;

    font-weight: 700;

}


.live-search-empty span {

    color: #777777;

    font-size: 11px;

    line-height: 1.5;

}


/* ==========================================================
   MOBILE
========================================================== */

.mobile-search-container {

    position: relative;

    width: 100%;

}


.mobile-live-search-panel {

    top: calc(100% + 7px);

    right: 0;
    left: 0;

    width: 100%;

    max-height: 430px;

    border-radius: 12px;

}


@media (max-width: 700px) {

    .live-search-result {

        min-height: 75px;

        padding: 9px 11px;

    }


    .live-search-image {

        flex-basis: 47px;

        width: 47px;
        height: 56px;

    }


    .live-search-info strong {

        max-width: 230px;

    }

}

/* ==========================================================
   ZANDOS — FAVORIS + PANIER NAVBAR PREVIEW
========================================================== */


/* ==========================================================
   WRAPPER
========================================================== */

.nav-preview-wrapper {

    position: relative;

    display: flex;
    align-items: center;

}


/*
 * Petit pont invisible.
 * Évite que le dropdown se ferme
 * entre l'icône et le panneau.
 */

.nav-preview-wrapper::after {

    content: "";

    position: absolute;

    top: 100%;
    right: 0;

    width: 330px;
    height: 16px;

}


/* ==========================================================
   DROPDOWN
========================================================== */

.nav-preview-dropdown {

    position: absolute;

    z-index: 5200;

    top:
        calc(
            100% + 12px
        );

    right: 0;

    width: 330px;

    opacity: 0;

    visibility: hidden;

    overflow: hidden;

    color:
        var(--text);

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        16px;

    box-shadow:
        var(--shadow-dropdown);

    transform:
        translateY(7px);

    pointer-events:
        none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

}


/* ==========================================================
   OUVERTURE
========================================================== */

.nav-preview-wrapper:hover
.nav-preview-dropdown,
.nav-preview-wrapper:focus-within
.nav-preview-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

    pointer-events:
        auto;

}


/* ==========================================================
   HEADER
========================================================== */

.nav-preview-header {

    display: flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        16px;

    background:
        #FAFAF8;

    border-bottom:
        1px solid
        var(--border);

}


.nav-preview-header > div {

    min-width: 0;

}


.nav-preview-eyebrow {

    display: block;

    margin-bottom:
        4px;

    color:
        var(--text-muted);

    font-size:
        9px;

    font-weight:
        750;

    letter-spacing:
        0.8px;

    text-transform:
        uppercase;

}


.nav-preview-header strong {

    color:
        var(--text);

    font-size:
        13px;

    font-weight:
        750;

}


.nav-preview-number {

    display: grid;

    flex:
        0 0 30px;

    width: 30px;
    height: 30px;

    place-items:
        center;

    color:
        var(--text);

    background:
        var(--background-soft);

    border-radius:
        50%;

    font-size:
        11px;

    font-weight:
        750;

}


/* ==========================================================
   CONTENT
========================================================== */

.nav-preview-content {

    max-height:
        310px;

    overflow-y:
        auto;

    overscroll-behavior:
        contain;

}


/* ==========================================================
   PRODUIT
========================================================== */

.nav-preview-product {

    display: flex;

    align-items:
        center;

    width: 100%;

    min-height:
        77px;

    gap:
        12px;

    padding:
        10px 13px;

    color:
        var(--text);

    background:
        var(--white);

    border-bottom:
        1px solid
        var(--border);

    transition:
        background 0.18s ease;

}


.nav-preview-product:hover {

    background:
        var(--background-soft);

}


/* ==========================================================
   IMAGE
========================================================== */

.nav-preview-product-image {

    flex:
        0 0 47px;

    width: 47px;
    height: 57px;

    overflow:
        hidden;

    background:
        var(--background-soft);

    border-radius:
        8px;

}


.nav-preview-product-image img {

    width: 100%;
    height: 100%;

    object-fit:
        cover;

}


/* ==========================================================
   PRODUCT INFO
========================================================== */

.nav-preview-product-info {

    min-width: 0;

    display: flex;

    flex-direction:
        column;

    gap:
        5px;

}


.nav-preview-product-info strong {

    max-width:
        235px;

    overflow:
        hidden;

    color:
        var(--text);

    font-size:
        11px;

    font-weight:
        650;

    line-height:
        1.4;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;

}


.nav-preview-product-info span {

    color:
        var(--text-light);

    font-size:
        10px;

    font-weight:
        600;

}


/* ==========================================================
   EMPTY
========================================================== */

.nav-preview-empty {

    display: flex;

    align-items:
        center;

    min-height:
        110px;

    gap:
        13px;

    padding:
        18px;

}


.nav-preview-empty > i {

    display: grid;

    flex:
        0 0 40px;

    width: 40px;
    height: 40px;

    place-items:
        center;

    color:
        var(--text-light);

    background:
        var(--background-soft);

    border-radius:
        50%;

    font-size:
        14px;

}


.nav-preview-empty div {

    display: flex;

    flex-direction:
        column;

    gap:
        4px;

}


.nav-preview-empty strong {

    color:
        var(--text);

    font-size:
        12px;

    font-weight:
        700;

}


.nav-preview-empty span {

    color:
        var(--text-light);

    font-size:
        10px;

    line-height:
        1.5;

}


/* ==========================================================
   TOTAL PANIER
========================================================== */

.nav-cart-preview-summary {

    display: flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        13px 15px;

    background:
        #FAFAF8;

    border-top:
        1px solid
        var(--border);

}


.nav-cart-preview-summary span {

    color:
        var(--text-light);

    font-size:
        11px;

}


.nav-cart-preview-summary strong {

    color:
        var(--text);

    font-size:
        13px;

    font-weight:
        800;

}


/* ==========================================================
   FOOTER LINK
========================================================== */

.nav-preview-footer-link {

    display: flex;

    align-items:
        center;

    justify-content:
        space-between;

    width: 100%;
    min-height: 48px;

    padding:
        0 15px;

    color:
        var(--white);

    background:
        var(--text);

    font-size:
        11px;

    font-weight:
        700;

    transition:
        background 0.2s ease;

}


.nav-preview-footer-link:hover {

    background:
        #292929;

}


/* ==========================================================
   MOBILE

   Aucun dropdown.
   Les icônes restent des liens simples.
========================================================== */

@media (
    max-width: 700px
) {

    .nav-preview-dropdown,
    .nav-preview-wrapper::after {

        display:
            none;

    }

}