
        /* --- CONTENEUR PRINCIPAL DU CARROUSEL --- */
        .carousel-wrapper1 {
            position: relative;
            /**max-width: 800px;*/
            width: 90%;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .carousel-header {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        /* --- FENÊTRE DE VISUALISATION --- */
        .carousel-container1 {
            overflow: hidden;
            width: 100%;
            padding: 10px 0; 
        }

        /* --- LA BANDE QUI BOUGE (TRACK) --- */
        .carousel-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- LA CARTE (IMAGE + TEXTE) --- */
        .carousel-card {
            flex: 0 0 180px; 
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            overflow: hidden;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .carousel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        /* --- L'IMAGE CARRÉE --- */
        .carousel-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        /* --- LE TEXTE EN DESSOUS --- */
        .card-content {
            padding: 12px;
        }

        .card-title {
            font-size: 16px;
            font-weight: bold;
            margin: 0 0 5px 0;
            color: #2c3e50;
        }

        .card-desc {
            font-size: 13px;
            color: #7f8c8d;
            margin: 0;
        }

        /* --- BOUTONS DE NAVIGATION --- */
        .nav-btn {
            position: absolute;
            top: 55%;
            transform: translateY(-50%);
            background-color: #fff;
            border: 1px solid #ddd;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.2s;
        }

        .nav-btn:hover {
            background-color: #333;
            color: #fff;
            border-color: #333;
        }

        .prev-btn { left: -20px; }
        .next-btn { right: -20px; }

        /* --- RESPONSIVE MOBILE --- */
        @media (max-width: 600px) {
            .carousel-card {
                flex: 0 0 140px;
            }
            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }
  