/* =========================================
    1. RÉGLAGES DE BASE (RESET & FONTS)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, opacity 0.3s ease;
}
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
    CORRECTIF MOBILE (LOGO, MENU, PANIER)
   ========================================= */
@media (max-width: 768px) {
    .header-main-layout {
        padding: 0 12px !important;
        display: grid !important;
        grid-template-columns: 45px 1fr 95px !important;
        align-items: center;
        height: 80px !important;
    }

    .logo {
        width: 100% !important;
        justify-self: center !important;
    }

    .logo a {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo img {
        width: 100% !important;
        max-width: 200px !important;
        height: auto !important;
    }

    .header-right {
        display: flex !important;
        align-items: center;
        gap: 12px !important;
        justify-content: flex-end;
    }
}

/* =========================================
    3. HEADER & NAVIGATION
   ========================================= */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    position: relative;
    z-index: 4000;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- HEADER GÉNÉRAL --- */
.header-navigation-wrapper {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

/* Transformation en Grille pour un contrôle parfait */
.header-main-layout {
    display: grid !important;
    /* Divise le header en 3 zones : gauche (espace libre 1fr), centre (taille du logo auto), droite (espace libre 1fr) */
    grid-template-columns: 1fr auto 1fr !important; 
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100px;
}

/* --- LE LOGO : CENTRAGE PARFAIT --- */
.logo {
    justify-self: center !important; /* Force le logo au milieu de la colonne centrale */
    position: static !important; /* Annule l'ancien code absolute qui causait des bugs */
    transform: none !important;
}

.logo img {
    height: 90px;
    display: block;
}

/* --- LES CÔTÉS --- */
.header-left {
    justify-self: start !important; /* Pousse le menu mobile tout à gauche */
    display: flex;
    align-items: center;
}

.header-right {
    justify-self: end !important; /* Pousse le panier au maximum à droite */
    display: flex;
    align-items: center;
    gap: 25px;
}

/* --- ICONE PANIER --- */
.cart-icon-container {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: transform 0.2s;
    cursor: pointer;
}

.cart-icon-container:hover {
    transform: scale(1.1);
}

.cart-badge-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffcc00; /* Jaune Big Monkey */
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid #fff;
}
/* =========================================
    4. MENU DÉROULANT UTILISATEUR (BULLE)
   ========================================= */
.user-menu-container {
    position: relative;
    display: inline-block;
    z-index: 3000;
}

.user-trigger-btn {
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.user-trigger-btn:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 3px;
    border-radius: 6px;
}

/* Style de la bulle (cachée par défaut) */
.user-dropdown {
    display: none; 
    position: absolute;
    top: 130%; 
    right: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 2000;
}

/* La petite flèche au-dessus de la bulle */
.user-dropdown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

/* Liens à l'intérieur de la bulle */
.user-dropdown a {
    color: #1a1a1a !important; 
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    text-align: left;
}

.user-dropdown a:hover {
    background-color: #f8f8f8;
    color: #ffcc00 !important;
    padding-left: 25px; 
}

/* Classe activée par le JavaScript */
.user-dropdown.show {
    display: block;
    animation: fadeInScale 0.2s ease-out;
}

/* Fallback UX: ouverture au survol sur desktop, même si JS est perturbé */
@media (min-width: 769px) {
    .user-menu-container:hover .user-dropdown {
        display: block;
    }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(-10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- NAVIGATION PC & MEGA MENU --- */
@media (min-width: 769px) {
    .desktop-menu {
        width: 100%;
    }

    .desktop-menu ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        border-top: 1px solid #f4f4f4;
        padding-top: 10px;
        padding-bottom: 6px;
        flex-wrap: nowrap;
    }

    .desktop-menu ul li {
        position: relative;
        padding-bottom: 8px;
    }

    .desktop-menu > ul > li > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.4px;
        color: #1f2937;
        padding: 8px 4px;
        transition: color 0.2s ease;
    }

    .desktop-menu > ul > li > a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 2px;
        background: #111;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .desktop-menu > ul > li:hover > a::after,
    .desktop-menu > ul > li.active > a::after {
        transform: scaleX(1);
    }

    .desktop-menu > ul > li:hover > a {
        color: #111;
    }

    .has-mega-menu > a {
        cursor: pointer;
    }

    .desktop-menu ul li.promo a {
        color: #e74c3c !important;
        font-weight: 700;
    }

    .menu-arrow {
        font-size: 9px;
        margin-left: 2px;
        cursor: pointer;
        display: inline-block;
        transition: transform 0.3s;
        opacity: 0.8;
    }

    .mega-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        background: #fff;
      width: fit-content;
min-width: 320px;
max-width: calc(100vw - 80px);
        box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
        padding: 28px 26px;
        z-index: 3500;
        border: 1px solid #eceff3;
        border-radius: 14px;
        border-top: 4px solid #000;
    }

    .has-mega-menu.active .mega-menu {
        display: block;
    }

    .has-mega-menu.active .menu-arrow {
        transform: rotate(180deg);
    }

    .mega-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }

    .mega-col {
        width: 100%;
        max-width: 280px;
        padding: 0 18px;
        text-align: center;
    }

    .mega-col.separator {
        border-left: 1px solid #f0f2f5;
        border-right: 1px solid #f0f2f5;
    }

    .mega-col h3 {
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 18px;
        color: #111;
        font-weight: 800;
        letter-spacing: 0.9px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f1f3f6;
    }
    .mega-auto-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(10, auto);
    grid-auto-columns: 220px;
    column-gap: 40px;
    row-gap: 12px;
    width: max-content;
}

.mega-container-auto,
.mega-col-full {
    width: fit-content;
    max-width: none;
}

    .icon-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
    }

    .icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: 100%;
        min-height: 112px;
        padding: 10px 8px;
        border-radius: 12px;
        border: 1px solid transparent;
        background: #fafbfc;
        transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }

    .icon-item:hover {
        transform: translateY(-2px);
        border-color: #e6eaf0;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .icon-item img {
        width: 58px;
        height: auto;
    }

    .icon-item span {
        font-size: 12px;
        font-weight: 700;
        color: #293241;
        line-height: 1.2;
    }

    .all-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 18px;
        padding: 9px 14px;
        font-weight: 800;
        text-decoration: none;
        color: #111;
        font-size: 12px;
        letter-spacing: 0.3px;
        border: 1px solid #d8dde5;
        border-radius: 999px;
        background: #fff;
        transition: all 0.2s ease;
    }

    .all-link:hover {
        color: #fff;
        background: #111;
        border-color: #111;
    }
}
/* --- RECHERCHE MOBILE --- */
/* --- BARRE DE RECHERCHE MOBILE --- */
.mobile-search-bar {
    display: none; /* Caché par défaut */
    background: #ffffff;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Classe activée par le clic sur la loupe */
.mobile-search-bar.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.mobile-search-bar form {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 8px;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
}

.mobile-search-bar form:focus-within {
    border-color: #bdbdbd;
    background: #ffffff;
}

.mobile-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.mobile-search-bar button {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
}

.mobile-search-bar button:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
    border-radius: 6px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Masquer sur PC pour ne pas casser votre design actuel */
@media (min-width: 769px) {
    .mobile-search-bar { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-search-bar.active {
        animation: none;
    }
}
/* =========================================
    4. MENU & INTERFACES MOBILES
   ========================================= */
.mobile-toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
}

@media (max-width: 768px) {
    .desktop-menu, .top-bar, .menu-search-container { display: none !important; }

    .header-main-layout { padding: 5px 0; margin-bottom: 0; }

    /* --- ACCORDÉON MOBILE --- */
    .mobile-drawer li {
        position: relative;
    }

    .submenu-mobile {
        display: none; 
        background: #222;
        list-style: none;
        padding: 0;
    }

    .submenu-mobile.active {
        display: block; 
    }

    .mobile-menu-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-item.nested {
        background: #2a2a2a;
        padding-left: 15px;
    }

    .toggle-submenu {
        position: absolute;
        right: 0;
        top: 0;
        color: #fff;
        font-size: 22px;
        font-weight: bold;
        width: 60px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-left: 1px solid #333;
        z-index: 10;
    }

    /* --- STYLE POUR LE 3ÈME NIVEAU (SOUS-SOUS-COLLECTIONS) --- */
    .nested + .submenu-mobile {
        background-color: #ffffff;
    }

    .nested + .submenu-mobile li {
        border-bottom: 1px solid #eeeeee;
    }

    .nested + .submenu-mobile li a {
        padding-left: 45px !important;
        font-size: 13px !important;
        color: #1a1a1a !important; /* Texte noir */
        font-weight: 500 !important;
    }

    .nested + .submenu-mobile li a:active {
        background-color: #f5f5f5;
    }

    .nested + .submenu-mobile .toggle-submenu {
        color: #1a1a1a;
        border-left: 1px solid #eeeeee;
    }
}

@media (min-width: 769px) {
    .mobile-toggle, .mobile-search-icon, .mobile-search-bar { display: none !important; }
}

/* --- TIROIR MENU MOBILE (CORRECTION SCROLL) --- */
/* --- État du menu quand il est FERMÉ --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%; /* Caché à gauche */
    width: 100% !important; 
    height: 100vh;
    background-color: #000;
    z-index: 10000;
    transition: left 0.3s ease, opacity 0.3s ease; /* Animation fluide */
    opacity: 0; 
    pointer-events: none; 
    overflow-y: auto; /* Permet de défiler à l'intérieur du menu s'il est long */
    padding-bottom: 60px !important; /* Ajoute un espace vide tout en bas du scroll */
    display: flex;
    flex-direction: column;
}

/* --- État du menu quand il est OUVERT --- */
.mobile-drawer.open, 
.mobile-drawer.active {
    left: 0; 
    opacity: 1;
    pointer-events: auto; /* Réactive les clics sur les liens E-LIQUIDES, etc. */
    visibility: visible;
}

/* --- OPTIONNEL : Empêcher le scroll du site derrière quand le menu est ouvert --- */
body.no-scroll {
    overflow: hidden;
}

.mobile-drawer::-webkit-scrollbar {
    width: 4px;
}
.mobile-drawer::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 20;
}

.close-drawer { font-size: 28px; cursor: pointer; }

