.boutique {
  margin-top: 6rem;
  padding: 1rem 4rem;
}
.boutique .titre {
  margin-bottom: 10px;
  font-size: 25px;
}

/* bar filtre */

.barFiltreb {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 0.2px #e7e7e7 solid;
  width: 100%;
}

.barFiltreb ul {
  display: flex;
  align-items: center;
  gap: 30px;

  justify-content: left;
}
.barFiltreb ul li {
  list-style: none;
  /* margin: 10px; */
}
.barFiltreb ul li a {
  text-decoration: none;
  color: #040a1d;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.barFiltreb ul li a:hover {
  color: #020d2e;
  font-size: 16px;
  background: #023094;
  padding: 5px 15px;
  color: #fff;
  border-radius: 5px;
}
.barFiltreb img {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
}

/* produits */
.produitpub {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.produits .produitpub .produit {
  width: 200px;
  height: 320px;
  border: 1px #e7e7e7 solid;
  border-radius: 10px;
  padding: 10px;
}
.produits .produit img {
  width: 100%;
  height: 60%;
  margin-bottom: 10px;
}

.produits .produit p {
  font-size: 14px;
}

.produits .produit .add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 10px;
}
.produits .produit .add button {
  background: none;
  padding: 5px 10px;
  color: #020d2e;
  border: 1px #023094 solid;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.produits .produit .add button:hover {
  background: #023094;
  color: #fff;
  border: none;
}

/*----------------------------------------------------
 Responsive mobile   
 *----------------------------------------------------*/

@media screen and (max-width: 700px) {
  .boutique {
    margin-top: 6rem;
    padding: 1rem;
  }
  .boutique .titre {
    margin-bottom: 10px;
    font-size: 25px;
  }

  /* bar filtre */

  .barFiltreb {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 0.2px #e7e7e7 solid;
    border-bottom: 0.2px #e7e7e7 solid;
    width: 100%;
  }

  .barFiltreb ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 5px;
  }

  .barFiltreb ul li {
    list-style: none;
    /* margin: 10px; */
  }
  .barFiltreb ul p {
    display: none;
  }
  .barFiltreb ul li a {
    text-decoration: none;
    color: #040a1d;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .barFiltreb ul li a:hover {
    color: #020d2e;
    font-size: 16px;
    background: #023094;
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
  }
  .barFiltreb img {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
  }

  /* produits */
  .produitpub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }
  .produits .produitpub .produit {
    width: 100%;
    height: 320px;
    border: 1px #e7e7e7 solid;
    border-radius: 10px;
    padding: 10px;
  }
  .produits .produit img {
    width: 100%;
    height: 60%;
    margin-bottom: 10px;
  }

  .produits .produit p {
    font-size: 12px;
  }

  .produits .produit .add {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-top: 10px;
  }
  .produits .produit h4 {
    font-size: 14px;
  }
  .produits .produit .add h3 {
    font-size: 14px;
  }
  .produits .produit .add button {
    background: none;
    padding: 5px 10px;
    color: #020d2e;
    border: 1px #023094 solid;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
  }

  .produits .produit .add button:hover {
    background: #023094;
    color: #fff;
    border: none;
  }
}
