
/* =================== DESKTOP.CSS ===================
   S'applique uniquement lorsque la largeur
   est supérieure à 992px.
   ==================================================== */
@media (min-width: 992px){
    #nav_block {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 70px;
    background-color: black;
    display: flex;
    align-items: center;
    z-index: 20;
    margin: 0 40px 0 0;
    }

    /* Les trois parties du nav */
    #nav_conten {
        width: calc(100% / 3);
        height: 100%;
    }

    /* Logo (bloc de gauche) */
    #nav_conten img {
        height: calc(100% - 10%);
        width: auto;
        text-align: left;
    }

    /* Partie centrale (vide ou liens) */
    .center-menu {
        /* si tu veux centrer des liens, menu, etc. */
    }

    /* Bouton à droite */
    .content_left{
        display: block;
        text-align: right;
        align-content: center;

    }
    .content_left .buy-button {
        margin-right: 20px;
    }
    /* Style du bouton “Achetez maintenant” */
    .buy-button {
        width: auto;
        padding: 10px 20px;
        border-radius: 20px;
        background: linear-gradient(to right, #FFC0CB, #a55790);
        color: black;
        text-transform: uppercase;
        font-size: 12px;
    }

    /* ========== CORPS ========= */
    #corps_block{
        position: relative;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        width: 100%;
        padding: 0;
        top: 0;
        left: 0;
        gap: 0;

    }

    /* ========== SLIDE ========== */
    #slide {
        position: relative;
        display: flex;
        width: 100%;
        height: auto;
        max-height: 2160px;
    }
    #slide_desktop {
        display: flex;
        width: 100%;
        height: auto;
    }
    #slide_desktop img{
        width: 100%;
        height: auto;
    }

    #slide_tablet {
        display: none;
        width: 100%;
        height: auto;
    }
    #slide_tablet img{
        width: 100%;
        height: auto;
    }
    #slide_mobile {
        display: none;
        width: 100%;
        height: auto;
    }
    #slide_mobile img{
        width: 100%;
        height: auto;
    }
    /* SECTION BLOCK (4 colonnes)*/
    #section_block {
        position: relative;
        width: 100%;
        background: black;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 220px;
        text-align: center;
    }
    #section_block div {
        width: calc(100% / 4);
        height: 100%;
        text-align: center;
        align-content: center;
        color: white;
        margin: 0 20px;
        padding: 0 20px;
    }
    #section_block div img {
        width: calc(100% - 70%);
    }
    #section_block div p {
        text-transform: uppercase;
        font-size: calc(10px + 0.4vw);
        max-width: 100%;
        overflow: hidden;
    }

    /* SOUS-SECTION (2 colonnes) */
    #sous_section_block {
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        text-align: center;
        color: black;
    }
    .sous-section-img{
        display: flex;
        flex: 1;
        height: 100%;
        width: 50%;
    }
   .sous-section-img img {
        width: 100%;
        height: 100%;
    }
    .sous-section-text {
        display: flex;
        width: 50%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .sous-section-text p{
        font-size: calc(10px + 1vw);
        margin-right: 50px;
        margin-left: 50px;

    }
    /* SLIDE B & SLIDE C */
    #slide_b, #slide_c {
        width: 100%;
        display: block;
    }
    #slide_b img, #slide_c img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    /* SS SECTION BLOCK (3 blocs) */
    #ss_section_block {
        position: relative;
        width: 100%;
        height: 225px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .ss_section_img {
        width: 50%;
        display: block;
        text-align: center;
    }
    .ss_section_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .ss_section_text {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 50px;
        font-size: calc(10px + 0.3vw);
        text-transform: uppercase;
        color: black;
    }

    /* AVIS */
    #avis-wrapper {
        position: relative;
        width: 100%;
        background-color: #f9f9f9;
        padding: 20px 0;
    }
    #API_Blocks_Avis {
        margin: 0 auto;
        width: calc(100% - 20%);
        overflow: hidden;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    #footer {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 50px;
        background: black;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    #footer p {
        color: white;
        font-size: calc(7px + 0.5vw);
        overflow: hidden;
    }
}
@media only screen and (max-width: 600px) {
    .image_slide {
        display: none !important;
    }
}