
        :root {
            --primary-gradient: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            --secondary-gradient: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #fff9fb;
            --accent-pink: #ff9a9e;
            --accent-purple: #a18cd1;
            --transition-speed: 0.4s;
            --border-radius: 20px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a{
          text-decoration: none;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Header */
        header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-purple);
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--accent-pink);
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 15px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color var(--transition-speed);
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent-purple);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width var(--transition-speed);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
        }
        
        .cart-btn {
            position: relative;
            background: none;
            border: none;
            font-size: 1.5rem;
            margin-right: 20px;
            cursor: pointer;
            color: var(--text-dark);
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -8px;
            background: var(--accent-pink);
            color: white;
            font-size: 0.7rem;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .whatsapp-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: transform var(--transition-speed);
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
        }
        
        .whatsapp-btn i {
            margin-right: 8px;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
        }
        
        /* Hero Section */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            background: var(--primary-gradient);
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.1)" points="0,100 100,0 100,100"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-text {
            max-width: 600px;
            color: var(--text-dark);
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 30px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-speed);
            z-index: 1;
            text-decoration: none;
            text-align: center;
            width: max-content;
        }
        
        .btn-primary {
            background: var(--secondary-gradient);
            color: var(--text-light);
            border: none;
            cursor: pointer;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }
        
        .hero-image {
            max-width: 50%;
            transform: translateY(20px);
            animation: float 5s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .hero-image img {
            max-width: 100%;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
        }
        
        /* Sections communes */
        section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--accent-purple);
            margin-bottom: 15px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        /* Catégories */
        .categories {
            background: var(--bg-light);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .category-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition-speed);
            text-align: center;
            padding: 40px 20px;
            display: flex;
            align-items: center;
            flex-direction: column;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
        }
                
        .category-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            margin: 0 auto 20px;
        }
        
        .category-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .category-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            flex: 1;
        }
        .category-card p {
            margin-bottom: 20px;
            color: #666;
            flex: 1;
        }
        
        .category-link {
            color: var(--accent-purple);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .category-link i {
            margin-left: 5px;
            transition: transform var(--transition-speed);
        }
        
        .category-link:hover i {
            transform: translateX(5px);
        }
        
        /* Produits */
        .products {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,154,158,0.05)" points="0,0 100,0 0,100"/></svg>');
            background-size: cover;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition-speed);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-pink);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 2;
        }
        
        .product-image {
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: linear-gradient(to bottom, #f8f4f4, #ffffff);
        }
        
        .product-image img {
            max-height: 100%;
            transition: transform var(--transition-speed);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
            .product-info {
                padding: 20px;
                height: 222px;
                border-top: 1px solid #eee;
                display: flex;
                flex-direction: column;
            }
        
        .product-info h3 {
            font-size: 15px;
            text-align: left;
            font-weight: inherit;
            /* white-space: nowrap; */
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 10px;
            flex: 1;
        }
        .product-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-purple);
            margin-right: 10px;
        }
        
        .old-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 12px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .add-to-cart i {
            margin-right: 8px;
        }
        
        .add-to-cart:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }
        
        /* Promotions */
        .promotions {
            background: var(--secondary-gradient);
            color: white;
        }
        
        .promotions .section-header h2,
        .promotions .section-header p {
            color: white;
        }
        
        .promo-slider {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
        }
        
        .promo-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .promo-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            padding: 20px;
        }
                
        .promo-text {
            flex: 1;
            padding-right: 40px;
            display: flex;
            flex-direction: column;
        }
        
        .promo-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .promo-image {
            flex: 1;
            text-align: center;
        }
        
        .promo-image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .promo-timer {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: var(--border-radius);
            display: inline-flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .timer-item {
            text-align: center;
            min-width: 60px;
        }
        
        .timer-value {
            font-size: 1.8rem;
            font-weight: 700;
            background: white;
            color: var(--accent-purple);
            border-radius: 10px;
            padding: 5px;
            margin-bottom: 5px;
        }
        
        .timer-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            display: none;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all var(--transition-speed);
        }
        
        .slider-nav:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        
        .prev {
            left: 20px;
        }
        
        .next {
            right: 20px;
        }
        
        /* Témoignages */
        .testimonials {
            background: var(--bg-light);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            transition: transform var(--transition-speed);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--accent-pink);
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background: var(--primary-gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: white;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* Pourquoi nous choisir */
        .why-us {
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            transition: transform var(--transition-speed);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
        }
        
        .mobile-menu {
            DISPLAY: none;
        }
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: #666;
        }
        
        /* Newsletter */
        .newsletter {
            background: var(--primary-gradient);
            color: white;
            text-align: center;
            padding: 80px 5%;
        }
        
        .newsletter-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .newsletter p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        
        .newsletter-form button {
            background: var(--accent-purple);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 30px 30px 0;
            font-weight: 500;
            cursor: pointer;
            transition: background var(--transition-speed);
        }
        
        .newsletter-form button:hover {
            background: #8a7ac6;
        }
        
        /* Footer */
        footer {
            background: #2a2a2a;
            color: white;
            padding: 70px 5% 30px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
   .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background var(--transition-speed);
}
        
        .social-icon:hover {
            background: var(--accent-pink);
        }
        
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-pink);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-pink);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-pink);
            min-width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }
        
    a.see-all-btn {
        padding: 12px 30px;
        background: #ff7374;
        color: white;
        border: none;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: all var(--transition-speed);
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: max-content;
        margin-top: 3rem;
    }
    .category-icon img{    
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
        .price-slider {
        position: relative;
        height: 5px;
        background: #ddd;
        border-radius: 5px;
        margin-top: 10px;
        }

        .price-slider .progress {
            height: 100%;
            position: absolute;
            left: 0;
            right: 0;
            background: var(--accent-purple, #a268c9); /* ou #9b59b6 par défaut */
            border-radius: 5px;
        }

        div#brandsHTML {
            display: flex;
            width: 100%;
            gap: 23px 20px;
            height: max-content;
            justify-content: center;
            margin-top: 110px;
            align-items: center;
        }
        
        div#brandsHTML .product-info {
            padding: 0;
            border-top: none;
            height: 0;
        }