    /* ========== FLP STYLE MOBILE MENU ========== */

    /* Mobile Header - Style FLP */
    .site-header-mobile {
        display: flex !important;
    }

    @media (min-width: 1024px) {
        .site-header-mobile,
        .flp-search-panel {
            display: none !important;
        }
    }

    .flp-hamburger {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .flp-logo {
        text-decoration: none;
    }

    /* ========== MOBILE SEARCH PANEL ========== */
    .flp-search-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 10001;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .flp-search-panel.is-open {
        transform: translateY(0);
    }

    .flp-search-header {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        gap: 12px;
        border-bottom: 1px solid #eee;
    }

    .flp-search-form {
        display: flex;
        align-items: center;
        flex: 1;
        background: #f5f5f5;
        border-radius: 25px;
        padding: 10px 16px;
        gap: 10px;
    }

    .flp-search-form input {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 16px;
        outline: none;
        color: #333;
    }

    .flp-search-form input::placeholder {
        color: #999;
    }

    .flp-search-submit {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }

    .flp-search-close-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .flp-search-suggestions {
        padding: 16px 20px;
        background: #fafafa;
    }

    .flp-search-hint {
        font-size: 12px;
        color: #666;
        margin: 0 0 12px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .flp-search-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .flp-search-tags a {
        display: inline-block;
        padding: 8px 16px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 20px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
    }

    .flp-search-tags a:hover {
        background: #006241;
        border-color: #006241;
        color: #fff;
    }

    /* Mobile Menu Panel - Style FLP */
    .flp-menu-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

    .flp-menu-panel.is-open {
        transform: translateX(0);
    }

    .flp-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .flp-menu-close-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .flp-menu-nav {
        padding: 20px 0;
    }

    .flp-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .flp-menu-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .flp-menu-list a {
        display: block;
        padding: 16px 24px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: background 0.2s;
    }

    .flp-menu-list a:hover {
        background: #f9f9f9;
        color: #006241;
    }

    .flp-menu-highlight {
        color: #006241 !important;
        font-weight: 600 !important;
    }

    /* Sous-menus accordéon style FLP */
    .flp-has-submenu > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .flp-submenu-toggle {
        cursor: pointer;
    }

    .flp-arrow {
        transition: transform 0.3s ease;
        color: #999;
    }

    .flp-has-submenu.is-open > a .flp-arrow {
        transform: rotate(90deg);
        color: #006241;
    }

    .flp-submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        background: #f9f9f9;
        transition: max-height 0.3s ease, overflow 0.3s ease;
    }

    .flp-has-submenu.is-open > .flp-submenu {
        max-height: 280px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Custom scrollbar for submenus */
    .flp-submenu::-webkit-scrollbar {
        width: 4px;
    }

    .flp-submenu::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 4px;
    }

    .flp-submenu::-webkit-scrollbar-thumb {
        background: #006241;
        border-radius: 4px;
    }

    .flp-submenu::-webkit-scrollbar-thumb:hover {
        background: #004d33;
    }

    /* Firefox scrollbar */
    .flp-submenu {
        scrollbar-width: thin;
        scrollbar-color: #006241 #e5e7eb;
    }

    .flp-submenu li {
        border-bottom: 1px solid #eee;
    }

    .flp-submenu li:last-child {
        border-bottom: none;
    }

    .flp-submenu a {
        padding: 14px 24px 14px 40px !important;
        font-size: 15px !important;
        color: #555 !important;
    }

    .flp-submenu a:hover {
        background: #f0f0f0 !important;
        color: #006241 !important;
    }

    /* Overlay */
    .flp-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .flp-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    /* Body lock when menu open */
    body.flp-menu-open {
        overflow: hidden;
    }

    /* Desktop Header */
    .site-header {
        contain: layout style;
        will-change: transform;
    }

    /* Desktop Header Light Theme (10% gray) */
    .site-header .main-navigation a {
        color: #333 !important;
        transition: color 0.3s ease;
    }
    .site-header .main-navigation a:hover {
        color: #006241 !important;
    }
    .site-header .main-navigation .menu-item-has-children > a::after {
        border-color: #333 transparent transparent transparent;
    }
    .site-header .main-navigation .menu-item-has-children:hover > a::after {
        border-color: #006241 transparent transparent transparent;
    }
    /* Dropdown menu on light header */
    .site-header .main-navigation .sub-menu {
        background: #f5f5f5;
        border: 1px solid #ddd;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .site-header .main-navigation .sub-menu a {
        color: #444 !important;
    }
    .site-header .main-navigation .sub-menu a:hover {
        color: #006241 !important;
        background: #eee;
    }

    /* Marketing Expert v7.0 - Top Bar */
    .top-bar__promo-flash {
        background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
        color: #1e5a3e;
        padding: 0.125rem 0.75rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.8rem;
        animation: pulse-promo 2s ease-in-out infinite;
    }

    @keyframes pulse-promo {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }

    .top-bar__trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        color: #22c55e;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .header-cta-pulse {
        position: relative;
        overflow: hidden;
    }

    .header-cta-pulse::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
        transform: translateX(-100%);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% { transform: translate3d(-100%, 0, 0); }
        100% { transform: translate3d(100%, 0, 0); }
    }

    .header-cta-icon {
        margin-right: 0.25rem;
    }

    /* Padding for mobile content */
    @media (max-width: 1023px) {
        body {
            padding-top: 88px !important; /* 28px top bar + 60px header */
        }
        .top-bar {
            display: none !important;
        }
    }

    /* ========== MOBILE TOP BAR (Scrolling Banner) ========== */
    .mobile-top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 28px;
        background: linear-gradient(90deg, #1e5a3e 0%, #006241 50%, #1e5a3e 100%);
        z-index: 51;
        overflow: hidden;
    }

    .mobile-top-bar__track {
        display: flex;
        width: max-content;
        animation: mobile-marquee 20s linear infinite;
    }

    @keyframes mobile-marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .mobile-top-bar__content {
        display: flex;
        align-items: center;
        gap: 0;
        white-space: nowrap;
    }

    .mobile-top-bar__item {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 0 20px;
        height: 28px;
        font-size: 11px;
        font-weight: 500;
        color: #fff;
        border-right: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-top-bar__item svg {
        width: 12px;
        height: 12px;
        color: #fbbf24;
    }

    .mobile-top-bar__item strong {
        color: #fbbf24;
    }

    .mobile-top-bar__promo {
        background: rgba(251, 191, 36, 0.2);
        color: #fbbf24 !important;
        font-weight: 600;
    }

    @media (min-width: 1024px) {
        .mobile-top-bar {
            display: none !important;
        }
    }
