
        
        /* Section produits pleine largeur */
        .products-section {
            width: 100%;
            position: relative;
        }
        
        /*.products-title {
            text-align: center;
            font-size: 2.5rem;
            margin: 0;
            padding: 40px 0;
            color: #2a5a3c;
            background: white;
        }*/
        
        /* Conteneur du slider en pleine largeur */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.8s ease;
        }
        
        .slide {
            min-width: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 80vh;
            object-fit: cover;
            display: block;
        }
        
        /* Contenu superposé sur l'image */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .slide-overlay h1 {
  padding: 0;
  color: #ffffff;
  font-size: 70px;
  font-style: normal;
  line-height: 84px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
        
.slide-overlay p {
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 1px;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
        /*.slide h3 {
            font-size: 3.5rem;
            margin: 0 0 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 700;
        }*/
        
        /*.slide p {
            font-size: 1.8rem;
            max-width: 800px;
            margin: 0;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            line-height: 1.4;
            font-weight: 300;
        }*/
        
        /* Boutons de navigation */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            font-size: 2.5rem;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }
        
        .nav-button:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }
        
        .nav-prev {
            left: 50px;
        }
        
        .nav-next {
            right: 50px;
        }
        
        /* Boutons CTA */
        .cta-buttons {
            text-align: center;
            padding: 60px 0;
            background: white;
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: #2a5a3c;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            transition: all 0.4s;
            border: 3px solid #2a5a3c;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-button:hover {
            background: white;
            color: #2a5a3c;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Indicateurs de slide */
        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            z-index: 10;
        }
        
        .indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.3);
        }
        
        @media (max-width: 768px) {
            .slide img {
                height: 70vh;
            }
            
            /*.slide h3 {
                font-size: 2.2rem;
            }
            
            .slide p {
                font-size: 1.3rem;
            }*/
            
            .nav-button {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .nav-prev {
                left: 20px;
            }
            
            .nav-next {
                right: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 40px 20px;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                padding: 15px;
                font-size: 1.1rem;
            }
        }