.mobile-drawer li { border-bottom: 1px solid #333; }

.mobile-drawer li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.mobile-drawer li.promo-mob a {
    color: #e74c3c !important;
}
/* =========================================
    5. CONTENU (HERO)
   ========================================= */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.hero h1 { font-size: 2rem; margin-bottom: 10px; }

.btn-main {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-main:hover {
    background: #1f7fb8;
    transform: translateY(-1px);
}

.btn-main:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
}

/* 1. On s'assure que le parent est la référence */
.contact-wrapper {
    position: relative;
    display: inline-block;
}

/* 2. On règle la bulle pour qu'elle flotte */
.contact-bubble {
    display: none; /* Cachée par défaut */
    position: absolute; 
    
    /* On la place sous la barre noire, sur la section blanche */
    top: 100%;
    left: 0;
    margin-top: 10px; /* Petit espace sous le texte 'Nous contacter' */
    
    background: #fff;
    padding: 10px 15px;
    border-radius: 25px; /* Forme de pilule comme sur votre modèle */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999; /* Pour passer devant le logo et le menu */
    
    /* Alignement des icônes à l'intérieur */
    min-width: 140px;
    max-width: calc(100vw - 24px);
}

/* 3. On aligne les logos horizontalement */
.contact-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.contact-icons img {
    width: 30px;
    height: 30px;
    display: block;
}

.contact-icons a:focus-visible {
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
    border-radius: 6px;
}

/* 4. Classe activée par le clic JS */
.contact-bubble.active {
    display: block;
}

@media (max-width: 768px) {
    .contact-bubble {
        left: auto;
        right: 0;
    }
}
/* =========================================
   MOBILE CONTACT SECTION : RECTIFICATION (Version Finale)
   ========================================= */
.mobile-contact-section {
    padding: 20px 25px; /* Un peu d'espace sur les côtés */
    margin-top: 15px;
    background-color: #000000; /* Fond gris foncé pour correspondre au menu */
}

/* Conteneur pour CHAQUE ligne de contact (Icône + Texte) */
.mobile-drawer .mobile-contact-item {
    display: flex; /* Force l'alignement horizontal */
    justify-content: flex-start; /* Empêche l'écartement icône / texte */
    align-items: center; /* Centre verticalement l'icône et le texte sur la même ligne */
    gap: 15px; /* Espace horizontal entre l'icône et le texte */
    padding: 10px 0; /* Évite le padding générique du menu qui casse l'alignement */
    text-decoration: none; /* Enlève le soulignement des liens */
    color: #fff; /* Correction de la couleur : Texte de l'adresse en Blanc */
    font-weight: 500; /* Plus lisible sans être aussi lourd que le menu principal */
    margin-bottom: 8px; /* Espace entre les différentes lignes de contact */
}

/* Conteneur pour CHAQUE ligne de contact (Icône + Texte) */
.mobile-contact-item {
    display: flex; /* Force l'alignement horizontal */
    align-items: center; /* Centre verticalement l'icône et le texte sur la même ligne */
    gap: 15px; /* Espace horizontal entre l'icône et le texte */
    text-decoration: none; /* Enlève le soulignement des liens */
    color: #fff; /* Correction de la couleur : Texte de l'adresse en Blanc */
    margin-bottom: 18px; /* Espace entre les différentes lignes de contact */
}

/* Force la taille des logos à être petite */
.mobile-contact-item img {
    width: 28px; /* Taille idéale pour mobile, ni trop grande ni trop petite */
    height: 28px;
    display: block;
}

/* Style du texte de l'adresse (gmail, numéro, etc.) */
.mobile-contact-item span {
    font-size: 14px;
    font-weight: 400;
}
/* --- SLIDER BANNIÈRES ACCUEIL --- */
.banner-container {
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* PC */
.slide .banner-desktop {
    display: block !important;
}

.slide .banner-mobile {
    display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
    .slide .banner-desktop {
        display: none !important;
    }

    .slide .banner-mobile {
        display: block !important;
    }
}
.promo-bar-content {
    font-weight: 900;
    font-size: clamp(14px, 4vw, 18px);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    max-width: calc(100% - 20px);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    animation: promo-bigmonkey 12s infinite ease-in-out;
}

@media (min-width: 769px) {
    .promo-bar-container {
        height: 52px;
    }

    .promo-bar-content {
        font-size: clamp(16px, 1.4vw, 24px);
        letter-spacing: clamp(0.5px, 0.12vw, 1.8px);
        max-width: calc(100% - 40px);
    }
}
.promo-bar-container {
    background-color: #ffcc00;
    color: #000000;
    height: 40px; /* Dimension fine comme demandée */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 0px solid #333;
    border-bottom: 1px solid #333;
    font-family: sans-serif;
    position: relative;
}

/* --- TEXTE ANIMÉ DANS LA BARRE PROMO --- */
@media (max-width: 480px) {
    .promo-bar-content {
        font-size: clamp(13px, 3.8vw, 16px);
        letter-spacing: 0;
        max-width: calc(100% - 12px);
    }
}

@keyframes promo-bigmonkey {
    /* 0% à 20% : Défilement vers la gauche */
    0% { transform: translateX(100%); opacity: 1; }
    20% { transform: translateX(-100%); opacity: 1; }

    /* 20% à 35% : Remontée vers le haut (on revient au centre par le bas) */
    21% { transform: translateY(40px); opacity: 0; }
    30% { transform: translateY(0); opacity: 1; }
    35% { transform: translateY(-40px); opacity: 0; }

    /* 36% à 50% : Clignotement au centre */
    36% { transform: translateY(0) translateX(0); opacity: 1; }
    40% { opacity: 0; }
    44% { opacity: 1; }
    48% { opacity: 0; }
    50% { opacity: 1; }

    /* 50% à 95% : FIXATION (Pause de 5-6 secondes environ) */
    95% { transform: translateY(0) translateX(0); opacity: 1; }

    /* 100% : Préparation pour la reprise */
    100% { transform: translateY(-100%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .promo-bar-content {
        animation: none;
        transform: none;
        opacity: 1;
    }
}
/* =========================================
   NOUVELLE SECTION RASSURANCE PREMIUM
   ========================================= */

.demo-assurance-compact {
    background:
        linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.45)),
        url('../img/fond-reassurance.jpg') !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding: 35px 0 40px 0 !important;
    border-top: 1px solid rgba(255,204,0,.20);
    border-bottom: 1px solid rgba(255,204,0,.20);
    overflow: hidden;
}

.slider-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex !important;
    width: 100%;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
}

.demo-item-compact {
    min-width: 100% !important;
    flex: 0 0 100% !important;
    scroll-snap-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff !important;
    padding: 0 20px;
}

.demo-item-compact img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain !important;
    margin-bottom: 14px !important;
    filter: drop-shadow(0 0 12px rgba(255,204,0,.22));
}

.demo-item-compact h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 50px;
    padding: 10px 28px;
    margin-top: 4px !important;
    margin-bottom: 10px !important;

    background-image: url('../img/bande-jaune.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;

    color: #000000 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.demo-item-compact p {
    color: rgba(255,255,255,.92) !important;
    font-size: 14px !important;
    line-height: 1.5;
    max-width: 270px;
    margin: 0 auto !important;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,204,0,.08);
    color: #ffcc00;
    border: 1px solid rgba(255,204,0,.35);
    font-size: 20px;
    padding: 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-arrow:hover {
    background: #ffcc00;
    color: #000000;
}

.prev { left: 10px; }
.next { right: 10px; }

@media screen and (min-width: 769px) {
    .slider-arrow {
        display: none !important;
    }

    .slider-track {
        overflow: visible !important;
        justify-content: space-around !important;
        padding: 0 80px;
    }

    .demo-item-compact {
        min-width: 30% !important;
        flex: 1 !important;
        max-width: 350px;
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    .demo-assurance-compact {
        padding: 25px 10px 30px 10px !important;
    }

    .demo-item-compact img {
        width: 125px !important;
        height: 125px !important;
    }

    .demo-item-compact h3 {
        min-width: 220px;
        min-height: 46px;
        font-size: 13px !important;
        padding: 8px 22px;
    }

    .demo-item-compact p {
        font-size: 13px !important;
        max-width: 240px;
    }
}
/* =========================================
   2. BLOC CATÉGORIES (NOS UNIVERS VAPE)
   ========================================= */

.cat-grid-container {
    max-width: 1400px; 
    margin: 0 auto 40px auto; 
    padding: 20px 20px 0 20px; 
    text-align: center;
}

.cat-grid-container h2 {
    font-size: 28px !important; 
    font-weight: 900 !important;
    text-transform: uppercase;
    margin-bottom: 30px !important; 
    letter-spacing: 1px;
}

.cat-grid {
    display: flex !important;
    flex-direction: row !important; 
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.cat-card {
    flex: 1; 
    text-decoration: none;
    color: #000;
    /* MODIFICATION : On met le fond en blanc pour qu'il se confonde avec l'image */
    background: #ffffff !important; 
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    /* AJOUT : On réduit la marge au bord à 2px */
    padding: 2px !important; 
    border: 1px solid #eeeeee; /* Optionnel : une fine bordure pour délimiter la carte */
}

.cat-card:hover {
    transform: translateY(-5px);
}

.cat-image-wrapper {
    width: 100% !important;
    /* MODIFICATION : Hauteur ajustée pour PC */
    height: 350px !important; 
    background-color: #fff !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* AJOUT : Arrondi interne pour suivre la carte */
    border-radius: 13px; 
}

.cat-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    /* MODIFICATION : "cover" permet de remplir tout le cadre sans bordures blanches */
    object-fit: cover !important; 
    object-position: center !important;
}

.cat-info {
    /* MODIFICATION : Padding réduit pour laisser l'image dominer */
    padding: 15px 10px !important; 
    background: #fff;
}

.cat-info h3 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

/* =========================================
   ADAPTATION MOBILE
   ========================================= */
@media screen and (max-width: 768px) {
    .cat-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
        padding: 0 10px;
    }

    .cat-image-wrapper {
        /* MODIFICATION : Plus de hauteur sur mobile pour l'impact visuel */
        height: 300px !important; 
    }
    
    .cat-card {
        width: 100% !important;
        /* GARANTIE : On garde les 2px de marge sur mobile aussi */
        padding: 2px !important; 
    }
    
    .demo-assurance-compact {
        padding: 5px 10px !important;
    }
}
/* --- SECTION 1 : FOND GRAFFITI UNIQUEMENT ICI --- */
.section-esprit-monkey {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0 0 0; /* Pas de padding en bas pour coller à la suite */
    background-image: url('../img/image-a-propos.jpg'); /* */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mission-white-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 1100px;
    width: 90%;
    text-align: center;
    border-radius: 20px 20px 0 0; /* Coins arrondis en haut seulement */
}

.title-monkey span {
    background: #FFD700;
    padding: 0 10px;
    color: #000;
}

/* --- SECTION 2 : BLOCS NOIRS CÔTE À CÔTE --- */
.section-avantages-monkey {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 80px 0; /* Pas de padding en haut */
    background: transparent; /* Pas d'image ici pour éviter la fusion technique */
    margin-top: -1px; /* Pour éviter un liseré blanc entre les deux sections */
}

.avantages-grid {
    display: flex; /* FORCE L'ALIGNEMENT HORIZONTAL */
    flex-direction: row;
    max-width: 1100px;
    width: 90%;
}

.advantage-card {
    flex: 1; /* Chaque bloc prend 1/3 de la largeur */
    background: #000; /* Fond noir */
    color: #fff;
    padding: 40px 25px;
    text-align: center;
    border: 0.5px solid #222;
}

/* Arrondis du bas pour finir le bloc proprement */
.advantage-card:first-child { border-radius: 0 0 0 20px; }
.advantage-card:last-child { border-radius: 0 0 20px 0; }

.advantage-card h4 {
    color: #FFD700;
    margin-top: 15px;
    text-transform: uppercase;
}

/* --- RESPONSIVE : On empile uniquement si l'écran est trop petit --- */
@media screen and (max-width: 900px) {
    .avantages-grid {
        flex-direction: column;
    }
    .advantage-card:first-child, .advantage-card:last-child {
        border-radius: 0;
    }
    .advantage-card:last-child {
        border-radius: 0 0 20px 20px;
    }
}
/* --- SECTION PROMOTIONS --- */
.promotions-section {
    padding: 10px 0 80px 0; /* Réduction drastique de la marge du haut */
    background: #f9f9f9; 
}

.section-header {
    text-align: center;
    margin-bottom: 30px; /* Réduction aussi de l'espace sous le titre pour remonter la grille */
}

.title-main span {
    background: #FFD700;
    padding: 0 10px;
    color: #000;
}

/* GRILLE À 4 COLONNES SUR PC */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LA CARTE PRODUIT */
.promo-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card:hover {
    transform: translateY(-10px);
}

