        :root {
            --primary-color: #2c3e50;
            --secondary-color: #25D366;
            --accent-color: #f39c12;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        /* ===== Styles Mobile First ===== */
/* Réduire la taille des polices pour mobile */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .btn-hero {
        padding: 10px 20px !important;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== Optimisation Tablette (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
}

/* ===== Navigation Mobile ===== */
@media (max-width: 992px) {
    .navbar-collapse {
        background: var(--primary-color);
        padding: 15px;
        margin-top: 10px;
        border-radius: 5px;
    }
    
    .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* ===== Optimisation des cartes produits ===== */
@media (max-width: 576px) {
    .product-card, .category-card {
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 150px !important;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
}

/* ===== Boutons tactiles ===== */
.btn, .nav-link {
    min-height: 44px; /* Taille minimale pour les zones tactiles */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== Formulaire mobile ===== */
@media (max-width: 768px) {
    .form-control, .form-select {
        font-size: 16px; /* Empêche le zoom sur iOS */
        padding: 12px 15px;
    }
    
    #wavePaymentForm {
        padding: 15px;
    }
}

/* ===== Performance mobile ===== */
* {
    -webkit-tap-highlight-color: transparent; /* Supprime le flash bleu sur mobile */
}

/* ===== Optimisation des animations ===== */
@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        animation: none !important;
    }
}
        /* Hero Section améliorée */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(37, 211, 102, 1)), 
                        url('assets/images/hero-image.jpg') no-repeat center center;
            background-size: cover;
            min-height: 90vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-logo {
            max-height: 80px;
            margin-bottom: 30px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }
        
        .btn-hero {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-hero-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .btn-hero-primary:hover {
            background-color: #e67e22;
            border-color: #e67e22;
            transform: translateY(-2px);
        }
        
        .btn-hero-outline {
            border: 2px solid white;
            color: white;
        }
        
        .btn-hero-outline:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Stats */
        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            margin: 0 10px;
            min-width: 120px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        /* Section Catégories */
        .category-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        
        .section-title {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: var(--light-text);
            font-size: 1.1rem;
        }
        
        .category-card {
            display: block;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-icon {
            background-color: var(--secondary-color) !important;
            color: white !important;
            transform: rotate(15deg) scale(1.1);
        }
        
        /* Produits */
        .featured-products {
            padding: 80px 0;
        }
        
        .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 1;
        }
        
        .product-image {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-title {
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .product-card:hover .product-title {
            color: var(--secondary-color);
        }
        
        /* Publicité */
        .ad-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ad-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .icon-circle {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        /* Témoignages */
        .testimonials {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .testimonial-card {
            padding: 30px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(231, 76, 60, 0.1);
            font-family: serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .stat-item {
                margin-bottom: 15px;
            }
        }
