* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  font-size: 10px;
  /* 1 rem 10px */
}
body {
  font-size: 1.6rem;
}

/* modification de la deuxieme section */

.slider-area {
  height: 650px;
  width: 100%;
}

.slider-area .slider-item {
  height: 650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
}

.slider-area .slider-item .box {
  position: absolute;
  width: 100%;
  height: 650px;
  background-color: #00000050;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slider-area .slider-item .box h1 {
  font-size: 40px;
  color: white;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  margin-top: 5px;
  max-width: 700px;
  width: 90%;
  transform: translateY(200px);
  opacity: 0;
  transition: all 1s ease;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.slider-area .slider-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider-area .slider-item p {
  font-size: 14px;
  color: white;
  width: 100%;
  text-align: left;
  margin-top: 30px;
  max-width: 700px;
  width: 90%;
  transform: translateX(400px);
  opacity: 0;
  transition: all 1s ease;
  padding: 10px 18px;
  border-radius: 8px;
}

.slider-area .slider-item button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  background-color: #6b2b23;
  color: white;
  margin-top: 30px;
  text-transform: capitalize;
  transform: translateX(-400px);
  opacity: 0;
  transition: all 1s ease;
}

/* Responsive Design pour le Slider */
@media (max-width: 1200px) {
  .slider-area {
    height: 550px;
  }

  .slider-area .slider-item {
    height: 550px;
  }

  .slider-area .slider-item .box {
    height: 550px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 36px;
    max-width: 600px;
    transform: translateY(180px);
    padding: 10px 18px;
  }

  .slider-area .slider-item p {
    font-size: 13px;
    max-width: 600px;
    transform: translateX(350px);
    padding: 8px 16px;
    margin-top: 25px;
  }

  .slider-area .slider-item button {
    font-size: 16px;
    padding: 9px 18px;
    margin-top: 25px;
    transform: translateX(-350px);
  }
}

@media (max-width: 992px) {
  .slider-area {
    height: 480px;
  }

  .slider-area .slider-item {
    height: 480px;
  }

  .slider-area .slider-item .box {
    height: 480px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 32px;
    max-width: 550px;
    transform: translateY(150px);
    padding: 10px 16px;
  }

  .slider-area .slider-item p {
    font-size: 12px;
    max-width: 550px;
    transform: translateX(300px);
    padding: 8px 14px;
    margin-top: 20px;
  }

  .slider-area .slider-item button {
    font-size: 15px;
    padding: 8px 16px;
    margin-top: 20px;
    transform: translateX(-300px);
  }
}

@media (max-width: 768px) {
  .slider-area {
    height: 400px;
  }

  .slider-area .slider-item {
    height: 400px;
  }

  .slider-area .slider-item .box {
    height: 400px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 26px;
    max-width: 90%;
    width: 90%;
    transform: translateY(120px);
    padding: 8px 14px;
    text-align: center;
  }

  .slider-area .slider-item p {
    font-size: 11px;
    max-width: 90%;
    width: 90%;
    transform: translateX(250px);
    padding: 6px 12px;
    margin-top: 15px;
    text-align: center;
  }

  .slider-area .slider-item button {
    font-size: 13px;
    padding: 7px 14px;
    margin-top: 15px;
    transform: translateX(-250px);
  }
}

@media (max-width: 576px) {
  .slider-area {
    height: 350px;
  }

  .slider-area .slider-item {
    height: 350px;
  }

  .slider-area .slider-item .box {
    height: 350px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 20px;
    max-width: 95%;
    width: 95%;
    transform: translateY(100px);
    padding: 6px 12px;
    text-align: center;
  }

  .slider-area .slider-item p {
    font-size: 10px;
    max-width: 95%;
    width: 95%;
    transform: translateX(200px);
    padding: 5px 10px;
    margin-top: 12px;
    text-align: center;
  }

  .slider-area .slider-item button {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 12px;
    transform: translateX(-200px);
  }
}

@media (max-width: 480px) {
  .slider-area {
    height: 300px;
  }

  .slider-area .slider-item {
    height: 300px;
  }

  .slider-area .slider-item .box {
    height: 300px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 18px;
    max-width: 95%;
    width: 95%;
    transform: translateY(80px);
    padding: 5px 10px;
    text-align: center;
  }

  .slider-area .slider-item p {
    font-size: 9px;
    max-width: 95%;
    width: 95%;
    transform: translateX(150px);
    padding: 4px 8px;
    margin-top: 10px;
    text-align: center;
  }

  .slider-area .slider-item button {
    font-size: 11px;
    padding: 5px 10px;
    margin-top: 10px;
    transform: translateX(-150px);
  }
}