/* LE BADGE PROMO */
.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff0000;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.promo-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase; /* AJOUT : Titre en capitales */
}

.price {
    font-weight: 900;
    color: #000;
    font-size: 1.1rem;
}

.promo-val {
    color: #ff0000; 
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* BOUTON RECTANGULAIRE (Style image de référence) */
.btn-promo {
    display: block;
    margin-top: 15px;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px; /* Rectangulaire */
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-promo:hover {
    background: #FFD700;
    color: #000;
}

/* --- RESPONSIVE : TABLETTE --- */
@media screen and (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
}

/* --- RESPONSIVE : MOBILE (2 PAR LIGNE) --- */
@media screen and (max-width: 600px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr); /* FORCE LES 2 COLONNES */
        gap: 12px;
        padding: 0 10px;
    }

    .promo-card {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .promo-info h4 {
        font-size: 14px;
        min-height: 40px; /* Aligne les prix si les titres font 1 ou 2 lignes */
        line-height: 1.2;
    }

    .price {
        font-size: 15px;
    }

    .old-price {
        display: block; /* Empile l'ancien prix pour gagner de la place */
        margin-bottom: 2px;
        font-size: 12px;
    }

    .btn-promo {
        font-size: 11px;
        padding: 10px 5px;
    }

    .promo-badge {
        font-size: 11px;
        padding: 4px 8px;
        top: 10px;
        left: 10px;
    }
}
.blog-container-grid {
    display: flex;
    justify-content: center; /* Centre les blocs dans la page */
    gap: 30px; /* Force l'espace de 30px entre chaque bloc */
    flex-wrap: wrap; /* Permet de passer à la ligne proprement si besoin */
    padding: 20px 0;
}

.blog-block {
    flex: 0 1 calc(33.333% - 20px); /* Largeur exacte pour 3 blocs avec l'espace */
    min-width: 300px; /* Évite que les blocs deviennent trop étroits */
    background: #ffffff;
    border-radius: 12px; /* Coins arrondis pour un look plus pro */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Ombre légère pour décoller du fond */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.blog-info {
    padding: 25px; /* Ajoute de l'espace interne pour que le texte ne touche pas les bords */
}

.blog-info h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.blog-info p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

/* Ajustement Mobile */
@media (max-width: 992px) {
    .blog-block {
        flex: 0 1 calc(50% - 20px); /* 2 blocs par ligne sur tablette */
    }
}

@media (max-width: 768px) {
    .blog-block {
        flex: 0 1 100%; /* 1 bloc par ligne sur téléphone */
    }
}
/* Espace entre les grandes sections du site */
.blog-section {
    margin-top: 40px; /* Crée l'espace vide avec la section au-dessus */
    margin-bottom: 50px; /* Crée l'espace avec la section en-dessous */
    padding: 60px 0; /* Espace interne pour que le contenu ne soit pas à l'étroit */
    border-top: 1px solid #f0f0f0; /* Optionnel : une ligne très fine pour séparer proprement */
}

/* On s'assure que le header du blog n'est pas trop près du contenu */
.section-header {
    margin-bottom: 30px; 
    text-align: center;
}
.blog-footer {
    text-align: center;
    margin-top: 10px; /* Espace entre la grille et le bouton */
}

.btn-load-more {
    display: inline-block;
    background-color: #000000; /* Le jaune de votre titre "Blog" */
    color: #ffffff; /* Texte noir */
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.btn-load-more:hover {
    background-color: transparent;
    color: #FFD700; /* Inversement des couleurs au survol */
}
.main-footer {
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.94)),
        url('../img/fond-nouveaute.jpg') center/cover no-repeat;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.footer-overlay {
    padding: 75px 0 28px;
    background: radial-gradient(circle at top center, rgba(255,204,0,.10), transparent 45%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.3fr;
    gap: 34px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    width: 240px;
    height: auto;
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 16px rgba(255,204,0,.18));
}

.footer-description {
    color: #d7d7d7;
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-col {
    position: relative;
}

.footer-accordion,
.footer-contact-title {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 22px;
    color: #f5c542;
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    text-align: left;
}

.footer-accordion {
    cursor: default;
}

.footer-accordion i {
    display: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col a {
    color: #d6d6d6;
    text-decoration: none;
    font-size: .92rem;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-col a i,
.footer-contact-content i {
    color: #d4a017;
    width: 18px;
    text-align: center;
    text-shadow: 0 0 9px rgba(212,160,23,.35);
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-col a:hover i {
    color: #ffd95a;
}

.footer-contact-content p {
    color: #d6d6d6;
    font-size: .92rem;
    margin: 0 0 13px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-links {
    margin-top: 24px;
    display: flex;
    gap: 13px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245,197,66,.35);
    border-radius: 50%;
    color: #f5c542;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255,255,255,.04);
    box-shadow: 0 0 18px rgba(245,197,66,.08);
    transition: all .3s ease;
}

.social-links a:hover {
    background: #f5c542;
    color: #080808;
    transform: translateY(-4px);
}

.footer-payments {
    margin-top: 24px;
}

.footer-payments > span {
    display: block;
    color: #f5c542;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.payment-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.payment-logo-row img {
    width: 82px;
    height: auto;
    display: block;
    object-fit: contain;
}

.cash-delivery {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(245,197,66,.32);
    background: rgba(255,255,255,.05);
    color: #f5c542;
    font-size: .78rem;
    font-weight: 800;
}

.cash-delivery i {
    color: #f5c542;
    width: auto;
}

.footer-bottom {
    max-width: 1250px;
    margin: 52px auto 0;
    padding: 24px 22px 0;
    border-top: 1px solid rgba(245,197,66,.16);
    text-align: center;
}

.footer-bottom p {
    margin: 4px 0;
    color: #9f9f9f;
    font-size: .82rem;
}

/* TABLETTE */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 700px) {
    .footer-overlay {
        padding: 55px 0 24px;
    }

    .footer-top {
        display: block;
        padding: 0 22px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 34px;
    }

    .footer-logo-img {
        width: 250px;
        margin: 0 auto 16px;
    }

    .footer-description {
        max-width: 330px;
        margin: 0 auto;
        font-size: .9rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 22px;
    }

    .footer-col {
        border-top: 1px solid rgba(245,197,66,.18);
    }

    .footer-accordion {
        height: 58px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        cursor: pointer;
    }

    .footer-accordion i {
        display: inline-block;
        color: #f5c542;
        transition: transform .3s ease;
    }

    .footer-col.active .footer-accordion i {
        transform: rotate(180deg);
    }

    .footer-col ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .footer-col.active ul {
        max-height: 420px;
        padding-bottom: 18px;
    }

    .footer-col ul li {
        margin-bottom: 14px;
    }

    .footer-col a {
        font-size: .92rem;
    }

    .footer-contact {
        border-top: 1px solid rgba(245,197,66,.18);
        padding-top: 24px;
        text-align: center;
    }

    .footer-contact-title {
        margin-bottom: 18px;
        text-align: center;
        color: #f5c542;
    }

    .footer-contact-content {
        max-height: none;
        overflow: visible;
    }

    .footer-contact-content p {
        justify-content: center;
        font-size: .9rem;
    }

    .payment-logo-row {
        justify-content: center;
        gap: 8px;
    }

    .payment-logo-row img {
        width: 78px;
    }

    .cash-delivery {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        margin-top: 34px;
        padding: 22px 22px 0;
    }

    .footer-bottom p {
        font-size: .78rem;
        line-height: 1.5;
    }
}
/* =========================================
   1. STRUCTURE DE LA PAGE COMPTE
   ========================================= */
.account-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.account-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.account-box {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.account-box.highlight {
    border: 1px solid #eee;
    background: #fff;
}

.account-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.account-box h3 span {
    color: #333;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================
   2. FORMULAIRES ET CHAMPS (TOUS EN BLANC)
   ========================================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Modification : Tous les champs en blanc avec bordure légère */
.form-group input, 
input[type="email"], 
input[type="password"], 
input[type="text"], 
input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #ffffff !important; /* Force le blanc */
    color: #333 !important;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: #ffcc00; /* Jaune Big Monkey au focus */
    outline: none;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.2);
}

/* =========================================
   3. TEXTE EXPLICATIF (POUR MADAGASCAR)
   ========================================= */
.account-benefits {
    background-color: #fff9e6; /* Jaune très clair */
    border-left: 4px solid #ffcc00;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    text-align: left;
}

.account-benefits p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.account-benefits strong {
    color: #000;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* =========================================
   4. OPTIONS ET BOUTONS
   ========================================= */
.form-footer-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 25px 0;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.remember-me input {
    width: auto;
    cursor: pointer;
}

.forgot-pass {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.forgot-pass:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.btn-account {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-yellow { /* Nouveau style pour le bouton de connexion */
    background: #ffcc00;
    color: #000;
}

.btn-yellow:hover {
    background: #e6b800;
}

.btn-dark {
    background: #000;
    color: #fff;
}

.btn-dark:hover {
    background: #333;
}

/* =========================================
   5. POPUP DE BIENVENUE (CLEAN)
   ========================================= */
.welcome-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 10000;
    text-align: center;
    min-width: 350px;
    max-width: 400px;
    border-top: 5px solid #ffcc00;
}

.success-icon {
    font-size: 50px;
    color: #27ae60;
    margin-bottom: 20px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.btn-accueil {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

/* =========================================
   6. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .account-grid {
        flex-direction: column;
        align-items: center;
    }

    .form-footer-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
.add-to-cart,
.btn-view {
    display: block;
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 8px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}

.add-to-cart:hover,
.btn-view:hover {
    background: #ffcc00;
    color: #111;
}

/* --- PAGINATION --- */
.collection-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 32px 0 20px;
}

.pagination-link {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #d8dde3;
    border-radius: 8px;
    color: #1f2937;
    font-weight: 800;
    transition: all .2s ease;
    padding: 0 10px;
}

.pagination-link:hover,
.pagination-link.is-active {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #111;
}

/* --- MOBILE FILTRES --- */
.mobile-filter-trigger {
    display: none;
}

.filter-overlay {
    display: none;
}

.filter-header-mobile {
    display: none;
}

/* =========================================
   RESPONSIVE
========================================= */
@media screen and (max-width: 768px) {
    body.filters-open {
        overflow: hidden;
    }

    .container-collection {
        display: block;
        margin-top: 24px;
        padding: 0 14px;
    }

    .mobile-filter-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 18px 14px;
        padding: 16px;
        background: #ffcc00;
        color: #000;
        font-weight: 900;
        border-radius: 8px;
        cursor: pointer;
        text-transform: uppercase;
    }

    .sidebar-filters {
        position: fixed;
        top: 0;
        left: -100%;
        width: 88%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        transition: left .3s ease;
        box-shadow: 8px 0 28px rgba(0,0,0,.18);
        padding: 20px 16px 30px;
        border-right: none;
    }

    .sidebar-filters.is-open {
        left: 0;
    }

    .filter-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all .25s ease;
    }

    .filter-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .filter-header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
        font-weight: 900;
        font-size: 18px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-info {
        padding: 10px 8px;
    }

    .product-name {
        font-size: 13px !important;
    }

    .product-desc,
    .product-short-description {
        font-size: 11px !important;
    }

    .price,
    .product-price {
        font-size: 15px !important;
    }

    .add-to-cart,
    .btn-view {
        font-size: 11px;
        padding: 12px 6px;
    }
}

@media screen and (max-width: 480px) {
    .products-grid {
        gap: 10px;
    }

    .product-name {
        font-size: 12px !important;
    }

    .product-desc,
    .product-short-description {
        font-size: 10px !important;
    }

    .price,
    .product-price {
        font-size: 14px !important;
    }
}
@media (min-width: 769px) {
    .mobile-filter-trigger, .filter-header-mobile {
        display: none;
    }
}
@media (min-width: 769px) {
    .mobile-only-header {
        display: none !important;
    }

    .desktop-premium-header {
        background: #fff;
        border-bottom: 1px solid #eaeaea;
        box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    }

    .desktop-header-main {
        max-width: 1400px;
        margin: 0 auto;
        height: 145px;
        padding: 0 45px;
        display: grid;
        grid-template-columns: 300px 1fr 180px;
        align-items: center;
        gap: 40px;
    }

    .premium-logo img {
        height: 115px;
        width: auto;
        object-fit: contain;
    }

    .premium-search form {
        width: 100%;
        height: 58px;
        display: flex;
        align-items: center;
        background: #fff;
        border: 1px solid #d7dbe2;
        border-radius: 999px;
        padding: 0 8px 0 24px;
        box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    }

    .premium-search input {
        flex: 1;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        font-size: 16px;
        color: #111;
    }

    .premium-search button {
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: #ffcc00;
        color: #000;
        font-size: 18px;
        cursor: pointer;
    }

    .premium-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 28px;
    }

    .premium-account,
    .premium-cart {
        position: relative;
        font-size: 30px;
        color: #000;
    }

    .premium-cart span {
        position: absolute;
        top: -10px;
        right: -13px;
        width: 24px;
        height: 24px;
        background: #ffcc00;
        color: #000;
        border-radius: 50%;
        font-size: 13px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-menu {
        border-top: 1px solid #eeeeee;
        background: #fff;
    }

    .desktop-menu ul {
    max-width: 1150px;
    margin: 0 auto;
    height: 60px;
    padding: 0 !important;
    border-top: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 85px;
}

.desktop-menu > ul > li > a {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111 !important;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: all .25s ease;
}

.desktop-menu > ul > li > a:hover {
    color: #f3c400 !important;
}

.desktop-menu > ul > li > a::after {
    background: #f3c400 !important;
    height: 2px !important;
    bottom: -8px !important;
}

.menu-arrow {
    font-size: 9px !important;
    opacity: .55;
    margin-left: 4px;
    vertical-align: middle;
}

.desktop-menu ul li.promo a {
    color: #ff3030 !important;
    font-weight: 700 !important;
}

    .desktop-menu ul li.promo a {
        color: #ff2b20 !important;
    }
}

@media (max-width: 768px) {
    .desktop-premium-header {
        display: none !important;
    }
}
/* =========================================
   CORRECTION BARRE PREMIUM DESKTOP - VERSION PLUS FINE
========================================= */

@media (min-width: 769px) {
    .premium-top-bar {
        height: 58px !important;
        background: #000 !important;
        padding: 0 !important;
    }

    .premium-top-bar-content {
        width: 100% !important;
        max-width: none !important;
        height: 58px !important;
        margin: 0 !important;
        padding: 0 70px !important;

        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        column-gap: 65px !important;
    }

    .premium-top-features {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        align-items: center !important;
        width: 100% !important;
    }

    .premium-top-feature {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        position: relative !important;
    }

    .premium-top-feature:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 30px;
        background: rgba(255,255,255,0.22);
    }

    .premium-top-actions {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;
        white-space: nowrap !important;
    }

    .premium-top-actions > * {
        position: relative !important;
    }

    .premium-top-actions > *:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -13px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 24px;
        background: rgba(255,255,255,0.22);
    }

    .premium-top-feature i {
        font-size: 20px !important;
        color: #ffcc00 !important;
    }

    .premium-top-feature strong {
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.1;
    }

    .premium-top-feature span {
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #d4d4d4 !important;
        line-height: 1.1;
    }

    .premium-top-actions a,
    .premium-top-actions button {
        color: #fff !important;
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .premium-top-actions i {
        color: #fff !important;
        margin-right: 6px;
        font-size: 13px !important;
    }
}
/* =========================================
   MENU DESKTOP PREMIUM FINAL
========================================= */

@media (min-width: 769px) {
    .desktop-menu {
        background: #ffffff !important;
        border-top: 1px solid #eeeeee !important;
        border-bottom: 1px solid #eeeeee !important;
        box-shadow: 0 8px 18px rgba(0,0,0,0.025);
    }

    .desktop-menu ul {
        max-width: 1050px !important;
        height: 58px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 72px !important;
        border-top: none !important;
    }

    .desktop-menu ul li {
        padding-bottom: 0 !important;
    }

    .desktop-menu > ul > li > a {
        position: relative !important;
        padding: 19px 0 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: 0.35px !important;
        color: #111 !important;
        text-transform: uppercase !important;
        transition: color 0.25s ease !important;
        cursor: pointer;
    }

    .desktop-menu > ul > li > a:hover,
    .desktop-menu > ul > li.active > a {
        color: #d9aa00 !important;
    }

    .desktop-menu > ul > li > a::after {
        content: "" !important;
        position: absolute !important;
        left: 50% !important;
        bottom: 10px !important;
        width: 0 !important;
        height: 2px !important;
        background: #ffcc00 !important;
        transform: translateX(-50%) !important;
        transition: width 0.25s ease !important;
    }

    .desktop-menu > ul > li:hover > a::after,
    .desktop-menu > ul > li.active > a::after {
        width: 100% !important;
    }

    .desktop-menu ul li.promo a {
        color: #ff2c1f !important;
        font-weight: 700 !important;
    }

    .desktop-menu ul li.promo a:hover {
        color: #d80000 !important;
    }

    .desktop-menu .has-mega-menu {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
    }

    .desktop-menu .has-mega-menu:hover .mega-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .desktop-menu .has-mega-menu.active .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
    }

    .menu-arrow {
        display: none !important;
    }
}
/* =========================================
   MEGA MENU DESKTOP PREMIUM FINAL
========================================= */

@media (min-width: 769px) {
    .mega-menu {
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        position: absolute !important;
        left: 50% !important;
        top: calc(100% + 14px) !important;
        transform: translate(-50%, 12px) !important;

        min-width: 430px !important;
        max-width: 460px !important;
        padding: 28px 32px !important;

        background: #111111 !important;
        border: 1px solid #222222 !important;
        border-top: 3px solid #ffcc00 !important;
        border-radius: 14px !important;
        box-shadow: 0 25px 50px rgba(0,0,0,0.35) !important;

        transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
        z-index: 6000 !important;
    }

    .mega-container,
    .mega-container-auto,
    .mega-col,
    .mega-col-full {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .mega-col h3 {
        font-size: 13px !important;
        font-weight: 800 !important;
        letter-spacing: .9px !important;
        color: #ffffff !important;
        margin-bottom: 18px !important;
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(255,255,255,.10) !important;
        text-align: left !important;
    }

    .mega-auto-grid,
    .mega-auto-grid-small {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .mega-auto-link {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;
        min-height: 40px !important;
        padding: 0 16px !important;
        border-radius: 8px !important;

        font-size: 14px !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        background: transparent !important;

        white-space: nowrap !important;
        overflow: visible !important;

        transition: background .18s ease, color .18s ease, padding-left .18s ease !important;
    }

    .mega-auto-link::after {
        content: none !important;
    }

    .mega-auto-link:hover {
        background: #ffcc00 !important;
        color: #000000 !important;
        padding-left: 22px !important;
    }

    .mega-empty {
        font-size: 13px;
        color: #cccccc;
        padding: 8px 0;
    }
}
/* ================================
   BARRE ANNONCE MOBILE
================================ */

.mobile-announcement-bar {
    display: none;
}

@media (max-width: 768px) {
    .premium-top-bar {
        display: none !important;
    }

    .mobile-announcement-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: #111;
        color: #fff;
        height: 38px;
        padding: 0 12px;
        overflow: hidden;
        border-bottom: 1px solid #222;
    }

    .mobile-announcement-track {
        width: 100%;
        position: relative;
        height: 38px;
    }

    .mobile-announcement-item {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity .35s ease, transform .35s ease;
        white-space: nowrap;
        font-size: 12.5px;
        font-weight: 600;
    }

    .mobile-announcement-item i {
        color: #ffcc00;
        font-size: 14px;
        flex-shrink: 0;
    }

    .mobile-announcement-item.active {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================
   NOUVEAUTÉS PREMIUM
========================== */

.new-products-section {
    margin: 0;
    padding: 0;
}

.new-products-title {
    background: #fff;
    padding: 55px 20px 50px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.new-title-inner {
    max-width: 760px;
    margin: 0 auto;
}

.new-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.new-title-inner h2 {
    margin: 0;
    color: #000;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.new-title-inner h2 strong {
    color: #000;
    background: #ffcc00;
    padding: 4px 14px;
    border-radius: 4px;
}

.new-title-inner p {
    margin-top: 14px;
    color: #444;
    font-size: 16px;
}

.new-products-content {
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55)),
        url('../img/fond-nouveaute.jpg') center center / cover no-repeat !important;

    padding: 60px 0 80px;
    border-top: 3px solid #ffcc00;
}

.new-products-content .container {
    max-width: 1760px !important;
    width: 96% !important;
    margin: 0 auto !important;
}

.new-products-row {
    display: flex !important;
    align-items: center !important;
    gap: 26px !important;
    width: 100% !important;
}
/* =========================================
   EXPLORER PAR SAVEURS
   PC + MOBILE = GRILLE 3x2
========================================= */

.flavour-carousel-section {
    padding: 35px 10px;
    background: #fff;
}

.flavour-carousel {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.flavour-slide {
    position: relative !important;
    display: block !important;
    height: 240px;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 14px 35px rgba(0,0,0,.14);
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform .3s ease, box-shadow .3s ease;
}

.flavour-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,.22);
}

.flavour-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.flavour-slide:hover img {
    transform: scale(1.05);
}

.flavour-arrow,
.flavour-dots {
    display: none !important;
}

/* Tablette */
@media (max-width: 1024px) {
    .flavour-carousel {
        gap: 16px;
    }

    .flavour-slide {
        height: 190px;
        border-radius: 18px;
    }
}

/* Mobile : toujours 3 par ligne, mais plus compact */
@media (max-width: 768px) {
    .flavour-carousel-section {
        padding: 24px 10px;
    }

    .flavour-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .flavour-slide {
        height: 105px;
        border-radius: 12px;
        box-shadow: 0 8px 22px rgba(0,0,0,.12);
    }

    .flavour-slide:hover {
        transform: none;
    }

    .flavour-slide img {
        object-fit: cover;
    }
}
.best-sellers-section {
    margin: 0;
    padding: 0;
}

.best-sellers-section .new-products-content {
    background:
        linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.35)),
        url('../img/fond-premium.jpg');
    background-size: cover;
    background-position: center;
}

.best-sellers-section .promo-badge {
    background: #ffcc00 !important;
    color: #000 !important;
}

.best-sellers-section .promo-badge::after {
    content: "";
}
/* ==========================
   COUP DE CŒUR - FEATURED
========================== */

.featured-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(0,0,0,.78),
            rgba(0,0,0,.82)
        ),
        url('../img/fond-nouveaute-2.jpg')
        center center / cover no-repeat;
    padding-top: 90px;
}

.featured-kicker-global {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 34px;
    border: 1px solid rgba(255,204,0,.35);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,204,0,.10), rgba(255,204,0,.02));
    box-shadow: 0 0 35px rgba(255,204,0,.10);
    width: max-content;
    z-index: 50;
    pointer-events: none;
}

