.product__item__pic {
    transition: transform 0.3s ease;
}
.product__item__pic:hover .img-fluid {
    transform: scale(1.05);
}

.hover-icon img {
    width: 28px;
    height: 28px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: #ff6f61;
    border-color: #ff6f61;
}

.btn-primary:hover {
    background-color: #ff3b2f;
    border-color: #ff3b2f;
}

.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.product__item__text .price {
    color: #ff6f61;
    font-weight: bold;
    font-size: 1.2rem;
}


/*---------------------
    wishlists
-----------------------*/
.cart-bounce {
    animation: bounce 0.6s ease;
}
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
