.page-articles__path{
  padding-inline: 4rem;
  display: flex;
  & li a{
  position: relative;
  color: #00666C;
  padding: .3rem 0;
  &::after{
      content: '';
      position: absolute;
      left: 0;
      bottom: 5px;
      width: 0;
      height: 1px;
      background-color: #ffce4c;
      transition: width 500ms ease;   
  }
  &:hover{
      color:#ffce4c;
  } &:hover::after{
      width: 100%;
  } 
  } 
}
.container__page-articles{
    text-align: center;
    background-color: #ffffff;
      display: flex;
      flex-direction: column;
    justify-content: center;
    padding-block: 2rem;
    margin-bottom: 5rem;
    & h3 {
      color: #00666C;
      font-weight: bolder;
      padding-bottom: 2rem;
    }
  }
.row__page-articles{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
  }
  .custom-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    color: #F5F5F5;
    width: min-content;
    height: 28rem;
    border-radius: 20px 20px 15px 15px;
    // background-color: #00666C;
    background-color: #ffffff;
    // box-shadow: 3px 14px 19px 0px #969696;
}
.image-container {
  position: relative;
  border-radius: 15px 15px 0px 0px;
  background-color: #ffffff;
  height: 320px;
  width: 320px;
  padding: 10px;  
}
.card_container-description{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-body{
  display: flex;
  justify-content: center;
  padding-block: .5rem;
  padding-inline: 1.20rem;
  align-items: center;
  gap: 1rem;
}
.card-img-top{
  border-radius: 15px 15px 0px 0px;
  object-fit:contain;
  width: 15rem;
  height: 15rem;
}
.card-price {
  color: #ffce4c;
  font-size: x-large;
  margin-bottom: 0;
   
}
.btn-details{
  display: flex;
  justify-content: center;
  color: #F5F5F5;
  background-color: #00666C;
  padding: .75rem 1.5rem;
  border-radius: 1rem;
  transition: 0.4s ease-in-out transform;
  &:hover{
    border: none;
    background-color: #004246;
    color: #ffffff;
    transform: scale(1.1);
 }
}
.card-title{
  height: 3.75rem;
  color: #00666C;
  padding-top: .75rem;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  padding-inline: .01rem;
}
@media screen and (max-width: 700px) {
  .page-articles__path{
    padding-inline: .5rem; 
  }
  .container__page-articles{
    padding-block: 1rem;
    margin-bottom: 4rem;
    & h3{
      font-size: x-large;
      font-weight:600;
    }
  }
}

.marque{
  color: #00666C;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 0.8rem;
  &:hover{
  color: #00666C;
  text-decoration: underline;
  }
}

.marque-bg {
  position: absolute;  
  bottom: 10;           
  right: 0;            
  // background-color: #FFCE4C;
  // padding: 5px 10px;   
  // border-radius: 20px 20px 15px 15px;
}


.stock-and-price {
  display: flex;
  align-items: center; 
  position: absolute; 
  bottom: 10px; 
  right: 10px; 
  width: 100%; 
}

.stock-info, .price-info {
  color: #00666C;
  margin-left: auto; 
  padding: 5px 10px; 
  border-radius: 5px; 
  margin-bottom: 0;
}

.price-bg {
  align-self: flex-end; 
  background-color: #FFCE4C;
  width: fit-content;
  padding: 0.2rem;
  margin-top: 0px;
  margin-left: 1rem;
  margin-right: 0px; 
  border-radius: 20px 0px 20px 0px;
}

.stock-info{
  font-size: 0.9rem;
}