.featured-kicker-global::before,
.featured-kicker-global::after {
    content: "";
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,204,0,.8), transparent);
}

.featured-kicker-global img {
    width: 46px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,204,0,.45));
}

.featured-kicker-global h2 {
    margin: 0;
    color: #ffcc00;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255,204,0,.22);
}

.featured-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.featured-track {
    display: flex;
    transition: transform 0.6s ease;
}

.featured-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82)),
        url('../img/fond-nouveaute-2.jpg') center center / cover no-repeat;
    padding-top: 90px;
}

.featured-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    min-height: 620px;
    background: transparent;
    overflow: hidden;
}

.featured-content {
    position: relative;
    min-height: 620px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 35px 60px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.featured-product {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-product img {
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 45px rgba(0,0,0,.85));
}

.featured-text {
    color: #fff;
    text-align: left;
}

.featured-text h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.05;
    margin-bottom: 22px;
    text-transform: uppercase;
    color: #fff;
}

.featured-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.92);
    margin-bottom: 28px;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffcc00;
    color: #000;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,204,0,.55);
    background: rgba(0,0,0,.35);
    color: #ffcc00;
    font-size: 34px;
    cursor: pointer;
    z-index: 5;
}

.featured-prev { left: 22px; }
.featured-next { right: 22px; }

