main {
    background-color: #ffffff;
}

.fiche-produit {
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,.04),0 4px 7px rgba(0,0,0,.04);
    transition: transform .3s ease,box-shadow .3s ease;
    padding: 20px 50px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.fiche-complete-produit {
    width: 80%;
    margin: auto;
    background-color: #ffffff;
}

.fiche-produit-link {
    text-decoration: none;
    color: #000000;
}

.fiche-produit-link:hover,  .fiche-produit-link:visited{
    text-decoration: none;
    color: #000000;
}

.fiche-produit-info+.fiche-produit-info {
    margin-top: 10px;
}

.fiche-produit-title {
    font-size: 25px;
    font-weight: 1000;
}

.fiche-produit-title-mobile {
    display: block;
}

.fiche-produit-title-desktop {
    display: none;
}

.fiche-produit-image, .fiche-complete-produit-alt-image {
    width: 100%;
    text-align: center;
}

.fiche-complete-produit-alt-image img {
    transition: transform 0.3s ease; 
    cursor: pointer;
}

.fiche-complete-produit-alt-image img:hover {
    transform: scale(1.1);
}

.fiche-produit-image img{
    max-width: 100%;
    max-height: 200px;
}

.fiche-complete-produit-images {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.fiche-complete-produit-image {
    width: 75%;
}

.fiche-complete-produit-alt-image {
    width: 20%;
}

.fiche-complete-produit-image img {
    max-width: 100%;
    max-height: 500px;
}

.fiche-complete-produit-alt-image img {
    max-width: 100%;
    max-height: 200px;
}

.select-produit-sizes {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5pt;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.fiche-produit-variantsImg, .fiche-complete-produit-variantsImg {
    width: 100%;
}



.fiche-produit-variantsImg-bigContainer, .fiche-complete-produit-variantsImg-bigContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.fiche-complete-produit-variantsImg-bigContainer {
    margin-top: 30px;
    justify-content: space-between;
}

.fiche-produit-variantsImg-container {
    width: 50%;
}

.fiche-complete-produit-variantsImg-container {
    width: 25%;
    transition: transform 0.3s ease; 
}

.fiche-complete-produit-variantsImg-container:hover {
    transform: scale(1.1);
}

.fiche-produit-variantsImg-container img, .fiche-complete-produit-variantsImg-container img {
    width: 100%;
}





.fiche-produit-price {
    text-align: center;
    font-size: 25px;
    font-weight: 1000;
}

.fiche-produit-stock {
    margin: auto;
    padding: 10px 15px;
    width: 200px;
    text-align: center;
    letter-spacing: 0;
    color: #ffffff;
    opacity: 1;
    border-radius: 5px;
    font-weight: 1000;
    font-size: 20px;
    text-transform: uppercase;
}

.fiche-produit-stock-on {
    background-color: #30d692;
}

.fiche-produit-stock-off {
    background-color: rgb(255 79 102/85%);
}

.fiche-complete-produit-sizes {
    margin-top: 20px;
}

.fiche-complete-produit-buy-infos {
    margin-top: 20px;
}

.fiche-produit-title-mobile {
    display: block;
}

.fiche-produit-title-desktop {
    display: none;
}


@media screen and (min-width: 1100px) {
    .fiche-produit {
        justify-content: space-between;
        padding: 20px 20px;
        flex-direction: row;
    }

    .fiche-produit-title-mobile {
        display: none;
    }

    .fiche-produit-title-desktop {
        display: block;
    }

    .fiche-produit-main-infos {
        width: 30%;
    }

    .fiche-produit-param-infos {
        width: 30%;
    }

    .fiche-produit-buy-infos {
        width: 30%;
    }

    .fiche-produit-variantsImg-container {
        width: 30%;
    }

    .fiche-complete-produit-infos {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .fiche-complete-produit-content-infos {
        display: flex;
        flex-direction: column;
        width: 40%;
    }

    .fiche-produit-title-mobile {
        display: none;
    }

    .fiche-produit-title-desktop {
        display: block;
    }

    .fiche-complete-produit-images {
        width: 40%;
    }

    .fiche-complete-produit-variantsImg-container {
        width: 20%;
    }


}