.section--product {
    padding: 41px 0 87px 0;
}

.section--product .container {
}

.section--product .section__title {
    width: 100%;
    text-align: center;
    color: var(--color-purple);
}

.section--product .section__header .section__introduction {
    margin: 35px 0 70px 0;
    width: 100%;
    text-align: center;
}

.section--product .cercle-navigation {
    width: 40%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section--product .cercle-navigation .cercle__title {
    color: var(--color-purple);
    text-transform: uppercase;
    font-size: clamp(20px, 2.7vw, 26px);
    line-height: 1.3;
    font-weight: 500;
}

.section--product .cercle-content {
    width: 100%;
    text-align: center;
    margin: 64px 0 0 0;
    font-size: clamp(16px, 2.7vw, 18px);
    line-height: 1.3;
    font-weight: 400;
}

.section--product .section__footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 0 0;
}

.cercle-produits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin:73px 0 50px 0;
}

.produit-cercle {
    width: 20%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background:#F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produit-cercle.actuel {
    width: 40%;
}

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


/** Slider **/
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    margin: 75px auto 0 auto;
}

.hero .slider-track {
    position: relative;
    aspect-ratio: 960 / 595;
}

.hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero .slider-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 42px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 100;
}

.hero .slider-dots button {
    background: none;
    border: 2px solid var(--color-white);
    width: 17px;
    height: 17px;
    border-radius: 50%;

    transition: background 0.3s;
}

.hero .slider-dots button.active::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--color-white);
}

.hero .slider-dots button:not(.active):hover {
    border-color: var(--color-purple);
    cursor: pointer;
}
