    .move-to-wishlist {
        color: #6c757d;
        /* Neutral color */
        transition: transform 0.2s ease, color 0.2s ease;
        /* Smooth transition */
    }

    /* Active state */
    .move-to-wishlist.active {
        color: #dc3545;
        /* Danger red color */
        transform: scale(1.2);
        /* Slightly enlarge the button */
    }

    /* Icon specific styling */
    .move-to-wishlist.active i {
        font-weight: bold;
    }