.featured-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.featured-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}

.featured-dot.active {
    background: #ffcc00;
}
/* MOBILE */
@media (max-width: 768px) {
    .featured-section {
        padding-top: 75px;
    }

    .featured-slider {
        overflow: hidden;
    }

    .featured-track {
        display: flex;
        transition: transform 0.5s ease !important;
        overflow: visible;
        scroll-snap-type: none;
        touch-action: pan-y;
    }

    .featured-slide {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 760px;
    background: transparent;
}

    .featured-content {
        min-height: 760px;
        padding: 25px 22px 45px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
    }

    .featured-kicker-global {
        top: 20px;
        gap: 10px;
        padding: 10px 16px;
    }

    .featured-kicker-global::before,
    .featured-kicker-global::after {
        width: 26px;
    }

    .featured-kicker-global img {
        width: 32px;
    }

    .featured-kicker-global h2 {
        font-size: 17px;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .featured-product {
        order: 1;
        width: 100%;
    }

    .featured-product img {
        max-height: 360px;
        width: auto;
        max-width: 90%;
    }

    .featured-text {
        order: 2;
        text-align: center;
    }

    .featured-text h2 {
        font-size: 30px;
    }

    .featured-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .featured-arrow,
    .featured-dots {
        display: none;
    }
}
.featured-mobile-arrow {
    display: none;
}

@media (max-width: 768px) {
    .featured-mobile-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,204,0,.65);
        background: rgba(0,0,0,.45);
        color: #ffcc00;
        font-size: 28px;
        font-weight: 900;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .featured-mobile-prev {
        left: 14px;
    }

    .featured-mobile-next {
        right: 14px;
    }

    .featured-mobile-arrow.is-hidden {
        display: none !important;
    }
}
.promotions-section .old-price {
    color: #999 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}
/* PROMOTIONS : prix promo en rouge */
.promotions-section .promo-val {
    color: #d60000 !important;
    font-weight: 900 !important;
}
/* Badge réduction rond pour les promotions */
.promotions-section .promo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #d60000 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    z-index: 5;
    box-shadow: 0 6px 16px rgba(214, 0, 0, 0.35);
}
.brands-section{
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
        url('../img/fond-nouveaute-2.jpg') center center / cover no-repeat;
    padding: 75px 20px 90px;
    overflow: hidden;
    border-top: 1px solid rgba(255,204,0,.35);
    border-bottom: 1px solid rgba(255,204,0,.25);
}

.brands-title{
    text-align: center;
    color: #fff;
    margin-bottom: 55px;
}

.brands-kicker{
    display: block;
    margin-bottom: 14px;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.brands-title h2{
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.brands-title h2 span{
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 7px 18px;
    border-radius: 5px;
}

.brands-title p{
    margin-top: 22px;
    color: rgba(255,255,255,.88);
    font-size: 17px;
}

.brands-slider{
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.brand-card{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    border: 1px solid rgba(255,204,0,.55);
    border-radius: 14px;
    background: rgba(0,0,0,.22);
    box-shadow:
        inset 0 0 12px rgba(255,204,0,.04),
        0 0 18px rgba(0,0,0,.30);
    overflow: hidden;
    transition: .3s ease;
}

.brand-card:hover{
    border-color: #ffcc00;
    box-shadow:
        inset 0 0 14px rgba(255,204,0,.08),
        0 0 20px rgba(255,204,0,.22);
}

.brand-card img{
    display: block;
    width: 175px;
    height: 88px;
    object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px){
    .brands-section{
        padding: 60px 0 75px;
    }

    .brands-title{
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .brands-title h2{
        font-size: 34px;
    }

    .brands-title p{
        font-size: 15px;
    }

    .brands-slider{
        max-width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 16px 12px;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .brands-slider::-webkit-scrollbar{
        display: none;
    }

    .brand-card{
    flex: 0 0 calc(50vw - 32px);
    width: calc(50vw - 32px);
    height: 105px;
    padding: 6px;
    scroll-snap-align: center;
}

.brand-card img{
    width: 95%;
    height: 95%;
    object-fit: contain;
}

    .brand-card img{
        width: 90%;
        height: 90%;
        object-fit: contain;
    }
}
/* =========================================
   POURQUOI CHOISIR PAV MDG
========================================= */

.why-choose-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 80px 20px;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.70)),
        url('../img/fond-nouveaute.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(255,204,0,.22);
    border-bottom: 1px solid rgba(255,204,0,.22);
    overflow: hidden;
}

.why-choose-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
    color: #fff;
}

.why-kicker {
    display: block;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-choose-title h2 {
    color: #fff;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}

.why-choose-title h2 span {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 4px 14px;
}

.why-choose-title p {
    color: rgba(255,255,255,.82);
    font-size: 16px;
}

.why-choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.why-choose-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    min-height: 310px;
    padding: 30px 22px;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(10,10,10,.92), rgba(0,0,0,.82));
    border: 1px solid rgba(255,204,0,.28);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.38);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,204,0,.75);
    box-shadow: 0 25px 60px rgba(255,204,0,.12);
}

.why-card img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    margin: 0 auto 18px;
    filter: drop-shadow(0 0 14px rgba(255,204,0,.25));
}

.why-card h3 {
    color: #ffcc00;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.55;
    max-width: 230px;
    margin: 0 auto;
}

.why-dots {
    display: none;
}

/* MOBILE : 2 cartes visibles + swipe tactile */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 55px 0 50px;
    }

    .why-choose-title {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .why-choose-title h2 {
        font-size: 32px;
    }

    .why-choose-title p {
        font-size: 14px;
    }

    .why-choose-wrapper {
        overflow-x: auto;
        padding: 0 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .why-choose-wrapper::-webkit-scrollbar {
        display: none;
    }

    .why-choose-track {
        display: flex;
        gap: 14px;
        width: max-content;
    }

    .why-card {
        flex: 0 0 calc((100vw - 42px) / 2);
        min-height: 270px;
        padding: 24px 12px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .why-card img {
        width: 88px;
        height: 88px;
        margin-bottom: 14px;
    }

    .why-card h3 {
        font-size: 12px;
        line-height: 1.25;
        min-height: 32px;
    }

    .why-card p {
        font-size: 12px;
        line-height: 1.45;
    }

    .why-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 22px;
    }

    .why-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,204,0,.28);
    }

    .why-dot.active {
        background: #ffcc00;
        box-shadow: 0 0 10px rgba(255,204,0,.55);
    }
}
/* =========================================
   TIROIR MOBILE PAV MDG - VERSION PREMIUM
========================================= */
@media (max-width: 768px) {

    .mobile-drawer {
        background: #000 !important;
    }

    .drawer-header {
        padding: 28px 22px !important;
        font-size: 22px !important;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 204, 0, 0.25) !important;
    }

    .close-drawer {
        color: #fff;
        font-size: 34px !important;
    }

    .mobile-drawer li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    }

    .mobile-drawer li a,
    .mobile-menu-item > span:first-child,
    .mobile-menu-link {
        display: flex;
        align-items: center;
        min-height: 62px;
        padding: 0 22px !important;
        color: #fff !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .mobile-menu-link {
        color: #ffcc00 !important;
    }

    .toggle-submenu {
        color: #ffcc00 !important;
        border-left: 1px solid rgba(255, 204, 0, 0.25) !important;
        height: 62px !important;
        font-size: 30px !important;
    }

    .submenu-mobile {
        background: #111 !important;
    }

    .submenu-mobile li a {
        min-height: 48px;
        padding: 0 34px !important;
        color: rgba(255,255,255,0.85) !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: none;
    }

    .mobile-drawer li.promo-mob a {
        color: #ff4b3e !important;
    }

    .mobile-contact-section {
        padding: 28px 24px !important;
        margin-top: 0 !important;
        background: #000 !important;
    }

    .mobile-contact-section h3 {
        color: #ffcc00 !important;
        font-size: 18px !important;
        font-weight: 800;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .mobile-drawer .mobile-contact-item {
        gap: 16px !important;
        padding: 11px 0 !important;
        color: #fff !important;
        font-size: 15px !important;
    }

    .mobile-contact-item img {
        width: 26px !important;
        height: 26px !important;
        filter: brightness(0) saturate(100%) invert(78%) sepia(98%) saturate(748%) hue-rotate(359deg) brightness(103%) contrast(103%);
    }

    .mobile-auth-section {
        padding: 24px 20px !important;
        background: #000 !important;
        border-top: 1px solid rgba(255, 204, 0, 0.25) !important;
    }

}@media (max-width: 768px) {
    .submenu-mobile .submenu-mobile,
    .submenu-mobile .submenu-mobile li,
    .submenu-mobile .submenu-mobile li a {
        background: #fff !important;
        color: #000 !important;
    }

    .submenu-mobile .submenu-mobile li a {
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: none !important;
        padding-left: 42px !important;
    }
}
@media (max-width: 768px) {
    .mobile-contact-item i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        background: #ffcc00;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .mobile-contact-item span {
        color: #fff !important;
        font-size: 16px !important;
        text-transform: none !important;
    }
}
/* =========================================
   TIROIR MOBILE - ESPACE CLIENT FINAL
========================================= */
@media (max-width: 768px) {

    .mobile-auth-section {
        padding: 28px 22px !important;
        background: #000 !important;
        border-top: 1px solid rgba(255, 204, 0, 0.25) !important;
    }

    .mobile-auth-title {
        color: #ffcc00 !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        margin-bottom: 18px !important;
    }

    .mobile-auth-section .mobile-auth-btn {
        width: 100% !important;
        min-height: 54px !important;
        margin: 0 0 12px 0 !important;
        padding: 0 18px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;

        border-radius: 16px !important;
        text-decoration: none !important;

        font-size: 15px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .3px !important;
        line-height: 1 !important;
    }

    .mobile-auth-section .mobile-auth-btn i {
        font-size: 18px !important;
        margin: 0 !important;
    }

    .mobile-auth-section .mobile-auth-profile {
        background: #ffffff !important;
        border: 1px solid #ffcc00 !important;
    }

    .mobile-auth-section .mobile-auth-profile,
    .mobile-auth-section .mobile-auth-profile i,
    .mobile-auth-section .mobile-auth-profile span {
        color: #000000 !important;
    }

    .mobile-auth-section .mobile-auth-orders {
        background: transparent !important;
        border: 1px solid rgba(255, 204, 0, .75) !important;
    }

    .mobile-auth-section .mobile-auth-orders,
    .mobile-auth-section .mobile-auth-orders span {
        color: #ffffff !important;
    }

    .mobile-auth-section .mobile-auth-orders i {
        color: #ffcc00 !important;
    }

    .mobile-auth-section .mobile-auth-logout {
        background: transparent !important;
        border: 1px solid rgba(255, 75, 62, .85) !important;
        border-radius: 16px !important;
    }

    .mobile-auth-section .mobile-auth-logout,
    .mobile-auth-section .mobile-auth-logout i,
    .mobile-auth-section .mobile-auth-logout span {
        color: #ff4b3e !important;
    }

    .mobile-auth-section .mobile-auth-login {
        background: #ffcc00 !important;
        border: 1px solid #ffcc00 !important;
        border-radius: 999px !important;
    }

    .mobile-auth-section .mobile-auth-login,
    .mobile-auth-section .mobile-auth-login i,
    .mobile-auth-section .mobile-auth-login span {
        color: #000 !important;
    }
}
/* Centrer le bouton Voir plus dans toutes les sections produits */
.section-see-more,
.home-section-see-more,
.products-see-more,
.btn-see-more-wrapper,
.view-more-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.section-see-more a,
.home-section-see-more a,
.products-see-more a,
.btn-see-more-wrapper a,
.view-more-wrapper a,
.btn-see-more {
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Correction centrage bouton VOIR PLUS accueil */
@media (min-width: 769px) {
    .best-sellers-section .new-products-row {
        align-items: center !important;
    }

    .best-sellers-section .new-see-all,
    .promotions-section.best-sellers-section .new-see-all {
        align-self: center !important;
        height: 300px !important;
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
}
.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-item i,
.announcement-item svg {
    flex-shrink: 0;
}

.announcement-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.announcement-title {
    font-weight: 800;
    color: #fff;
    font-size: 15px;
}

.announcement-subtitle {
    font-weight: 400;
    color: #fff;
    font-size: 13px;
}
@media (min-width: 769px) {
    .premium-top-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 3px !important;
    }

    .premium-top-feature strong,
    .premium-top-feature span {
        display: block !important;
    }
}
/* =========================================
   ACCUEIL - CARTES IDENTIQUES COLLECTION
========================================= */

.home-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-products-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 14px !important;
    scrollbar-width: none;
}

