 :root {
            /* Palette de couleurs principale */
            --primary-color: #7ceded;
            --secondary-color: #25303b;
            --tertiary-color: #6d3dc5;
            --accent-color: #a9b6c3;
            --dark-bg: #0E0E1A;
            --light-text: #F4F4F4;
            --gradient-bg: linear-gradient(90deg, #46280f, #5c6a79, #a9b6c3, #dce6ef, #6dcde0, #2f2932, #2f3540);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--gradient-bg);
            color: var(--light-text);
            overflow-x: hidden;
        }
        

        /* Navigation Styles - Z-index corrigé */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999; /* Z-index élevé pour la navbar */
            background: rgba(14, 14, 26, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(124, 237, 237, 0.2);
            transition: all 0.3s ease;
        }

        .nav-container.scrolled {
            background: rgba(14, 14, 26, 0.98);
            box-shadow: 0 4px 20px rgba(124, 237, 237, 0.1);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-container {
            flex-shrink: 0;
        }

        .logo-img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(124, 237, 237, 0.3));
            transition: all 0.3s ease;
        }

        .logo-img:hover {
            filter: drop-shadow(0 0 15px rgba(124, 237, 237, 0.5));
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--light-text);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link:hover,
        .nav-link.active {
            color: white;
            background: rgba(105, 236, 236, 0.1);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.mobile-menu.active { left: 0; }

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s, transform 0.2s;
    padding: 8px;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    color: var(--primary-color, #007bff);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.mobile-nav-item {
    margin: 2px 15px;
    border-radius: 12px;
    overflow: hidden;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(var(--primary-color-rgb, 0, 123, 255), 0.08);
    color: var(--primary-color, #007bff);
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: var(--primary-color, #007bff);
    color: white;
    font-weight: 600;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Burger menu */
.burger {
    display: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.burger:hover { background: rgba(0, 0, 0, 0.05); }

.burger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    margin: 6px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
}

.burger.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .burger { display: block; }
    .nav-menu { display: none; }
    .cart-icon-container {
        margin-left: auto;
        margin-right: 15px;
    }
}
        /* Hero Section - Z-index bas */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--gradient-bg);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: 1; /* Z-index bas pour la section hero */
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2; /* Z-index bas pour les éléments flottants */
        }

        .floating-element {
            position: absolute;
            color: rgba(124, 237, 237, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 3; /* Z-index bas pour le contenu */
            max-width: 800px;
            padding: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(124, 237, 237, 0.1);
            border: 1px solid rgba(124, 237, 237, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary-color), #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(244, 244, 244, 0.8);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary-custom, .btn-secondary-custom {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid;
        }

        .btn-primary-custom {
            background: var(--primary-color);
            color: var(--dark-bg);
            border-color: var(--primary-color);
        }

        .btn-primary-custom:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 237, 237, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--light-text);
            border-color: rgba(244, 244, 244, 0.3);
        }

        .btn-secondary-custom:hover {
            background: rgba(244, 244, 244, 0.1);
            border-color: var(--light-text);
            transform: translateY(-2px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3; /* Z-index bas */
            animation: bounce 2s infinite;
        }

        .scroll-indicator a {
            color: var(--primary-color);
            text-decoration: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .hero-content {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-content {
                padding: 1rem;
            }
            
            .mobile-menu {
                width: 100%;
                right: -100%;
            }
        }




                /* Design 1: Geometric Split Hero avec Carousel */
        .hero-geometric {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
        }

        .geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 80%, var(--tertiary-color) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--primary-color) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--accent-color) 0%, transparent 50%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            justify-content: center;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            gap: 4rem;
        }

        .hero-text-section {
            z-index: 2;
            position: relative;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(45deg, var(--tertiary-color), var(--primary-color));
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: slideInLeft 1s ease;
        }

        .hero-main-title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--light-text), var(--primary-color), var(--tertiary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease 0.2s both;
        }

        .hero-description {
            font-size: 1.4rem;
            color: var(--gray-text);
            margin-bottom: 3rem;
            line-height: 1.6;
            animation: slideInLeft 1s ease 0.4s both;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            animation: slideInLeft 1s ease 0.6s both;
            justify-content: center;
        }

        .btn-primary {
            padding: 1.2rem 3rem;
            background: linear-gradient(45deg, var(--tertiary-color), var(--primary-color));
            color: var(--light-text);
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(109, 61, 197, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(109, 61, 197, 0.5);
        }

        .btn-secondary {
            padding: 1.2rem 3rem;
            background: transparent;
            color: var(--light-text);
            text-decoration: none;
            border: 2px solid var(--primary-color);
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(124, 237, 237, 0.3);
        }

        /* Carousel Section */
        .hero-image-section {
            position: relative;
            height: 80%;
            animation: slideInRight 1s ease 0.3s both;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(124, 237, 237, 0.3);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
              border: 1px solid rgb(121, 43, 33);
        }

        .carousel-slide.active {
            opacity: 1;
        }


        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(124, 237, 237, 0.1), rgba(109, 61, 197, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .carousel-container:hover .carousel-overlay {
            opacity: 1;
        }

        .carousel-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 80px rgba(124, 237, 237, 0.4);
        }

        .image-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
            opacity: 0.15;
            filter: blur(50px);
            animation: pulse 4s ease-in-out infinite;
            z-index: -1;
        }

        /* Indicateurs du carousel */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .carousel-indicator.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
            z-index: 10;
        }

        .scroll-indicator svg {
            width: 2rem;
            height: 2rem;
            color: var(--primary-color);
            animation: bounce 2s infinite;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-main-title {
                font-size: 3.5rem;
            }
            
            .hero-grid {
                gap: 2rem;
                padding: 0 1rem;
            }

            .carousel-container {
                max-width: 400px;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-main-title {
                font-size: 2.8rem;
            }

            .hero-description {
                font-size: 1.2rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .carousel-container {
                max-width: 350px;
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-main-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .carousel-container {
                max-width: 300px;
                height: 250px;
            }
        }