.active .slider-item .box button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1.3s;
}
.active .slider-item .box p {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1s;
}
.active .slider-item .box h1 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

/* Ajustement des animations pour mobile */
@media (max-width: 768px) {
  .active .slider-item .box h1 {
    transform: translateY(0);
  }
  
  .active .slider-item .box p {
    transform: translateX(0);
  }
  
  .active .slider-item .box button {
    transform: translateX(0);
  }
}

/* modification de la section 3 */

.section3 {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  /* background-color: #bbbbbb; */
}

.section3 div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px;
}

.section3 div img {
  height: 80px;
  width: 80px;
  margin-right: 50px;
  object-fit: contain;
}

/* Responsive Design pour section3 */
@media (max-width: 1200px) {
  .section3 {
    height: 280px;
    padding: 18px;
  }
  
  .section3 div {
    width: 75%;
    margin-bottom: 8px;
    gap: 12px;
  }
  
  .section3 div img {
    height: 70px;
    width: 70px;
    margin-right: 40px;
  }
}

@media (max-width: 992px) {
  .section3 {
    height: 250px;
    padding: 15px;
  }
  
  .section3 div {
    width: 80%;
    margin-bottom: 8px;
    gap: 10px;
  }
  
  .section3 div img {
    height: 60px;
    width: 60px;
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .section3 {
    height: auto;
    min-height: 200px;
    padding: 15px 10px;
  }
  
  .section3 div {
    width: 90%;
    margin-bottom: 10px;
    gap: 8px;
  }
  
  .section3 div img {
    height: 50px;
    width: 50px;
    margin-right: 20px;
  }
}

@media (max-width: 576px) {
  .section3 {
    height: auto;
    min-height: 180px;
    padding: 12px 8px;
  }
  
  .section3 div {
    width: 95%;
    margin-bottom: 8px;
    gap: 6px;
  }
  
  .section3 div img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  .section3 {
    height: auto;
    min-height: 160px;
    padding: 10px 5px;
  }
  
  .section3 div {
    width: 100%;
    margin-bottom: 6px;
    gap: 5px;
  }
  
  .section3 div img {
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
}

.categorie {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 20px 80px;
}
.categorie .item {
  width: 180px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #8787876c;
  border-radius: 20px;
  margin: 0 15px;
}
.categorie .item .img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}
.categorie .item p {
  font-size: 15px;
  margin: 5px 0;
  font-weight: 500;
  text-align: center;
}
.categorie .item span {
  font-size: 13px;
  font-style: italic;
}

/* Responsive Design pour la section catégories */
@media (max-width: 1200px) {
  .categorie {
    padding: 20px 60px;
  }
  .categorie .item {
    width: 160px;
    padding: 8px;
    margin: 0 12px;
  }
  .categorie .item .img {
    height: 100px;
    width: 100px;
  }
  .categorie .item p {
    font-size: 14px;
  }
  .categorie .item span {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .categorie {
    padding: 20px 40px;
  }
  .categorie .item {
    width: 150px;
    padding: 8px;
    margin: 0 10px;
  }
  .categorie .item .img {
    height: 90px;
    width: 90px;
  }
  .categorie .item p {
    font-size: 13px;
  }
  .categorie .item span {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .categorie {
    padding: 15px 20px;
  }
  .categorie .item {
    width: 140px;
    padding: 8px;
    margin: 0 8px;
  }
  .categorie .item .img {
    height: 80px;
    width: 80px;
  }
  .categorie .item p {
    font-size: 12px;
  }
  .categorie .item span {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .categorie {
    padding: 15px 10px;
  }
  .categorie .item {
    width: 120px;
    padding: 6px;
    margin: 0 5px;
  }
  .categorie .item .img {
    height: 70px;
    width: 70px;
  }
  .categorie .item p {
    font-size: 11px;
  }
  .categorie .item span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .categorie {
    padding: 10px 5px;
  }
  .categorie .item {
    width: 100px;
    padding: 5px;
    margin: 0 3px;
  }
  .categorie .item .img {
    height: 60px;
    width: 60px;
  }
  .categorie .item p {
    font-size: 10px;
  }
  .categorie .item span {
    font-size: 8px;
  }
}

.affiches {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 0;
  width: 100%;
  flex-direction: column;
}
.affiches .containe-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.affiches .box1 {
  width: 90%;
}
.affiches .box1 h1 {
  width: 60%;
  padding: 5px 20px;
  font-weight: 400;
  font-size: 30px;
  text-align: left;
  margin-left: 200px;
}
.affiches .box2 {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.affiches .box2 .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.affiches .box2 .slider .item {
  height: 290px;
  width: 230px;
  border: 1px solid #0000004e;
  flex-direction: column;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.affiches .box2 .slider .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.affiches .box2 .slider .item h4 {
  text-align: left;
  font-size: 18px;
  font-weight: 200;
  width: 100%;
  margin-top: 10px;
  padding-left: 10px;
}
.affiches .box2 .slider .item p {
  font-size: 14px;
  width: 100%;
  margin-top: 10px;
  padding-left: 10px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
.affiches .box2 .slider .item p span {
  margin-right: 6px;
}
.affiches .box2 .slider .item p .span2 {
  padding: 0 2px;
  background-color: #ededed;
  color: #737373;
  text-decoration: line-through;
}
.affiches .box2 .slider .item p .span3 {
  padding: 0 2px;
  font-size: 12px;
  background-color: #722b1b;
  color: #ffffff;
}

.affiches .s_box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 550px;
  height: 700px;
  border: 1px solid #0000004e;
  position: relative;
  border-radius: 20px;
}
.affiches .s_box2 .explore {
  height: 100%;
  width: 100%;
  background-color: #0000004b;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
}
.affiches .s_box2 .explore p {
  font-size: 25px;
  color: #ffffff;
  background-color: #000000;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 10px;
}
.affiches .s_box2 .explore p .span11,
.span22 {
  font-size: 60px;
  margin: 0 20px;
}
.affiches .s_box2 .explore a {
  padding: 8px 20px;
  background-color: #ffffff;
  color: #000000;
  font-size: 20px;
  margin-top: 30px;
  border-radius: 2px;
}
.affiches .s_box2 .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 700px;
  border-radius: 20px;
}
.affiches .s_box2 .slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* produit_vedete */

.produit_vedete {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.produit_vedete h1 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 200;
}

.produit_vedete .box1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.produit_vedete .articles {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.produit_vedete .articles .carousel {
  height: 300px;
  width: 250px;
  background-color: rgba(247, 247, 247, 0.499);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(105, 103, 103, 0.257);
  box-shadow: 7px 6px 10px -5px #00000093;
  transition: all 0.5s ease-in-out;
  position: relative;
  margin: 20px;
}

.produit_vedete .articles .carousel:hover {
  transform: scale(1.05);
}

.produit_vedete .articles .carousel img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(148, 146, 146, 0.499);
}

.produit_vedete .articles .carousel #nom {
  font-weight: 400;
  overflow: hidden;
  font-size: 17px;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
}
.produit_vedete .articles .carousel #ville {
  font-size: 13px;
  color: #484848;
  text-transform: capitalize;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
}
.produit_vedete .articles .carousel .prix {
  font-size: 13px;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.produit_vedete .articles .carousel .prix .span1 {
  color: #6b2b23;
  font-size: 10px;
}
.produit_vedete .articles .carousel .prix .span2 {
  padding: 0 2px;
  background-color: #ededed;
  color: #737373;
  text-decoration: line-through;
}
.produit_vedete .articles .carousel .prix .span3 {
  padding: 0 2px;
  font-size: 11px;
  background-color: #722b1b;
  color: #ffffff;
}
.produit_vedete .articles .carousel a {
  width: 200px;
  padding: 4px 13px;
  background-color: #6b2b23;
  margin-left: 50%;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 10px;
  display: block;
  margin-top: 10px;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 10px;
  right: -100px;
}
.produit_vedete .articles .carousel a:hover {
  background-color: #2c3e50;
}

.produit_vedete .box2 {
  width: 70%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.produit_vedete .box2 span {
  height: 40px;
  width: 50px;
  background-color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.5s ease-in-out;
}
.produit_vedete .box2 p {
  font-size: 20px;
}
.produit_vedete .box2 span:hover {
  transform: scale(1.1);
  background-color: #6b2b23;
}
.produit_vedete .box2 span {
  color: white;
  font-size: 25px;
}

/* footer */

footer {
  height: 74px;
  background-color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer span {
  color: white;
  font-size: 15px;
  font-weight: lighter;
  font-style: italic;
  font-family: "Nunito", sans-serif;
}

/* modification de la quatrieme section */

.section4 {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 30px 0;
}
.section4 .slider {
  display: flex;
  height: 500px;
  width: 100%;
  position: relative;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  /* L'image de fond est définie dynamiquement via le style inline */
}
.section4 .slider p {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  color: #ffffff;
  background: rgba(107, 47, 32, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.section4 .slider a {
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%);
  color: #000000;
  padding: 10px 30px;
  background-color: #ffffff;
  text-decoration: none;
}
.section4 .slider .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section4 .slider .box .text {
  position: absolute;
  width: 50%;
  height: auto;
  min-height: 80px;
  background: rgba(107, 47, 32, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  letter-spacing: 0.5px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
}
.section4 .slider .box .text h1 {
  font-size: 14px;
  color: white;
  font-family: "Almarai", sans-serif;
  width: 100%;
  text-align: center;
  margin-top: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  font-weight: 600;
}

/* .section{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}
.trending {
    background-color: #000000;
    padding: 8rem 4rem;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    grid-gap: 2rem;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .trending_img {
    width: 100%;
  }
  .trending_p {
    color: green;
  }
  .trending_title {
    color: white;
    font-size: 4rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .trending_btn {
    background-color: green;
    padding: 1rem 2rem;
    color: white;
  } */

/* partie product affiche  */

.produit_afiche {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin: 50px 0;
}

.produit_afiche .box {
  height: 600px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produit_afiche .box img {
  height: 600px;
  width: 500px;
  object-fit: cover;
}
.produit_afiche .box h1 {
  font-size: 80px;
  margin: 10px 80px;
  text-transform: uppercase;
}

.section5 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.section5 h1 {
  width: 60%;
  text-align: left;
  font-size: 30px;
  margin: 20px 0;
}
.section5 .container {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.section5 .slider {
  
  width: 100%;
  max-width: 600px;
  min-width: 300px;
  border: 1px solid #bbbbbb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  margin-left: 30px;
}
.section5 .slider img {
  height: 100%;
  width: 100%;
  max-width: 300px;
  min-width: 300px;
  object-fit: cover;
}
.section5 .slider .box {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.section5 .slider .box h4 {
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  background: rgba(107, 47, 32, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  margin-bottom: 10px;
  font-weight: 600;
}
.section5 .slider .box a {
  padding: 15px 15px;
  font-size: 13px;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 708px) {
  .section5 .slider {
   margin-top: 20px;
   padding: 10px 20px;
  }
  .section5 .slider img {
    max-width: 400px;
    min-width: 300px;
    max-height: 150px !important;
  }
}
/* ajoute de style */
.section0 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}

/* Responsive pour section0 */
@media (max-width: 992px) {
  .section0 {
    padding: 0px 15px;
  }
}

@media (max-width: 768px) {
  .section0 {
    padding: 0px 10px;
  }
}

@media (max-width: 576px) {
  .section0 {
    padding: 0px 5px;
  }
}

/* ajout de la section 00 */

.produit_vedetes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.produit_vedetes h1 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 200;
}

.produit_vedetes .box1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.produit_vedetes .articles {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.produit_vedetes .articles .carousel {
  height: 300px;
  width: 250px;
  background-color: rgba(247, 247, 247, 0.499);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(105, 103, 103, 0.257);
  box-shadow: 7px 6px 10px -5px #00000093;
  transition: all 0.5s ease-in-out;
  position: relative;
  margin: 20px;
}

.produit_vedetes .articles .carousel:hover {
  transform: scale(1.05);
}

.produit_vedetes .articles .carousel img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(148, 146, 146, 0.499);
}

.produit_vedetes .articles .carousel #nom {
  font-weight: 400;
  overflow: hidden;
  font-size: 17px;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
}
.produit_vedetes .articles .carousel #ville {
  font-size: 13px;
  color: #484848;
  text-transform: capitalize;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
}
.produit_vedetes .articles .carousel .prix {
  font-size: 13px;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.produit_vedetes .articles .carousel .prix .span1 {
  color: #6b2b23;
  font-size: 10px;
}
.produit_vedetes .articles .carousel .prix .span2 {
  padding: 0 2px;
  background-color: #ededed;
  color: #737373;
  text-decoration: line-through;
}
.produit_vedetes .articles .carousel .prix .span3 {
  padding: 0 2px;
  font-size: 11px;
  background-color: #722b1b;
  color: #ffffff;
}

.produit_vedetes .articles .carousel a {
  width: 200px;
  padding: 5px 15px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-radius: 10px;
  display: block;
  margin-top: 10px;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 4px;
  text-align: center;
}
.produit_vedetes .articles .carousel a:hover {
  background-color: #2c3e50;
}

.produit_vedetes .box2 {
  width: 70%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.produit_vedetes .box2 span {
  height: 40px;
  width: 50px;
  background-color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.5s ease-in-out;
}
.produit_vedetes .box2 p {
  font-size: 20px;
}
.produit_vedetes .box2 span:hover {
  transform: scale(1.1);
  background-color: #6b2b23;
}
.produit_vedetes .box2 span {
  color: white;
  font-size: 25px;
}
