#Vente {
  background: transparent;
  margin-left: 4vw;
  margin-top: 10vh;
  margin-bottom: 10vh;
  position: relative;
  border-radius: 0px;
  color: black;
  font-size: 1em;
  font-weight: 400;
  width: 92vw;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#VenteText {
  background-color: white;
  width: 80vw;
  position: relative;
  border-radius: 0px;
  color: black;
  font-size: 1em;
  font-weight: 400;
  padding: 5vh;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

#VenteText .supertitle {
  color: var(--ColorNumberOne);
  margin: 0;
}

#VenteText .title {
  color: var(--ColorNumberOne);
  margin: 0;
}

@media screen and (orientation: portrait) {
  #Vente {
    margin-left: 5vw;
    width: 90vw;
  }

  #VenteText .title {
    font-size: 1em;
  }

  #VenteText {
    width: 70vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2vh;
  }
}

/* Container for flexboxes */
.rowBoutique {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 2vh;
  width: 80vw;
}

/* Create two equal columns */
.columnBoutique {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 15vw;
  margin: 1vh;
}

@media screen and (orientation: portrait) {
  .rowBoutique {}

  .columnBoutique {
    margin-bottom: 5vh;
    height: max-content;
  }
}

/* LA CARTE PRODUIT */

.PromoBulle {
  position: absolute;
  width: 15%;
  text-align: center;
  border-radius: 2vh;
  background: linear-gradient(114deg, #ff1700, #98162f, rgb(255 60 0), #ff1700);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: white;
}

@media screen and (orientation: portrait) and (max-width: 600px){
  .PromoBulle {
    width: 70%;
  }
}

@media screen and (orientation: portrait) and (min-width: 601px){
.PromoBulle {
    width: 35%;
}
}

.TitreArticle {
  font-size: 0.8em;
  font-weight: 200;
  color: black;
  text-align: center;
  padding: 1vh;
  text-transform: uppercase;
}

.card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 1s;
  transition-timing-function: ease-in-out;
}

.description {
  background: var(--ColorNumberOne);
  height: 7vh;
  opacity: 0.9;
}

.VoirPlus {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  width: 90%;
  margin-left: 5%;
  display: none;
}

.description:hover .VoirPlus {
  display: block;
}

.VoirPlus:hover {
  background-color: grey;
}

@media screen and (orientation: portrait) {
  .description:hover .VoirPlus {
    display: none;
  }
}

.VoirPlus2 {
  background-color: transparent;
  border: 1px solid grey;
  color: silver;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  width: 90%;
  margin-left: 5%;
}

/* LA CARTE PRODUIT */

/* AJOUT:SUPPR PRODUIT */
.PlusMinus {
  display: flex;
  justify-content: space-around;
}

.PMButton {
  background: linear-gradient(114deg, #494647, #908789, #dad3d3, #e3dddd);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  color: white;
  border-radius: 50%;
  border: none;
  width: 4vh;
  height: 4vh;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1vh;
}

.PMButton:active {
  background: linear-gradient(114deg, #e3dddd, #dad3d3, #908789, #494647);
}

.PanierProduit {
  background: linear-gradient(114deg, #d6cece, #bbb4b591, #dad3d3d4, #e3dddd);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  color: black;
  border-radius: 30%;
  border: none;
  width: 8vh;
  height: 4vh;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ButtonClass {
  background-color: var(--ColorNumberOne);
  border: 1px solid grey;
  color: var(--colorText);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  width: 90%;
  margin-top: 5%;
}

.ButtonClass:hover {
  background-color: silver;
  border: 1px solid grey;
  color: white;
}

/* LE PANIER */

/*ICO PANIER */

#TotalPanier {
  background: linear-gradient(114deg, #d6cece, #bbb4b591, #dad3d3d4, #e3dddd);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  color: black;
  border-radius: 50%;
  border: none;
  width: 8vh;
  height: 8vh;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 15vh;
  left: 75vw;
  z-index: 1;
}

#TotalPanier:hover {
  background: linear-gradient(114deg, #dad3d3d4, #e3dddd, #d6cece, #bbb4b591);
}

#TotalPanier img {
  width: 65%;
}

#TotalPanier .TotalPanier {
  background: var(--ColorNumberOne);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  color: white;
  border-radius: 50%;
  border: none;
  width: 4vh;
  height: 4vh;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4vh;
  left: 3vw;
}

/*ICO PANIER */

#DetailPanier {
    background: white;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
    color: black;
    padding: 2vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.CroixFerme {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 70px;
  margin-left: 50px;
  cursor: pointer;
}

.line-break-panier {
  border-bottom: 3px solid black;
  width: 40vw;
  margin: 0 auto;
}

/* TABLEAU PANIER */
table {
  text-align: center;
  border-collapse: collapse;
  width: 100%;
  font-size: 1em;
  color: white;
}

th,
td,
tr {
  border-bottom: 1px solid #ffffff;
  padding: 8px;
}

tr {
  background-color: silver;
}

tr:nth-child(even) {
  background-color: var(--ColorNumberOne);
}

tr:hover {
  background-color: #d5d5deb3;
}

#col1 {
  width: 10%;
}

#col2 {
  width: 50%;
}

