/* CATALOGUE SUPPORTS */
    .cat_tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .cat_tab {
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 30px;
        background: var(--light-white);
        border: 1px solid var(--second);
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .cat_tab.active,
    .cat_tab:hover {
        background: var(--second);
        border-color: var(--second);
        color: var(--darkblue);
    }
    
    .cat_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .cat_card {
        background: var(--light-white);
        border-radius: 18px;
        padding: 24px 20px;
        text-align: center;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    
    .cat_card:hover {
        transform: translateY(-5px);
        border-color: var(--second);
    }
    
    .cat_emoji {
        font-size: 2rem;
        margin-bottom: 12px;
        display: block;
        position: relative;
        z-index: 1;
        transition: transform 0.3s;
    }
    
    .cat_card h4 {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 4px;
        position: relative;
        z-index: 1;
    }
    
    .cat_card p {
        font-size: 0.72rem;
        color: var(--second);
        position: relative;
        z-index: 1;
    }
/* CATALOGUE SUPPORTS */

/* MID CTA */
    .mid_cta {
        padding: 32px;
        background: var(--light-white);
        border-radius: 16px;
        margin-top: 16px;
    }
    
    .mid_cta_inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .mid_cta_inner h3 {
        font-size: 1.2rem;
        font-weight: 800;
    }
    
    .mid_cta_inner p {
        font-size: 0.88rem;
        margin-top: 4px;
        max-width: 700px;
    }
/* MID CTA */

/* REALISATION DESIGN */
    .carousel {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        perspective: 1200px;
        padding-bottom: 40px;
    }

    /* --- PISTE (wrapper) --- */
    .carousel-track {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 370px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform-style: preserve-3d;
    }

    /* --- CHAQUE SLIDE --- */
    .carousel-slide {
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
        background: var(--white);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, opacity;
        backface-visibility: hidden;
        cursor: grab;
        user-select: none;
    }

    .carousel-slide:active {
        cursor: grabbing;
    }

    .carousel-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        border: 2px solid var(--white);
        border-radius: 12px;
    }

    /* --- PAGINATION (points) --- */
    .carousel-pagination {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .carousel-pagination .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--light-white);
        border: none;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
        padding: 0;
    }

    .carousel-pagination .dot.active {
        background: var(--second);
        transform: scale(1.25);
    }

    /* --- FLÈCHES (optionnel, pour améliorer l'UX) --- */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--second);
        color: var(--darkblue);
        border: none;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        font-size: 22px;
        cursor: pointer;
        z-index: 10;
        text-align: center;
        line-height: 44px;
        backdrop-filter: blur(4px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        font-weight: bold;
        user-select: none;
    }

    .carousel-btn:hover {
        background: var(--primary);
        color: var(--white);
    }

    .carousel-btn.prev {
        left: 20px;
    }
    .carousel-btn.next {
        right: 20px;
    }
/* REALISATION DESIGN */

/* --- RESPONSIVE --- */
    /* CATALOGUE SUPPORTS */
        @media screen and (max-width: 610px){
            .cat_grid {
                grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
                gap: 8px;
            }
            
            .mid_cta {
                margin-top: 8px;
            }
        }
    /* CATALOGUE SUPPORTS */
    
    /* MID CTA */
        @media screen and (max-width: 1225px){
            .mid_cta_inner {
                justify-content: center;
            }
            
            .mid_cta_inner h3, .mid_cta_inner p {
                text-align: center;
            }
        }
    /* MID CTA */

    /* REALISATION DESIGN */
        @media screen and (max-width: 850px) {
            .carousel-slide {
                width: 300px;
                height: 300px;
            }
            .carousel-track {
                height: 320px;
            }
            .carousel-btn {
                width: 34px;
                height: 34px;
                line-height: 34px;
                font-size: 16px;
            }
            .carousel-btn.prev {
                left: 6px;
            }
            .carousel-btn.next {
                right: 6px;
            }
        }
    
        @media screen and (max-width: 650px) {
            .carousel-slide {
                width: 250px;
                height: 250px;
            }
            .carousel-track {
                height: 270px;
            }
        }
        
        @media screen and (max-width: 550px) {
            .carousel-slide {
                width: 300px;
                height: 300px;
            }
            .carousel-track {
                height: 320px;
            }
            
            .carousel-btn.prev {
                left: 2px;
            }
            .carousel-btn.next {
                right: 2px;
            }
        }
        
        @media screen and (max-width: 420px) {
            .carousel-slide {
                width: 270px;
                height: 270px;
            }
            .carousel-track {
                height: 290px;
            }
        }
    /* REALISATION DESIGN */
/* --- RESPONSIVE --- */