.home-products-carousel::-webkit-scrollbar {
    display: none;
}

.home-products-carousel .product-card {
    flex: 0 0 calc((100% - 66px) / 4) !important;
    min-width: calc((100% - 66px) / 4) !important;
    max-width: calc((100% - 66px) / 4) !important;
    scroll-snap-align: start;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Copie du style collection */
.home-products-grid .product-card {
    position: relative;
    background: #080808 !important;
    border: 1px solid rgba(245, 197, 66, .55) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-products-grid .product-card:hover {
    transform: translateY(-4px);
    border-color: #f5c542 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

.home-products-grid .product-image-wrap {
    position: relative;
    width: 100%;
    background: #070707;
}

.home-products-grid .product-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.home-products-grid .product-info {
    padding: 12px 16px 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-products-grid .product-brand {
    color: #f5c542;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 3px;
}

.home-products-grid .product-name {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
    text-transform: none;
}

.home-products-grid .product-desc {
    color: #a3a3a3;
    font-size: 13px;
    line-height: 1.35;
    margin: 3px 0 8px;
}

.home-products-grid .price {
    color: #f5c542;
    font-size: 18px;
    font-weight: 900;
    margin-top: auto;
    margin-bottom: 12px;
}

.home-products-grid .old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
}

.home-products-grid .promo-price,
.home-products-grid .regular-price {
    color: #f5c542;
}

.promotions-section .home-products-grid .promo-price {
    color: #e53935;
}

.home-products-grid .add-to-cart,
.home-products-grid .btn-view {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(245, 197, 66, .55);
    border-radius: 5px;
    background: transparent;
    color: #f5c542;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-products-grid .add-to-cart:hover,
.home-products-grid .btn-view:hover {
    background: #f5c542;
    color: #050505;
}

.home-products-grid .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.home-products-grid .badge-new {
    background: #f5c542;
    color: #050505;
}

.home-products-grid .badge-promo {
    background: #ff1f2d;
    color: #ffffff;
}

/* Mobile : 2 cartes visibles comme collection */
@media (max-width: 768px) {
    .home-products-carousel {
        gap: 12px !important;
        padding: 4px 2px 10px !important;
    }

    .home-products-carousel .product-card {
        flex: 0 0 calc((100% - 12px) / 2) !important;
        min-width: calc((100% - 12px) / 2) !important;
        max-width: calc((100% - 12px) / 2) !important;
    }

    .home-products-grid .product-card {
        border-radius: 8px !important;
    }

    .home-products-grid .product-info {
        padding: 10px 10px 12px;
    }

    .home-products-grid .product-brand {
        font-size: 10px;
    }

    .home-products-grid .product-name {
        font-size: 13px;
        line-height: 1.2;
    }

    .home-products-grid .product-desc {
        font-size: 11px;
        line-height: 1.3;
    }

    .home-products-grid .price {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .home-products-grid .old-price {
        font-size: 11px;
    }

    .home-products-grid .add-to-cart,
    .home-products-grid .btn-view {
        height: 36px;
        font-size: 10px;
        border-radius: 4px;
    }
}
/* =========================================
   ACCUEIL - FLÈCHES CAROUSEL + VOIR PLUS
========================================= */

/* Structure ligne : carousel + bouton voir plus */
.new-products-row {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    width: 100% !important;
}

.home-carousel-wrapper {
    position: relative !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

/* Flèches carousel accueil */
.home-carousel-arrow {
    appearance: none !important;
    -webkit-appearance: none !important;

    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;

    border: 2px solid rgba(245, 197, 66, .75) !important;
    background: rgba(5, 5, 5, .92) !important;
    color: #f5c542 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    cursor: pointer !important;
    z-index: 30 !important;

    box-shadow: 0 8px 24px rgba(0,0,0,.45) !important;
    transition: all .25s ease !important;
}

.home-carousel-arrow:hover {
    background: #f5c542 !important;
    color: #050505 !important;
    transform: translateY(-50%) scale(1.06) !important;
}

.home-carousel-prev {
    left: 16px !important;
}

.home-carousel-next {
    right: 16px !important;
}

/* Bouton VOIR PLUS vertical PC */
.new-see-all {
    flex: 0 0 92px !important;
    width: 92px !important;
    min-width: 92px !important;
    height: 330px !important;

    background: #ffcc00 !important;
    color: #000 !important;

    border-radius: 26px !important;
    border: none !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;

    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    box-shadow: 0 0 32px rgba(255, 204, 0, .28) !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
}

.new-see-all:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 0 42px rgba(255, 204, 0, .42) !important;
}

.new-see-all span {
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;

    color: #000 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

.new-see-all i {
    color: #000 !important;
    font-size: 42px !important;
    line-height: 1 !important;
    transform: rotate(-45deg) !important;
}

/* Mobile */
@media (max-width: 768px) {

    .new-products-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 26px !important;
    }

    .home-carousel-wrapper {
        width: 100% !important;
    }

    .home-carousel-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 23px !important;
        border-width: 1px !important;
    }

    .home-carousel-prev {
        left: 8px !important;
    }

    .home-carousel-next {
        right: 8px !important;
    }

    .new-see-all {
        position: static !important;

        flex: none !important;
        width: calc(100% - 34px) !important;
        max-width: 460px !important;
        min-width: 0 !important;
        height: 66px !important;

        margin: 0 auto !important;
        border-radius: 18px !important;

        flex-direction: row !important;
        gap: 16px !important;
    }

    .new-see-all span {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 15px !important;
        letter-spacing: 1px !important;
    }

    .new-see-all i {
        font-size: 30px !important;
        transform: rotate(-45deg) !important;
    }
}
@media (min-width: 1024px) {
    .mega-auto-grid-marques {
        display: grid !important;
        grid-template-rows: repeat(7, auto);
        grid-auto-flow: column;
        grid-auto-columns: 190px;
        gap: 18px 35px;
        align-items: start;
    }

    .mega-auto-grid-marques .mega-auto-link {
        display: block;
        white-space: nowrap;
    }
}
.collection-pagination-top {
    margin: 0 0 22px !important;
}

@media (max-width: 768px) {
    .collection-pagination-top {
        margin: 4px 0 16px !important;
    }
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   PAGES PUBLIQUES DYNAMIQUES
   page.php
========================================================= */

.public-page {
    position: relative;
    padding: 0 0 90px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #ffffff 250px,
            #f5f5f5 250px,
            #f5f5f5 100%
        );
    color: #1b1b1b;
}

/*
|--------------------------------------------------------------------------
| Conteneur
|--------------------------------------------------------------------------
*/

.public-page > .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| Article principal
|--------------------------------------------------------------------------
*/

.public-page__article {
    position: relative;
}

/*
|--------------------------------------------------------------------------
| En-tête de la page
|--------------------------------------------------------------------------
*/

.public-page__header {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px 20px 48px;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Fil d’Ariane
|--------------------------------------------------------------------------
*/

.public-page__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px;

    width: min(1180px, calc(100vw - 80px));
    margin: 0 auto 30px;

    color: #9a9a9a;
    font-size: 12px;
    line-height: 1.4;
}

.public-page__breadcrumb a {
    color: #777777;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-page__breadcrumb a:hover {
    color: #b88600;
}

.public-page__breadcrumb i {
    color: #c8c8c8;
    font-size: 7px;
}

.public-page__breadcrumb span {
    color: #999999;
    font-weight: 400;
}

.public-page__breadcrumb + .public-page__eyebrow {
    margin-top: 0;
}

.public-page__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #b88600;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.public-page__eyebrow::before,
.public-page__eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    margin: 0 12px;
    background: #e5b800;
}

.public-page__title {
    max-width: 850px;
    margin: 0 auto;
    color: #111111;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -1.6px;
    line-height: 1.08;
}

.public-page__separator {
    width: 72px;
    height: 4px;
    margin: 26px auto 0;
    background: #f5c542;
    border-radius: 999px;
}

/*
|--------------------------------------------------------------------------
| Carte contenant le contenu
|--------------------------------------------------------------------------
*/

.public-page__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 70px 70px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.07),
        0 3px 10px rgba(0, 0, 0, 0.03);
    color: #353535;
    font-size: 17px;
    line-height: 1.85;
}

/*
|--------------------------------------------------------------------------
| Titres du contenu
|--------------------------------------------------------------------------
*/

.public-page__content h2 {
    position: relative;
    margin: 46px 0 20px;
    padding-bottom: 14px;
    color: #161616;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.public-page__content h2:first-child {
    margin-top: 0;
}

.public-page__content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #f5c542;
    border-radius: 999px;
}

.public-page__content h3 {
    margin: 34px 0 14px;
    color: #1b1b1b;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.35;
}