#col3 {
  width: 25%;
}

#col4 {
  width: 15%;
}

.imgPanier {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.imgPanier img {
  width: 10%;
}

@media screen and (orientation: portrait) {
  .imgPanier {
    flex-direction: column;
  }

  .imgPanier img {
    width: 50%;
  }
}

/* TABLEAU PANIER */

@media screen and (orientation: portrait) {
	
  /*#DetailPanier {
    width: 90vw;
    height: 90vh;
  }*/

  table {
    font-size: 0.6em;
  }

  .EffaceColonne {
  }

  #col1 {
    width: 5%;
  }

  #col2 {
    width: 45%;
  }

  #col3 {
    width: 35%;
  }

  #col4 {
    width: 15%;
  }
}

@media screen and (orientation: portrait) and (max-width: 500px){

  .CroixFerme {
  right: -10px;
}

}



td {
  padding: 1px;
}

/* LE PANIER */

/* Empechement du paysage */
#PortraitSVP {
  background-color: silver;
  color: black;
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#PortraitSVP img {
  width: 30%;
}

/* Empechement du paysage */


/* MON COMPTE */
.compte {
    background: linear-gradient(114deg, #d6cece, #bbb4b591, #dad3d3d4, #e3dddd);
    width: 20vw;
    height: fit-content;
    text-align: center;
    border-radius: 2vh;
    color: white;
    margin-left: 60vw;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
    display: flex;
    justify-content: center;
}

/* MON COMPTE Hover */
.compte:hover {
    background: linear-gradient(114deg, #dad3d3d4, #e3dddd, #d6cece, #bbb4b591);
}

/* CREATION COMPTE - CreationCompte.php MonCompte.php */
#DejaCompte {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input {
    border: solid 1px grey;
    border-radius: 2vh;
    color: grey;
}

input::placeholder {
    font-style: italic;
    color: grey;
}

textarea {
    border-radius: 2vh;
    color: grey;
    border: solid grey 1px;
}

textarea::placeholder {
    font-style: italic;
    color: grey;
}

#CodeVerification,
#FormulaireCreation {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#MonCompte {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Responsive Design - Portrait Mode */
@media screen and (orientation: portrait) {
    .compte {
        margin-left: 0vw;
        width: 60vw;
    }
}

/* Responsive Design - Galaxy Fold */
@media only screen and (max-width: 359px) {
    .columnBoutique {
        width: 100vw;
    }

    #card {
        width: 80%;
    }
}

/* Responsive Design - Smartphone */
@media only screen and (min-width: 360px) and (max-width: 379px),
       only screen and (min-width: 380px) and (max-width: 480px) {
    .columnBoutique {
        width: 100vw;
    }

    #card {
        width: 80%;
    }
}

/* Responsive Design - Tablet Portrait */
@media only screen and (min-width: 481px) and (max-width: 767px) and (orientation: portrait) {
    .columnBoutique {
        width: 100vw;
    }

    #card {
        width: 80%;
    }
}

/* Responsive Design - Tablet Landscape */
@media only screen and (min-width: 481px) and (max-width: 768px) and (orientation: landscape) {
    .columnBoutique {
        height: 30vh;
    }
}

/* Responsive Design - Large Tablet Portrait */
@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .columnBoutique {
        width: 35vw;
        height: 30vh;
    }

    #card {
        width: 70%;
    }
}

/* Responsive Design - Laptop or Large Smartphone Landscape */
@media only screen and (min-width: 769px) and (max-width: 1023px) and (orientation: landscape) {
    .columnBoutique {
        height: 30vh;
    }
}

/* Responsive Design - Large Tablet Landscape or Small Laptop */
@media only screen and (min-width: 1024px) and (max-width: 1200px) and (orientation: landscape) {
    .columnBoutique {
        height: 30vh;
    }
}

/* Responsive Design - XL Screen */
@media only screen and (min-width: 1201px) {
    /* Add XL screen styles here */
}
