/* wishlist grid */

.swishlist {
    position: absolute;
    top: 0px;
    right: 0px;
}
    
.swishlist .heart {
    font-size: 30px;
    transition: 0.3s;
}


.smart-add-wishlist{
position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 0px 10px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 13px;
    font-size: 0.75em;
    overflow: hidden;
    transition: 0.3s;
}

/* طبقة التحميل */
.smart-add-wishlist.loading::before{
content:"";
position:absolute;
top:0;
left:0;
height:100%;
width:0%;
background:#df0101;
z-index:0;
animation:loadBar 0.7s linear forwards;
}

/* النص يبقى فوق */
.smart-add-wishlist span{
position:relative;
z-index:2;
}

.smart-add-wishlist.success{
background:#2ecc71;
}

/* حركة التحميل */
@keyframes loadBar{
0%{width:0%;}
100%{width:100%;}
}

.wishlist-container{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
margin-top:20px;
}

/* produit */

.wishlist-item{
border:1px solid #eee;
padding:15px;
background:#fff;
text-align:center;
transition:0.3s;
}

.wishlist-item:hover{
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

/* photo */

.wishlist-item img{
width:100%;
height:auto;
margin-bottom:10px;
}

/* produit */

.wishlist-item h4{
    font-weight: 400;
    font-size: 10px;
    margin: 0;
    text-align: start;
    padding: 0 3px;
}

/* prix */

.wishlist-price{
font-weight:bold;
margin-bottom:10px;
}

/* panier */

.wishlist-btn{
background:#ff7a00;
color:#fff;
padding:8px 14px;
border:none;
cursor:pointer;
display:inline-block;
margin-top:5px;
}

/* delette */

.remove-item{
background:#000000;
color:#333;
border:none;
padding:0;
cursor:pointer;
display:inline-block;
transition:0.2s;
border-radius: 0;
}

.remove-item:hover{
background:#df0101;
color: #fff;
}

.wishlist-rating{
font-size:13px;
color:#000;
margin:5px 0;
text-align: start;
}

/* mobile */

@media (max-width:768px){

.wishlist-container{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

}