/*Overlay design*/
.product-image{
    object-fit: cover;
    width: 100%;
    height: 180px;
    border-radius: 10px;
  }
  /* /*overlay*/
  .overlay{
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 80%;
    left: 50%;
    border-radius: 5rem;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
  
  }
  .overlay button{
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }
  /*swiper*/
  .swiper-slide{
    font-size: 15px;
    margin-top: 5px;
  }
  
  .swiperTwo{
    margin-top: 1.5rem;
  }
  /*product-card design*/
  .product-card{
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
  }
  .product-card .position-relative{
    width: 100%;
  }
  /*product-image*/
  .product-image{
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 10px;
  }
    /*product-image-card*/
  .product-image-card{
    object-fit: cover;
    width: 100%;
    height: 280px;
    border-radius: 10px;
  }
  /*les design des écrits de la carte produits*/
  .title-card{
    font-size: 18px;
    color: var(--default-color);
    font-weight: bold;
  }
  .description-card{
    font-size: 14px;
    font-weight: bold;
  }
  .price{
    font-size: 18px;
    float: right;
    font-weight: bold;
    color: var(--default-color);
  }
  .price-before{
    font-size: 14px;
    margin-top: 3px;
    float: left;
    font-weight: bold;
    text-decoration: line-through;
  }
  /*les design de la carte promotions*/
  .discount-badge-promo-card{
    position: absolute;
    top: 50%;
    right: 10px;
    background: var(--danger-color);
    color: var(--font-color);
    padding: 8px 12px;
    border-radius: 5rem;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;  
  }
  .discount-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger-color);
    color: var(--font-color);
    font-size: 14px;
    font-weight: bold;
    padding: 5px 5px;
    border-radius: 5rem;
  }

  /*Notification*/
.img-notif{
    object-fit: cover;
    width: 70px;
    height: 70px;
  }
  .store{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px;
    transform: translate(25%, 25%);
  }
  .strong{
    color: var(--default-color);
    font-weight: bold;
    font-size: 18px;
  }
  .moments{
    margin-top: 4px;
    float: right;
  }

  .rounded-btn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }