/*Custom swiper*/
.pscustomcarousel .swiper-pagination-bullet-active{
    background:#3d3d3d;
}

.pscustomcarousel{
    position: relative;
    height: 800px;
    max-height: 800px;
    overflow: hidden;
}

.pscustomcarousel img {
     width: 100%;
    height: 100%;
    object-fit: cover;  
}

/* Les slides doivent s'adapter à la hauteur */
.pscustomcarousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grp-title{
    /* text-align: end; */
    /* margin-top: 10px; */
    width: 500px;
    left: 30px; /*10%;*/
    color: #e1e1e1;
    position: absolute;
    bottom: 20px;
    /* background-color: #0000001a;
    padding: 10px; */
}

.grp-title h3 {
    color: #e1e1e1;
}

/* Bloc overlay */
.carousel-container {
    position: relative;
}

/* Overlay pleine hauteur */
.carousel-overlay-full {
    position: absolute;
    /* top: 0;
    left: 0; */
    /* width: 320px;  */
    /* height: 100%; */
    /* display: flex; */
    /*align-items: center; /* centre verticalement */
    padding: 10px 30px;
    z-index: 20;

    /* Effet glassmorphism moderne */
    /* background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */

    /* Optionnel : bord arrondi côté droit */
    /* border-top-right-radius: 20px;
    border-bottom-right-radius: 20px; */
}

.overlay-content {
    /* background: rgba(0, 0, 0, 0.55); */
    /* padding: 20px 25px; */
    border-radius: 12px;
    color: #777
    /* max-width: 320px; */
}

.overlay-content h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 600;
}

.overlay-content p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .carousel-overlay-full {
        width: 240px;
        padding: 25px 20px;
        backdrop-filter: blur(6px);
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .overlay-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carousel-overlay-full {
        width: 180px;
        padding: 20px 15px;
        border-radius: 0 15px 15px 0;
    }

    .overlay-content h3 {
        font-size: 1.1rem;
    }

    .overlay-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .pscustomcarousel {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .pscustomcarousel {
        height: 220px;
    }
}

/*Vague séparation*/

/* Conteneur du slider */
/* .gammes-carousel {
    position: relative;
    z-index: 2;
} */

/* Vague du haut */
.gammes-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.gammes-wave-top svg {
    position: relative;
    display: block;
    width: calc(200% + 1.3px);
    height: 160px;
    transform: rotateY(180deg);
}

.gammes-wave-top .shape-fill {
    fill: #FFFFFF;
}