.public-page__content h4 {
    margin: 28px 0 12px;
    color: #222222;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| Paragraphes et liens
|--------------------------------------------------------------------------
*/

.public-page__content p {
    margin: 0 0 20px;
}

.public-page__content p:last-child {
    margin-bottom: 0;
}

.public-page__content a {
    color: #9c7400;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(156, 116, 0, 0.38);
    text-underline-offset: 3px;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

.public-page__content a:hover {
    color: #111111;
    text-decoration-color: #111111;
}

.public-page__content strong {
    color: #1a1a1a;
    font-weight: 850;
}

/*
|--------------------------------------------------------------------------
| Listes
|--------------------------------------------------------------------------
*/

.public-page__content ul,
.public-page__content ol {
    margin: 20px 0 26px;
    padding-left: 26px;
}

.public-page__content li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.public-page__content li::marker {
    color: #c79500;
    font-weight: 900;
}

/*
|--------------------------------------------------------------------------
| Citation
|--------------------------------------------------------------------------
*/

.public-page__content blockquote {
    margin: 32px 0;
    padding: 22px 26px;
    background: #fffaf0;
    border-left: 4px solid #f5c542;
    border-radius: 0 8px 8px 0;
    color: #363636;
    font-style: italic;
}

/*
|--------------------------------------------------------------------------
| Séparateur
|--------------------------------------------------------------------------
*/

.public-page__content hr {
    height: 1px;
    margin: 42px 0;
    background: #e5e5e5;
    border: 0;
}

/*
|--------------------------------------------------------------------------
| Images
|--------------------------------------------------------------------------
*/

.public-page__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 34px auto;
    border-radius: 8px;
}

/*
|--------------------------------------------------------------------------
| Tableaux
|--------------------------------------------------------------------------
*/

.public-page__content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 15px;
}

.public-page__content th,
.public-page__content td {
    padding: 15px 16px;
    border: 1px solid #dedede;
    text-align: left;
    vertical-align: top;
}

.public-page__content th {
    background: #111111;
    color: #ffffff;
    font-weight: 800;
}

.public-page__content tbody tr:nth-child(even) {
    background: #fafafa;
}

/*
|--------------------------------------------------------------------------
| Page d’erreur
|--------------------------------------------------------------------------
*/

.public-page__error {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.public-page__error h1 {
    margin: 0 0 18px;
    color: #111111;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.12;
}

.public-page__error p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
}

.public-page__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    box-sizing: border-box;
    background: #f5c542;
    border: 1px solid #f5c542;
    border-radius: 6px;
    color: #080808;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.public-page__button:hover {
    background: #ffe06a;
    border-color: #ffe06a;
    transform: translateY(-2px);
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .public-page {
        padding-bottom: 55px;
        background:
            linear-gradient(
                180deg,
                #ffffff 0,
                #ffffff 205px,
                #f5f5f5 205px,
                #f5f5f5 100%
            );
    }

    .public-page > .container {
        width: min(100% - 24px, 1180px);
    }

    .public-page__header {
    padding: 32px 10px 34px;
}

    .public-page__eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .public-page__eyebrow::before,
    .public-page__eyebrow::after {
        width: 22px;
        margin: 0 8px;
    }

    .public-page__title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .public-page__separator {
        width: 58px;
        margin-top: 20px;
    }

    .public-page__content {
        padding: 34px 24px 40px;
        border-radius: 9px;
        font-size: 16px;
        line-height: 1.75;
    }

    .public-page__content h2 {
        margin-top: 38px;
        font-size: 25px;
    }

    .public-page__content h3 {
        margin-top: 30px;
        font-size: 20px;
    }

    .public-page__content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .public-page__error {
        padding: 70px 20px;
    }
}
.public-page__breadcrumb {
    width: 100%;
    gap: 6px;
    margin: 0 0 22px;
    padding: 0 2px;
    box-sizing: border-box;
    font-size: 11px;
}

.public-page__breadcrumb i {
    font-size: 7px;
}

/* =========================================================
   CONNEXION MOBILE — MENU LATÉRAL
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       SECTION ESPACE CLIENT
    ===================================================== */

    .mobile-drawer .mobile-auth-section {
        width: 100%;
        margin: 0;
        padding: 28px 26px 32px;
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 204, 0, 0.35);
        list-style: none;
    }

    .mobile-drawer .mobile-auth-title {
        margin: 0 0 18px;
        padding: 0;
        color: #ffcc00;
        font-family: inherit;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.3;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

    /* =====================================================
       BOUTONS PRINCIPAUX
    ===================================================== */

    .mobile-drawer .mobile-auth-btn {
        display: flex !important;
        width: 100% !important;
        min-height: 54px;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px;
        margin: 0;
        padding: 13px 18px !important;
        box-sizing: border-box;
        border-radius: 999px;
        font-family: inherit;
        font-size: 14px !important;
        font-weight: 900 !important;
        line-height: 1.2;
        letter-spacing: 0 !important;
        text-align: center !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        white-space: nowrap;
        cursor: pointer;
    }

    .mobile-drawer button.mobile-auth-login {
        appearance: none;
        background: #ffcc00;
        border: 1px solid #ffcc00;
        color: #050505;
    }

    .mobile-drawer .mobile-auth-login i {
        color: #050505;
    }

    .mobile-drawer .mobile-auth-login-arrow {
        margin-left: 4px;
        transition: transform 0.2s ease;
    }

    .mobile-drawer .mobile-auth-login.is-open .mobile-auth-login-arrow {
        transform: rotate(180deg);
    }

    /* =====================================================
       PANNEAU DE CONNEXION
    ===================================================== */

    .mobile-drawer .mobile-login-panel {
        display: block;
        width: 100%;
        margin: 24px 0 0;
        padding: 24px;
        box-sizing: border-box;
        overflow: hidden;
        background: #111111;
        border: 1px solid #303030;
        border-radius: 10px;
    }

    .mobile-drawer .mobile-login-panel[hidden] {
        display: none !important;
    }

    .mobile-drawer .mobile-login-form {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* =====================================================
       CHAMPS
    ===================================================== */

    .mobile-drawer .mobile-login-field {
        display: block;
        width: 100%;
        margin: 0 0 18px;
        padding: 0;
    }

    .mobile-drawer .mobile-login-field label {
        display: block !important;
        width: 100%;
        margin: 0 0 8px !important;
        padding: 0 !important;
        color: #ffffff !important;
        font-family: inherit;
        font-size: 12px !important;
        font-weight: 800 !important;
        line-height: 1.3;
        letter-spacing: 0 !important;
        text-transform: none !important;
    }

    .mobile-drawer .mobile-login-field input {
        display: block;
        width: 100%;
        min-width: 0;
        min-height: 48px;
        margin: 0;
        padding: 11px 14px;
        box-sizing: border-box;
        background: #ffffff;
        border: 1px solid #d8d8d8;
        border-radius: 6px;
        color: #111111;
        font-family: inherit;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
        outline: none;
    }

    .mobile-drawer .mobile-login-field input::placeholder {
        color: #777777;
        opacity: 1;
    }

    .mobile-drawer .mobile-login-field input:focus {
        border-color: #ffcc00;
        box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.12);
    }

    /* =====================================================
       SE SOUVENIR / MOT DE PASSE OUBLIÉ
    ===================================================== */

    .mobile-drawer .mobile-login-options {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 26px;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        margin: 4px 0 22px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .mobile-drawer .mobile-login-remember {
        display: flex !important;
        flex: 1 1 50% !important;
        width: 50% !important;
        min-width: 0 !important;
        min-height: 26px;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 0 12px 0 0 !important;
        box-sizing: border-box !important;
        color: #ffffff !important;
        cursor: pointer;
    }

    .mobile-drawer .mobile-login-remember input {
        display: block !important;
        flex: 0 0 16px !important;
        width: 16px !important;
        min-width: 16px !important;
        max-width: 16px !important;
        height: 16px !important;
        min-height: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
        accent-color: #ffcc00;
    }

    .mobile-drawer .mobile-login-remember-text {
        display: block !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #ffffff !important;
        font-family: inherit !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        text-decoration: none !important;
        text-transform: none !important;
        white-space: nowrap !important;
    }

    .mobile-drawer .mobile-login-divider {
        display: block !important;
        flex: 0 0 1px !important;
        width: 1px !important;
        height: 24px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.25) !important;
    }

    .mobile-drawer
    .mobile-login-options
    a.mobile-login-forgot-link {
        display: flex !important;
        flex: 1 1 50% !important;
        width: 50% !important;
        min-width: 0 !important;
        min-height: 26px !important;
        align-items: center !important;
        justify-content: flex-end !important;
        position: static !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 0 0 12px !important;
        box-sizing: border-box !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #ffffff !important;
        font-family: inherit !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        text-align: right !important;
        text-decoration: none !important;
        text-transform: none !important;
        white-space: nowrap !important;
    }

    .mobile-drawer
    .mobile-login-options
    a.mobile-login-forgot-link:hover,
    .mobile-drawer
    .mobile-login-options
    a.mobile-login-forgot-link:focus {
        background: transparent !important;
        color: #ffcc00 !important;
    }

    /* =====================================================
       MESSAGE D’ERREUR
    ===================================================== */

    .mobile-drawer .mobile-login-message {
        display: none;
        width: 100%;
        margin: 0 0 16px;
        padding: 11px 12px;
        box-sizing: border-box;
        background: rgba(255, 82, 82, 0.1);
        border-left: 3px solid #ff6262;
        color: #ff8b8b;
        font-size: 12px;
        line-height: 1.45;
    }

    .mobile-drawer .mobile-login-message.is-visible {
        display: block;
    }

    /* =====================================================
       BOUTON DE VALIDATION
    ===================================================== */

    .mobile-drawer .mobile-login-submit {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 12px 16px;
        box-sizing: border-box;
        background: #ffcc00;
        border: 1px solid #ffcc00;
        border-radius: 6px;
        color: #050505;
        font-family: inherit;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: 0;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
    }

    .mobile-drawer .mobile-login-submit:hover,
    .mobile-drawer .mobile-login-submit:focus {
        background: #ffe066;
        border-color: #ffe066;
    }

    .mobile-drawer .mobile-login-submit:disabled {
        opacity: 0.65;
        cursor: wait;
    }

    /* =====================================================
       CRÉER UN COMPTE
    ===================================================== */

    .mobile-drawer a.mobile-auth-register {
        margin-top: 14px;
        background: transparent !important;
        border: 1px solid #ffcc00 !important;
        color: #ffffff !important;
    }

    .mobile-drawer a.mobile-auth-register i {
        color: #ffcc00 !important;
    }

    /* =====================================================
       CLIENT CONNECTÉ
    ===================================================== */

    .mobile-drawer .mobile-auth-profile,
    .mobile-drawer .mobile-auth-orders {
        margin-bottom: 12px;
        background: #ffcc00;
        border: 1px solid #ffcc00;
        color: #050505;
    }

    .mobile-drawer .mobile-auth-logout {
        background: transparent;
        border: 1px solid #ff7373;
        color: #ff7373;
    }
}

/* =========================================================
   PETITS ÉCRANS
========================================================= */

@media (max-width: 390px) {

    .mobile-drawer .mobile-auth-section {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mobile-drawer .mobile-login-panel {
        padding: 18px;
    }

    .mobile-drawer .mobile-login-options {
        gap: 0 !important;
    }

    .mobile-drawer .mobile-login-remember {
        padding-right: 8px !important;
    }

    .mobile-drawer
    .mobile-login-options
    a.mobile-login-forgot-link {
        padding-left: 8px !important;
    }

    .mobile-drawer .mobile-login-remember-text,
    .mobile-drawer
    .mobile-login-options
    a.mobile-login-forgot-link {
        font-size: 9px !important;
    }
}

/* =========================================================
   VÉRIFICATION DE MAJORITÉ — PAV MDG
========================================================= */

html.pav-age-gate-open,
body.pav-age-gate-open {
    overflow: hidden;
}

.pav-age-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.pav-age-gate.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.pav-age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pav-age-gate__card {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 38px 36px 32px;
    box-sizing: border-box;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 204, 0, 0.12),
            transparent 42%
        ),
        #0b0b0b;
    border: 1px solid rgba(255, 204, 0, 0.65);
    border-radius: 18px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

.pav-age-gate__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.pav-age-gate__logo img {
    display: block;
    width: 170px;
    max-width: 58%;
    height: auto;
    object-fit: contain;
}

.pav-age-gate__kicker {
    display: block;
    margin-bottom: 12px;
    color: #ffcc00;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pav-age-gate__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 4vw, 34px);
    font-weight: 900;
    line-height: 1.15;
}

.pav-age-gate__description {
    max-width: 420px;
    margin: 18px auto 0;
    color: #c9c9c9;
    font-size: 15px;
    line-height: 1.65;
}

.pav-age-gate__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}

.pav-age-gate__button {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    box-sizing: border-box;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.pav-age-gate__button:hover {
    transform: translateY(-1px);
}

.pav-age-gate__button--accept {
    background: #ffcc00;
    border: 1px solid #ffcc00;
    color: #080808;
}

.pav-age-gate__button--accept:hover {
    background: #ffe166;
    border-color: #ffe166;
}

.pav-age-gate__button--refuse {
    background: transparent;
    border: 1px solid #3d3d3d;
    color: #d5d5d5;
}

.pav-age-gate__button--refuse:hover {
    border-color: #767676;
    color: #ffffff;
}

.pav-age-gate__button:focus-visible {
    outline: 3px solid rgba(255, 204, 0, 0.35);
    outline-offset: 3px;
}

.pav-age-gate__notice {
    margin: 22px 0 0;
    color: #777777;
    font-size: 11px;
    line-height: 1.55;
}

/* =========================================================
   VÉRIFICATION DE MAJORITÉ — MOBILE
========================================================= */

@media (max-width: 600px) {
    .pav-age-gate {
        padding: 16px;
        align-items: center;
    }

    .pav-age-gate__card {
        width: 100%;
        padding: 30px 22px 24px;
        border-radius: 14px;
    }

    .pav-age-gate__logo img {
        width: 145px;
        max-width: 65%;
    }

    .pav-age-gate__title {
        font-size: 25px;
    }

    .pav-age-gate__description {
        font-size: 14px;
    }

    .pav-age-gate__button {
        min-height: 50px;
        font-size: 12px;
    }
}

/* =========================================================
   PAGE ACCÈS REFUSÉ — PAV MDG
========================================================= */

.age-refused-page {
    min-height: 72vh;
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(255, 204, 0, 0.10),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #080808 0%,
            #111111 100%
        );
}

.age-refused-section {
    display: flex;
    min-height: 72vh;
    align-items: center;
    justify-content: center;
    padding: 70px 24px;
    box-sizing: border-box;
}

.age-refused-card {
    width: min(100%, 680px);
    padding: 52px 48px;
    box-sizing: border-box;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 204, 0, 0.08),
            transparent 42%
        ),
        #0c0c0c;
    border: 1px solid rgba(255, 204, 0, 0.55);
    border-radius: 20px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.age-refused-icon {
    display: inline-flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 3px solid #ffcc00;
    border-radius: 50%;
    color: #ffcc00;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.age-refused-kicker {
    display: block;
    margin-bottom: 13px;
    color: #ffcc00;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.age-refused-title {
    max-width: 560px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.12;
}

.age-refused-description {
    max-width: 540px;
    margin: 21px auto 0;
    color: #c7c7c7;
    font-size: 15px;
    line-height: 1.7;
}

.age-refused-description + .age-refused-description {
    margin-top: 11px;
}

.age-refused-warning {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 30px;
    padding: 17px 19px;
    text-align: left;
    background: rgba(255, 204, 0, 0.07);
    border: 1px solid rgba(255, 204, 0, 0.24);
    border-radius: 10px;
}

.age-refused-warning i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #ffcc00;
    font-size: 18px;
}

.age-refused-warning p {
    margin: 0;
    color: #d5d5d5;
    font-size: 13px;
    line-height: 1.55;
}

.age-refused-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 32px;
    padding: 14px 30px;
    box-sizing: border-box;
    background: #ffcc00;
    border: 1px solid #ffcc00;
    border-radius: 999px;
    color: #080808;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.age-refused-button:hover {
    background: #ffe166;
    border-color: #ffe166;
    color: #080808;
    transform: translateY(-1px);
}

.age-refused-button:focus-visible {
    outline: 3px solid rgba(255, 204, 0, 0.35);
    outline-offset: 4px;
}

/* =========================================================
   PAGE ACCÈS REFUSÉ — MOBILE
========================================================= */

@media (max-width: 600px) {
    .age-refused-section {
        min-height: 65vh;
        padding: 42px 16px;
    }

    .age-refused-card {
        padding: 38px 22px 32px;
        border-radius: 15px;
    }

    .age-refused-icon {
        width: 74px;
        height: 74px;
        margin-bottom: 21px;
        font-size: 24px;
    }

    .age-refused-title {
        font-size: 30px;
    }

    .age-refused-description {
        font-size: 14px;
    }

    .age-refused-warning {
        padding: 15px;
    }

    .age-refused-button {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
        font-size: 12px;
    }
}

/* =========================================================
   RÉCUPÉRATION DU MOT DE PASSE — PAV MDG
========================================================= */

.password-recovery-page {
    min-height: 72vh;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(245, 197, 66, 0.1),
            transparent 36%
        ),
        #050505;
}

.password-recovery-section {
    display: flex;
    min-height: 72vh;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    box-sizing: border-box;
}

.password-recovery-card {
    width: min(100%, 540px);
    padding: 45px 42px;
    box-sizing: border-box;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(245, 197, 66, 0.08),
            transparent 38%
        ),
        #0b0b0b;
    border: 1px solid rgba(245, 197, 66, 0.42);
    border-radius: 15px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.password-recovery-icon {
    display: flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(245, 197, 66, 0.65);
    border-radius: 50%;
    color: #f5c542;
    font-size: 24px;
}

.password-recovery-kicker {
    display: block;
    margin-bottom: 10px;
    color: #f5c542;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.password-recovery-title {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.password-recovery-intro {
    max-width: 430px;
    margin: 16px auto 28px;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.password-recovery-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 22px;
    padding: 14px 15px;
    background: rgba(255, 82, 82, 0.08);
    border-left: 3px solid #ff6262;
    border-radius: 5px;
    color: #ff9292;
}

.password-recovery-alert > i {
    flex: 0 0 auto;
    margin-top: 3px;
}

.password-recovery-alert p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.password-recovery-alert p + p {
    margin-top: 5px;
}

.password-recovery-field {
    margin-bottom: 17px;
}

.password-recovery-field label {
    display: block;
    margin-bottom: 7px;
    color: #eeeeee;
    font-size: 13px;
    font-weight: 800;
}

.password-recovery-field input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    box-sizing: border-box;
    background: #151515;
    border: 1px solid #353535;
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.password-recovery-field input::placeholder {
    color: #777777;
}

.password-recovery-field input:focus {
    border-color: #f5c542;
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.08);
}

.password-recovery-help {
    display: block;
    margin-top: 7px;
    color: #8b8b8b;
    font-size: 11px;
    line-height: 1.4;
}

.password-recovery-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 7px;
    padding: 13px 17px;
    background: #f5c542;
    border: 1px solid #f5c542;
    border-radius: 6px;
    color: #050505;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.password-recovery-submit:hover {
    background: #ffe06a;
    border-color: #ffe06a;
}

.password-recovery-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 22px;
    color: #bdbdbd;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.password-recovery-back:hover {
    color: #f5c542;
}

/* =========================================================
   RÉCUPÉRATION DU MOT DE PASSE — MOBILE
========================================================= */

@media (max-width: 600px) {
    .password-recovery-section {
        min-height: 65vh;
        padding: 42px 14px;
    }

    .password-recovery-card {
        padding: 34px 20px;
        border-radius: 12px;
    }

    .password-recovery-title {
        font-size: 29px;
    }

    .password-recovery-intro {
        font-size: 13px;
    }
}

/* =========================================================
   NOUVEAU MOT DE PASSE — PAV MDG
========================================================= */

.password-reset-page {
    min-height: 72vh;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(245, 197, 66, 0.1),
            transparent 36%
        ),
        #050505;
}

.password-reset-section {
    display: flex;
    min-height: 72vh;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    box-sizing: border-box;
}

.password-reset-card {
    width: min(100%, 560px);
    padding: 45px 42px;
    box-sizing: border-box;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(245, 197, 66, 0.08),
            transparent 38%
        ),
        #0b0b0b;
    border: 1px solid rgba(245, 197, 66, 0.42);
    border-radius: 15px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.password-reset-icon {
    display: flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(245, 197, 66, 0.65);
    border-radius: 50%;
    color: #f5c542;
    font-size: 24px;
}

.password-reset-kicker {
    display: block;
    margin-bottom: 10px;
    color: #f5c542;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.password-reset-title {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
}

.password-reset-intro {
    max-width: 460px;
    margin: 16px auto 20px;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
}

.password-reset-intro strong {
    color: #ffffff;
}

.password-reset-expiration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #999999;
    font-size: 11px;
}

.password-reset-expiration i {
    color: #f5c542;
}

.password-reset-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 22px;
    padding: 14px 15px;
    background: rgba(255, 82, 82, 0.08);
    border-left: 3px solid #ff6262;
    border-radius: 5px;
    color: #ff9292;
}

.password-reset-alert > i {
    flex: 0 0 auto;
    margin-top: 3px;
}

.password-reset-alert p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.password-reset-alert p + p {
    margin-top: 5px;
}

.password-reset-field {
    margin-bottom: 17px;
}

.password-reset-field label {
    display: block;
    margin-bottom: 7px;
    color: #eeeeee;
    font-size: 13px;
    font-weight: 800;
}

.password-reset-input-wrapper {
    position: relative;
}

.password-reset-input-wrapper input {
    width: 100%;
    min-height: 48px;
    padding: 11px 48px 11px 13px;
    box-sizing: border-box;
    background: #151515;
    border: 1px solid #353535;
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.password-reset-input-wrapper input::placeholder {
    color: #777777;
}

.password-reset-input-wrapper input:focus {
    border-color: #f5c542;
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.08);
}

.password-reset-toggle {
    position: absolute;
    top: 50%;
    right: 3px;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    color: #999999;
    cursor: pointer;
    transform: translateY(-50%);
}

.password-reset-toggle:hover {
    color: #f5c542;
}

.password-reset-toggle:focus-visible {
    outline: 2px solid #f5c542;
    outline-offset: -3px;
    border-radius: 4px;
}

.password-reset-help {
    display: block;
    margin-top: -5px;
    color: #8b8b8b;
    font-size: 11px;
    line-height: 1.4;
}

.password-reset-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 24px;
    padding: 13px 17px;
    background: #f5c542;
    border: 1px solid #f5c542;
    border-radius: 6px;
    color: #050505;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.password-reset-submit:hover {
    background: #ffe06a;
    border-color: #ffe06a;
}

.password-reset-cancel {
    display: block;
    margin-top: 21px;
    color: #a9a9a9;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.password-reset-cancel:hover {
    color: #f5c542;
}

/* =========================================================
   NOUVEAU MOT DE PASSE — MOBILE
========================================================= */

@media (max-width: 600px) {
    .password-reset-section {
        min-height: 65vh;
        padding: 42px 14px;
    }

    .password-reset-card {
        padding: 34px 20px;
        border-radius: 12px;
    }

    .password-reset-title {
        font-size: 27px;
    }

    .password-reset-intro {
        font-size: 13px;
    }
}