 
    .cart-button {
    background-color: #ff6347;  
    color: white;  
    border: none;  
    border-radius: 50%; 
    width: 30px; 
    height: 30px;  
    display: flex;  
    align-items: center; 
    justify-content: center; 
    cursor: pointer;  
    transition: background-color 0.3s ease;  
}

.cart-button:hover {
    background-color: #ff4500;  
}

.cart-button i {
    font-size: 16px; 
    transition: transform 0.3s ease;  
}

.cart-button:hover i {
    transform: scale(1.2);  
} 
    .wishlist-button {
    background-color: #43c432;  
    color: white;  
    border: none;  
    border-radius: 50%; 
    width: 30px; 
    height: 30px;  
    display: flex;  
    align-items: center; 
    justify-content: center; 
    cursor: pointer;  
    transition: background-color 0.3s ease;  
}

.wishlist-button:hover {
    background-color: #22c213;  
}

.wishlist-button i {
    font-size: 16px; 
    transition: transform 0.3s ease;  
}

.wishlist-button:hover i {
    transform: scale(1.2);  
} 