/*Patch pour masqué bandeau sup*/
.breadcrumb__wrapper{
    display: none;
}

/*Group */

.grp-gammes {
    background-color: #e7e3de;
    padding-top: 30px;
}

/* Header du bloc */
.gammes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 5px 5px;
}

.grp-titre{
    width: 100%;
    text-align: center;
}

.gammes-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.gammes-viewall {
    /* width: 100px; */
    min-width: fit-content;
    background: #565656;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.25s ease;
    margin-right: 10px;
}

.gammes-viewall:hover {
    background: #858585;
}

@media (max-width: 600px) {
    .gammes-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .gammes-title {
        font-size: 1.5rem;
    }
}


/*Carousel : */
.gammes-carousel {
    padding: 20px 0;
    height: 380px;
    /* display: grid; */
}

.gamme-slide {
    display: flex;
    justify-content: center;
}

.gamme-card {
    width: 210px;
    /* height: 250px; */
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gamme-slide .gamme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/*A revoir pour la prise en compte du hover !!!!*/
/* .gamme-slide .gamme-card {
    display: flex;
} */

/*IMPORTANT CAR .gamme-card utilisé dans le carousel et sur la page Gammes !!! */
.gammes-carousel .gamme-card{ 
    height: 250px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.gamme-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gamme-image-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.gamme-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
    margin: 10px;
}

.gamme-title {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
}

.gammes-pagination {
    margin-top: 20px;
    text-align: center;
}

.gammes-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.6;
    transition: 0.3s ease;
}

.gammes-pagination .swiper-pagination-bullet-active {
    background: #3d3d3d; /* couleur de ton thème */
    opacity: 1;
    transform: scale(1.3);
}

.gamme-slide:first-child {
    animation: hintMove 1.2s ease-out 0.8s forwards;
}

@keyframes hintMove {
    0% { transform: translateX(0); }
    40% { transform: translateX(-12px); }
    100% { transform: translateX(0); }
}

/* Vague du bas */
.gammes-wave-bottom {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

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

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