.corps {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

::selection {
    background-color: #000;
    color: #fff;
}

.text-right {
    text-align: right;
}

.cont-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    border-radius: 0 50px 50px 0;
}

.overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border-radius: 0 50px 50px 0;
}

.overlay > img {
    height: 130px;
    width: auto;
}

.cont-a-store {
    height: 100%;
    padding: 50px;
    display: grid;
    align-content: space-between;
}

.nav-store {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-store > button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 25px;
    margin: 0 5px;
}

.titre-cat-store {
    font-weight: 300;
    color: #575757;
}

.item-cat-store {
    background-color: #000;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.item-cat-store:hover {
    color: #fff;
}

.slt-cat-store {
    color: #fff;
    font-size: 30px;
    padding: 20px;
}


.img-cat-store {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 180px;
    width: 90%;
    border-radius: 20px;
}

.img-cat-store > div {
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 20px;
}

.img-cat-store > div > h2 {
    font-weight: 300;
    margin-bottom: 0;
    text-align: center;
}

.en-tete {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}

.logo-en-tete > img {
    height: 100px;
    width: auto;
}

.item-cat-nav > li {
    display: inline;
}

.item-cat-nav > li > a {
    text-decoration: none;
    color: #575757;
}

.item-cat-nav > li > a:hover {
    color: #000;
    font-weight: 550;
}

.sep-cat {
    font-weight: 600;
    font-size: 30px;
    margin: 0 10px;
}

.item-acticle-store {
    text-decoration: none;
    color: #000;
}

.item-acticle-store:hover {
    color: #000;
}

.sep-item-article-store {
    border-top: 2px solid #575757;
}

.type-cat {
    color: #575757;
    font-size: 18px;
}

.d-aticle-store {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}

.cover-item-article {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px;
    width: 100%;
}

.menu-mobile > div > button {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    color: #575757;
}

.menu-mobile > div > button:hover {
    color: #000;
    font-weight: 600;
}

.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown caché par défaut */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Juste en dessous du bouton */
    right: 0; /* Aligné avec le bouton */
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
  }
  
  /* Style des liens dans le menu déroulant */
  .dropdown-content a {
    color: black;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    color: #000;
    font-weight: 550;
  }
  
  /* Afficher au survol */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .img-article > img {
    width: 100%;
    height: auto;
    margin: 5px 0;
  }

  .desc-article {
    color: #575757;
  }

  .champ {
    border: none;
    border-bottom: 2px solid #000;
    width: 100%;
    height: 50px;
    outline-color: #fff;
    padding: 0 10px;
  }

  .img-finiton-article {
    text-align: center;
  }

  .img-finiton-article > img {
    width: 150px;
    height: auto;
    margin: 20px 0;
  }

  .btn-action {
    border: none;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    width: 100%;
  }

  .lien-action {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    display: block;
    text-align: center;
  }

  .lien-action:hover {
    color: #fff;
  }

  .fenetre-scd {
    z-index: 999;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
  }

  .cont-fenetre-scd {
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    padding: 50px;
    position: absolute;
    height: 100vh;
    width: 50%;
    display: grid;
    align-content: space-between;
  }

  .en-tete-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .en-tete-modal > button {
    background-color: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
  }

  .corps-modal {
    position: absolute;
    top: 150px;
    left: 50px;
    right: 50px;
    bottom: 150px;
    overflow: auto;
  }

  .cover-article-panier > img {
    width: 100%;
    height: auto;
  }

   .cover-article-panier {
    padding: 5px;
   }

.d-aticle-panier {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-cat-panier {
    color: #575757;
    font-size: 14px;
}

.item-action-panier > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-action-panier > div > button {
    background-color: #fff;
    border: none;
    color: #000;
}