.Wishlist {
    border-radius: 1.1rem;
    width: 335px;
    height: 545px;
    margin-top: 120px;
    margin-left: 72%;
    background-color: white;
    border: 2px solid white;
    position: absolute;
    display: none;
    z-index: 22;

}

.Wishlist::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: white;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-left: 2px solid white;
    border-top: 2px solid white;
}

.Wishlist-header {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #ccc;
}

.Wishlist-header-text {
    position: absolute;
    margin-top: 20px;
    font-size: 19px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-left: 35%;
}

.Wishlist-product-liste {
    width: 100%;
    height: 88%;
    overflow: auto;

}

.Wishlist-product-liste::-webkit-scrollbar {
    width: 0px;
}

.Wishlist-product {
    width: 95%;
    margin-left: 8px;
    margin-top: 5px;
    height: 115px;
    border-bottom: 1px solid #ebebeb;
    display: flex;
}

.Wishlist-product-total {
    width: 96%;
    margin-left: 10px;
    height: 130px;
    z-index: 22;
    display: block;
}

.Wishlist-product-total-justify {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.flex-price{
    display: flex;
}
.Wishlist-product-top-total-price {
    font-size: 19px;
    color: #333;
    margin-top: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-right: 10px;
}
.Wishlist-product-contenent-Old-price {
    font-size: 16px;
    color: darkgrey;
    margin-top: 6px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-left: 10px;
    text-decoration: line-through;
}

.Wishlist-product-top-total-text {
    font-size: 18px;
    color: #15A6DD;
    margin-top: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.Wishlist-product i {
    color: red;
    font-size: 16px;
    margin-top: 5px;
    cursor: pointer;
}

.Wishlist-product-image {
    height: 93%;
    width: 35%;

}

.Wishlist-product-image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;

}

.Wishlist-product-contenent {
    width: 55%;
    margin-left: 10px;
    height: 93%;

}
.Category-title{
  color: #15A6DD;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.Wishlist-product-contenent-titre {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: start;
    margin-top: 5px;
}

.Wishlist-product-contenent-rating i {
    font-size: 15px;
    color: #FBBC04;
    
}

.Wishlist-product-contenent-price {
    margin-top: 5px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
}
.Wishlist-product-remove{
margin-top: 40px;
}
#Wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.178); /* Couleur d'arrière-plan semi-transparente */
    display: none; /* Démarrez avec l'overlay masqué */
    z-index: 10; /* Assurez-vous que l'overlay est au-dessus du contenu, mais derrière la sidebar */
    }