        /* Reset et Variables CSS pour Dream On Header uniquement */
        .dot-header-wrapper {
            --dot-header-height: 86px;
            --dot-header-bg: linear-gradient(white, transparent);
            --dot-header-blur: 20px;
            --dot-text-color: #332877;
            --dot-text-color-hover: #26CDBB;
            --dot-border-color: rgba(255, 255, 255, 0.3);
            --dot-shadow-color: rgba(0, 0, 0, 0.0);
            --dot-mobile-menu-bg: transparent;
		}

        /* Header Principal en superposition */
        .dot-header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--dot-header-height);
            background: var(--dot-header-bg);
            z-index: 9999;
            transition: all 0.3s ease;
        }

        /* Spacer pour compenser le header fixed */
        .dot-header-spacer {
            height: var(--dot-header-height);
        }

        /* Container */
        .dot-header-container {
            max-width: 1550px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo avec icône */
        .dot-header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            height: 50px;
            z-index: 10002;
            text-decoration: none;
        }

        .dot-header-logo-icon {
            width: 32px;
            height: 32px;
            color: var(--dot-text-color);
            transition: transform 0.3s ease;
        }

        .dot-header-logo img {
            height: 100%;
            width: 128px;
            transition: transform 0.3s ease;
        }

        .dot-header-logo:hover .dot-header-logo-icon,
        .dot-header-logo:hover img {
            transform: scale(1.05);
        }

        /* Navigation Desktop */
        .dot-header-nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .dot-header-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 30px;
        }
		.dot-header-menu {
			backdrop-filter: blur(var(--dot-header-blur));
            -webkit-backdrop-filter: blur(var(--dot-header-blur));
			padding: 8px 16px;
			background: rgba(255, 255, 255, 0.1);
			border: 1px solid var(--dot-border-color);
			border-radius: 20px;
			transition: all 0.3s ease;

		}
        .dot-header-menu li {
            position: relative;
            margin: 0;
            padding: 0;
        }

        .dot-header-menu a {
            color: var(--dot-text-color);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
            display: block;
        }

        .dot-header-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--dot-text-color-hover);
            transition: width 0.3s ease;
        }

        .dot-header-menu a:hover {
            color: var(--dot-text-color-hover);
        }

        .dot-header-menu a:hover::after {
            width: 100%;
        }
		/* Style pour le lien actif du menu */
		.dot-header-menu .current-menu-item > a,
		.dot-header-menu .current_page_item > a {
	    color: var(--dot-text-color-hover);
	    font-weight: 600;
		}


        /* Sélecteur de langue */
        .dot-header-lang {
						backdrop-filter: blur(var(--dot-header-blur));
            -webkit-backdrop-filter: blur(var(--dot-header-blur));
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--dot-border-color);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: var(--dot-text-color);
        }

        .dot-header-lang:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .dot-header-arrow {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .dot-header-lang:hover .dot-header-arrow {
            transform: rotate(180deg);
        }

        /* Bouton Login */
        .dot-header-login {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #332877;
            border: none;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            z-index: 10002;
        }

        .dot-header-login:hover {
            background: #5B36A0;
			color:white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .dot-header-login .lucide {
            width: 18px;
            height: 18px;
        }

        /* Menu Mobile Toggle */
        .dot-header-mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 10003;
            background: none;
            border: none;
            padding: 0;
        }
		.dot-header-mobile-toggle:hover,.dot-header-mobile-toggle:focus {
			background: transparent;
			border: none;
		}
        .dot-header-mobile-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--dot-text-color);
            margin: 3px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* État actif du toggle */
        .dot-header-mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .dot-header-mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .dot-header-mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {

			
            .dot-header-wrapper {
                --dot-header-height: 60px;
			backdrop-filter: blur(var(--dot-header-blur));
            -webkit-backdrop-filter: blur(var(--dot-header-blur));
            }

            .dot-header-container {
                padding: 0 15px;
            }

            .dot-header-mobile-toggle {
                display: flex;
            }

            .dot-header-nav {
                position: fixed;
                top: var(--dot-header-height);
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.98); /* ou blanc pur */
    			height: 100vh;
    			z-index: 9999;
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 0px;
                gap: 0px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }

            .dot-header-nav.active {
                transform: translateX(0);
            }

            .dot-header-menu {
                flex-direction: column;
                width: 100%;
                gap: 20px;
				
            }
			.dot-header-menu {
				background:#FEFEFF;
				padding:20px;
				border-radius:0px;
			}

            .dot-header-menu li {
                width: 100%;
            }

            .dot-header-menu a {
                display: block;
                padding: 15px 0;
                font-size: 18px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .dot-header-menu a::after {
                display: none;
            }

            .dot-header-lang {
                display: flex !important;
                align-items: center;
				width:100%;
				border-radius:0px;
				background:white;
            }

            .dot-header-login {
                display: none;
				
            }
			



            /* Bouton login dans le menu mobile */
            .dot-header-login-mobile {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #332877;
            border: none;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            z-index: 10002;
            }

            .dot-header-login-mobile .lucide {
                width: 20px;
                height: 20px;
            }

            .dot-header-nav::after {
                content: '';
                display: block;
                width: 100%;
                height: 1px;
                background: rgba(0, 0, 0, 0.1);
                margin: 20px 0;
            }
			.dot-header-cta-wrapper {
    		display: grid;
    		grid-template-columns: 1fr 1fr;
    		gap: 10px;
    		width: 100%;
    		padding: 20px;
			background: #fefefe;
			}

        }

        /* Tablette */
        @media (min-width: 769px) and (max-width: 1024px) {
            .dot-header-container {
                padding: 0 30px;
            }

            .dot-header-menu {
                gap: 20px;
            }

            .dot-header-nav {
                gap: 20px;
            }
        }

        /* Animation au scroll */
        .dot-header-wrapper.scrolled {
            background: var(--dot-header-bg);
            box-shadow: 0 4px 30px var(--dot-shadow-color);
        }

        /* Cacher le login mobile sur desktop */
        @media (min-width: 769px) {
            .dot-header-login-mobile {
                display: none !important;
            }
        }